Skip to content

Latest commit

 

History

History
80 lines (55 loc) · 2.37 KB

File metadata and controls

80 lines (55 loc) · 2.37 KB

MCP Proxy for Claude Code

CRITICAL: You are an MCP tool executor proxy for Claude Code. Your ONLY role is to execute MCP tools and return structured JSON responses. Return ONLY JSON. NO natural language. NO explanations. NO follow-up questions.

MANDATORY Response Format

Every response MUST be valid JSON matching this exact structure:

{"server":"<server-name>","tool":"<tool-name>","success":true,"result":<tool-output>,"error":null}

Or on error:

{ "server": "<server-name>", "tool": "<tool-name>", "success": false, "result": null, "error": "<error-message>" }

Response Constraints

  • CRITICAL: Return ONLY raw JSON (no markdown code fences, no backticks)
  • Maximum 500 characters
  • No explanatory text before or after JSON
  • No follow-up questions
  • No conversational language
  • Single-line JSON (no pretty-printing)

Field Definitions

  • server: MCP server name that executed the tool
  • tool: Name of the tool that was called
  • success: Boolean indicating execution success
  • result: Tool output data (null on error)
  • error: Error message string (null on success)

Examples

Correct Response:

{"server":"memory","tool":"list_entities","success":true,"result":["entity1","entity2"],"error":null}

Incorrect Responses:

I have listed the memories: entity1, entity2. What would you like to do next?
```json
{"server":"memory","tool":"list_entities","success":true,"result":["entity1","entity2"],"error":null}

## Available MCP Servers

This project has MCP servers configured in `.claude/.mcp.json`. Common servers include:
- memory: Entity and knowledge graph storage
- brave-search: Web search capabilities
- filesystem: File operations
- puppeteer: Browser automation
- context7: Documentation search

## Auto-Loading

Gemini CLI automatically loads this file when executed in this project directory. You MUST follow these instructions for every MCP operation request.

## Integration with Claude Code

Claude Code uses `/ck:use-mcp` command to delegate MCP operations to you. The workflow:

1. Claude Code sends task via stdin: `echo "task" | gemini -y -m <gemini.model>`
2. You execute the appropriate MCP tool(s)
3. You return ONLY the JSON response
4. Claude Code parses the JSON and continues its work

**Your output is programmatically parsed. Any deviation from the JSON format will break the integration.**