mcp-assistant
https://server.smithery.ai/zonlabs/mcp-assistant/mcp# MCP Assistant MCP Assistant provides access to **100+ MCP servers** like GitHub, Notion, Zapier, Supabase, etc. * **Connect & Manage Integrations**: You can configure and connect these integrations/connectors directly from the [MCP Assistant Dashboard](https://mcp-assistant.in/mcp). * **Advanced Features**: It exposes **meta-tools for dynamic MCP discovery** and a **CodeMode tool** that executes programs inside a secure sandbox for programmatic tool calling, workflow execution, and result processing, avoiding expensive LLM tool-calling loops. ## Endpoint Use this URL with your Assistant such as (OpenCode, Cursor, Codex, ClaudeCode, Antigravity etc.): ```text https://api.mcp-assistant.in/mcp ``` --- ## Key Features * **Unified Gateway**: Access 100+ third-party integrations (GitHub, Notion, Zapier, Slack, Discord, Supabase) through a single endpoint. * **Dynamic Tool Discovery**: Run semantic searches across all connected tool schemas. * **CodeMode Sandbox**: Execute JavaScript/TypeScript scripts on the server side using the `@mcp-ts/codemode` secure sandbox. Run multi-step programmatic workflows or batch actions directly from a single LLM request to avoid expensive round-trips. * **Standard OAuth Authentication**: Fully compatible with client-side OAuth handlers—log in securely via your browser to authorize access to your integrations. --- ## Primary Tools Provided | Tool | Description | | :--- | :--- | | `search_mcp_tools` | Performs a semantic/phrase search across all your connected tools and returns normalized discovery results. | | `get_mcp_tool_schema` | Retrieves the exact input/output JSON schemas and execution helper details for any tool. | | `codemode_run` | Instantly executes a script inside the CodeMode sandbox to chain multiple tool calls, format outputs, or filter large responses. | | `list_mcp_servers` | Lists all connected MCP servers and the number of tools each provides. | --- ## Client Configuration ### VS Code Add the server connection to your VS Code settings: ```json { "servers": { "mcp-assistant": { "type": "http", "url": "https://api.mcp-assistant.in/mcp" } } } ``` ### Cursor / Antigravity / Claude Desktop Add to your client configuration file: ```json { "mcpServers": { "mcp-assistant": { "url": "https://api.mcp-assistant.in/mcp" } } } ```
How to connect
https://server.smithery.ai/zonlabs/mcp-assistant/mcp
curl -X POST https://server.smithery.ai/zonlabs/mcp-assistant/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{}}'