mcp-assistant
# 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 connec
https://mcp_assistant--zonlabs.run.tools
How to connect
-
Smithery (hosted)
1. Open https://smithery.ai/servers/zonlabs/mcp_assistant 2. Click Connect and complete OAuth in your MCP client (Claude, Cursor, VS Code, etc.) 3. MCP endpoint: https://mcp_assistant--zonlabs.run.tools
Tools (4)
-
list_mcp_serversList all connected MCP servers and the number of tools each provides. Use this when `search_mcp_tools` returns no response or irrelevant results, to see if there is an active/connected server that might be relevant.
-
search_mcp_toolsSearch connected MCP tools for the authenticated user and return normalized discovery results. Use this to find candidate MCP tools before execution. Next, pass the chosen result to `get_mcp_tool_schema` to inspect the exact schema, then call the tool from `codemode_run` or a saved workflow script.
-
get_mcp_tool_schemaRetrieve a normalized schema payload for a connected MCP tool. Use this to inspect the exact input schema, output schema when available, and the CodeMode result extraction hint. Then call that MCP tool from `codemode_run` or a saved workflow script once the args match the schema.
-
codemode_runExecute a JavaScript/TypeScript-like script in the CodeMode sandbox with connected MCP tool servers. No queue, workflow, or schedule required. Use this when `search_mcp_tools` or `get_mcp_tool_schema` identified an MCP tool, or when any equivalent MCP tool-discovery and schema-inspection tools identified one, and you want to inspect its output or validate its schema usage quickly without creating a saved workflow. This is also the right tool for chaining multiple MCP tool calls in one script, av