Modular MCP server for financial modeling and principles-based advisory.
Authentication: Enabled (API Key)
For ChatGPT MCP Connectors and modern MCP clients.
/mcp - Open SSE stream for server notifications
/mcp - Send JSON-RPC messages
/mcp - Terminate session
Direct tool execution without MCP protocol overhead.
/api/tools - List all tools with schemas
/api/tools/{name} - Execute a single tool
/api/tools/{name}/schema - Get tool JSON schema
/api/batch - Execute multiple tools
For Claude Desktop via SSE bridge.
/sse - SSE connection endpoint
/messages/ - Message endpoint
Settings → Connectors → Create Connector URL: https://your-server-url/mcp Auth: API Key header (X-API-Key)
{
"mcpServers": {
"savvy": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sse-client"],
"env": {
"ENDPOINT": "https://your-server-url/sse",
"HEADERS": "{\"X-API-Key\": \"your-api-key\"}"
}
}
}
}
curl -X POST https://your-server-url/api/tools/search_principles \
-H "X-API-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{"query": "investing"}'