Docs
Documentation
Connect apps, import MCP servers, govern tools per workspace, and ship the same Universal Layer to Claude Code, Cursor, Codex, and other agents.
Last updated: August 18, 2026
Overview
MCPGRAM is an MCP (Model Context Protocol) platform: a control plane for connecting native apps (GitHub, Slack, Notion, Figma, and more), external MCP servers, and AI coding agents under one workspace model.
- Native connectors - OAuth to popular apps; tools appear in your workspace catalog.
- External MCP - paste any MCP URL; discover tools and complete OAuth when the server requires it.
- Universal Layer - agents call stable meta-tools (
search_tools,execute_tool, etc.) instead of raw provider IDs. - CLI - one install path for Claude Code, Cursor, Codex, VS Code, and other providers.
Quickstart
Goal: signup → connect one app → configure your agent → first successful tool call.
- Sign up and create a workspace.
- Open the workspace and connect a native app — start with Slack or GitHub.
- Choose how your agent will call MCPGRAM (pick one path below).
- Run a read tool first, then optional writes.
A · Claude / Cursor
OAuth 2.1 on the MCP server host (browser login + workspace consent).
MCP URL
https://mcpgram-mcp-server.vercel.app/mcp
Cursor example (~/.cursor/mcp.json)
{
"mcpServers": {
"mcpgram": {
"url": "https://mcpgram-mcp-server.vercel.app/mcp"
}
}
}Claude.ai: add the same URL as a remote MCP connector; complete OAuth when prompted.
B · Manus / HTTP clients
Workspace API key as a Bearer token. Do not use the OAuth MCP server URL with a raw API key.
MCP URL
https://mcpgram.vercel.app/api/mcp
Auth header
Authorization: Bearer <workspace-api-key>
Create the key under the workspace → Keys, then paste it into Manus as bearer auth.
First tool calls
- Slack:
slack_list_channels→ invite the bot to a channel →slack_send_messagewith the channel id. - GitHub:
github_list_reposorgithub_get_repo(read-only) before any write tools.
Common failures
| Symptom | Likely cause |
|---|---|
| Manus cannot connect | Wrong URL or missing Bearer API key (use path B) |
| Slack history / send fails | Used #name instead of channel id, or bot not invited |
| 401 on tools | Reconnect the connector or create a new workspace API key |
Optional CLI path: install the CLI and run mcpgram login / mcpgram onboard --agent cursor.
Native connectors
Native connectors use provider OAuth. From the dashboard, open Apps (or a workspace Manage page), choose a provider, and complete consent. Credentials are stored encrypted and can be enabled or disabled per workspace without fully disconnecting.
- Click Connect on the app card.
- Approve scopes on the provider.
- Return to MCPGRAM; tools are provisioned into the catalog.
- Use Refresh if the provider adds tools later.
External MCP servers
Add any Streamable HTTP / SSE MCP endpoint from the Apps page or workspace MCP panel.
- No auth - Discover tools immediately if the server is public.
- OAuth - MCPGRAM discovers authorization metadata and attempts dynamic client registration (DCR).
- Redirect:
https://mcpgram.vercel.app/api/oauth/mcp/callback
CLI
Official package: @mcpgram/cli
curl -fsSL https://mcpgram.vercel.app/install | bash # or: npm install -g @mcpgram/cli mcpgram login mcpgram onboard --agent cursor mcpgram sync mcpgram doctor
Requires Node.js 18+. Linux, macOS, Windows, and WSL.
AI agents
Supported targets include Claude Code, Cursor, Codex, VS Code, Gemini CLI, Windsurf, Cline, Aider, Goose, OpenCode, and related providers. The CLI writes the correct MCP config for each.
In-app guides: Dashboard - Guides - Agents (login required).
Universal Layer
Agents primarily see meta-tools, not every raw connector tool:
search_tools- find tools across sourcesget_tool- schema / detailsexecute_tool- run by stable id
OAuth and integrations
- Site:
https://mcpgram.vercel.app - Docs:
https://mcpgram.vercel.app/docs - Callback:
https://mcpgram.vercel.app/api/oauth/<provider>/callback
Security
Support
Contact or email aaryanverma4326@gmail.com.
Ready to try it?
Create a free account, connect an app, and onboard your first agent.