Claude Code Gateway
БесплатноНе проверенEnables local Claude Code to interact with Snowflake, Asana, M365, GitHub, and Hive Mind with automatic response truncation to prevent memory overload.
Описание
Enables local Claude Code to interact with Snowflake, Asana, M365, GitHub, and Hive Mind with automatic response truncation to prevent memory overload.
README
Overview
This is a response-limited version of the Sovereign Mind MCP Gateway, specifically designed for use with Claude Code on local machines. It prevents memory overload by automatically truncating large responses.
Key Features
- Response Size Limiting: Max 50KB per response (configurable)
- Row Limiting: Database queries limited to 100 rows by default
- Pagination Hints: Automatically adds hints when data is truncated
- Memory Safety: JSON serialization with overflow protection
Response Limits (Configurable)
| Parameter | Default | Description |
|---|---|---|
| MAX_RESPONSE_BYTES | 51200 | Maximum response size in bytes |
| MAX_ROWS | 100 | Maximum rows from database queries |
| MAX_EMAIL_COUNT | 25 | Maximum emails per request |
| MAX_TASK_COUNT | 50 | Maximum Asana tasks per request |
| MAX_FILE_LIST | 100 | Maximum files in directory listings |
Installation
Option 1: Local Python (Recommended for Claude Code)
# Clone or copy files
cd /path/to/claude-code-gateway
# Create virtual environment
python3 -m venv venv
source venv/bin/activate
# Install dependencies
pip install -r requirements.txt
# Copy and configure environment
cp .env.template .env
# Edit .env with your credentials
Option 2: Docker (For Remote Access)
# Build image
docker build -t claude-code-gateway:latest .
# Run locally
docker run -p 8000:8000 --env-file .env claude-code-gateway:latest
Option 3: Azure Container Apps
# Build and push to ACR
az acr build --registry sovereignmindacr \
--image claude-code-gateway:v1.0.0 \
--file Dockerfile .
# Deploy to Container Apps
az containerapp update \
--name claude-code-gateway \
--resource-group SovereignMind-RG \
--image sovereignmindacr.azurecr.io/claude-code-gateway:v1.0.0
Claude Code Configuration
Add to your Claude Code MCP configuration (~/.config/claude-code/mcp.json or equivalent):
{
"mcpServers": {
"sovereign-mind": {
"command": "python",
"args": ["/path/to/claude-code-gateway/gateway.py"],
"env": {
"SNOWFLAKE_PASSWORD": "your-password",
"ASANA_TOKEN": "your-token",
"GITHUB_TOKEN": "your-token",
"M365_TENANT_ID": "your-tenant",
"M365_CLIENT_ID": "your-client-id",
"M365_CLIENT_SECRET": "your-secret"
}
}
}
}
Available Tools
Gateway
gateway_status- Get current limits and configuration
Snowflake
sm_query_snowflake- Execute SQL with automatic row limiting
Hive Mind
hivemind_write- Write to shared memoryhivemind_read- Read from shared memory (limited)
Asana
asana_list_tasks- List tasks (limited to 50)asana_create_task- Create a taskasana_get_task- Get task detailsasana_complete_task- Mark task completeasana_add_comment- Add comment to task
M365 Email
m365_read_emails- Read emails (limited to 25)m365_send_email- Send email
GitHub
github_list_repos- List repositoriesgithub_get_file- Get file contents (truncated if large)
Truncation Behavior
When responses exceed limits, the gateway:
- Truncates the data to fit within limits
- Adds
_truncated: trueto the response - Includes
_original_countand_returned_count - Adds
_messagewith pagination hints
Example truncated response:
{
"success": true,
"row_count": 100,
"data": [...],
"_truncated": true,
"_original_count": 5000,
"_returned_count": 100,
"_message": "Results limited to 100 rows. Add LIMIT/OFFSET to query for pagination."
}
Version History
- v1.0.0 - Initial release with response limiting
- Based on SM-MCP-Gateway v1.8.0
- Added ResponseLimits configuration
- Added truncate_response utility
- Snowflake, Asana, M365, GitHub tools
Support
For issues, contact the Sovereign Mind team or raise an issue in the repository.
from github.com/jstewartrr/infra-20260105-claude-code-gateway
Установка Claude Code Gateway
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/jstewartrr/infra-20260105-claude-code-gatewayFAQ
Claude Code Gateway MCP бесплатный?
Да, Claude Code Gateway MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Claude Code Gateway?
Нет, Claude Code Gateway работает без API-ключей и переменных окружения.
Claude Code Gateway — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Claude Code Gateway в Claude Desktop, Claude Code или Cursor?
Открой Claude Code Gateway на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Claude Code Gateway with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
