MCP · Integrations
Connect any MCP server. Route tools automatically.
Register MCP servers, reuse auth across many, watch health/latency live, inspect tool schemas, and stream tool calls end-to-end.
Reusable auth templates
(0)Register a new MCP server
Registered servers
(0)No servers yet. Try
https://mcp.deepwiki.com/mcp to start.Call console (streaming)
Expose your app's tools over MCP
# Expose this app's tools as an MCP server from your agent
import { defineAgent, tools, mcp } from "@clatter/agent";
const agent = defineAgent({
name: "ops-bot",
tools: [tools.fs.read, tools.shell.run],
mcp: {
servers: [
{ name: "github", url: "https://mcp.github.com/mcp" },
{ name: "linear", url: "https://mcp.linear.app/mcp" },
],
expose: { path: "/mcp", auth: "bearer" },
},
});