Skip to main content
The hosted MCP Server gives MCP clients a single Streamable HTTP endpoint for working with MCP Assistant.

Endpoint

Use this URL in MCP clients that support Streamable HTTP:
Connect and manage remote MCP servers from mcp-assistant.in. The hosted endpoint uses those connected servers when MCP clients call MCP Assistant.

What is the hosted MCP Server?

The MCP Server connects AI clients to MCP tools and remote app integrations through the Model Context Protocol. Use it when you want an MCP client to access MCP Assistant without hosting your own server. After connecting remote MCP servers in mcp-assistant.in, the MCP Assistant server can provide access to 100+ MCP servers, including GitHub, Notion, Zapier, Supabase, and other supported services. It also exposes meta-tools for dynamic MCP discovery and a CodeMode tool that executes programs inside a secure sandbox for programmatic tool calling and result processing. This helps avoid expensive LLM tool-calling loops when a task is better handled as a small program.

Who it is for

For MCP Client Users

Connect remote MCP servers in mcp-assistant.in, then use them from MCP clients such as VS Code and Antigravity through one hosted endpoint.

For Developers

Build agents with tool discovery, schema inspection, and CodeMode scripts across connected MCP servers.

What it provides

  • A hosted MCP endpoint for clients that support Streamable HTTP.
  • Access to 100+ MCP servers, including GitHub, Notion, Zapier, Supabase, and other supported services.
  • Meta-tools for dynamic MCP discovery across 100+ supported MCP servers.
  • Server-side tool execution through MCP Assistant.
  • CodeMode support for running small programs that call MCP tools inside a secure sandbox.
  • A simple core flow: list servers, search tools, inspect schema, then run with CodeMode.
  • Separate workflow tools for saving scripts and inspecting workflow state.

Example use cases

Personal productivity

  • Search connected tools and save useful results to Notion.
  • Summarize recent GitHub activity and send a status update.
  • Run a small CodeMode script for daily app checks.

Development and operations

  • Create a GitHub issue from a bug report.
  • Query Supabase and summarize the result before returning it to the user.
  • Chain multiple MCP tool calls inside codemode_run to avoid repeated LLM round trips.

Code-based automation

  • Search for the right connected MCP tool.
  • Inspect its schema.
  • Use codemode_run to call one or more tools in a small script.
  • Return filtered, summarized, or transformed results to your MCP client.

Main tools

The primary hosted MCP flow uses four tools: list, search, inspect, and run. Start here for most MCP clients.

Workflow tools (Experimental)

[!WARNING] Deprecation Notice: Workflow and scheduling tools are experimental and may be removed at any time without notice.
Workflow and scheduling tools are separate from the main hosted MCP flow. Use them when you want to save scripts or inspect workflow metadata. Queued workflow execution is disabled on the hosted endpoint unless a dedicated worker service is running. When using connected MCP tools through the MCP Server:
  1. Search for candidate tools with search_mcp_tools.
  2. Inspect the selected tool with get_mcp_tool_schema.
  3. Execute the call with codemode_run.
Inside CodeMode, scripts run as the body of an async function. Use return for the final value, and use console.log for debugging. Connected MCP tools are available through namespaced helpers and through callTool(serverId, toolName, args). These helpers return normalized tool results by default; use raw helpers only when you need the original MCP envelope.

Availability and health

The hosted endpoint is designed as a workerless remote MCP service. It keeps the Streamable HTTP MCP server online without running a separate BullMQ worker service. This reduces hosting cost and improves endpoint reliability for MCP clients that primarily need remote tool discovery and codemode_run. Operational health is exposed at:
The service also supports OpenTelemetry traces and metrics through OTLP for production monitoring.

Client configuration

VS Code

Antigravity