Studio MCP install strategies
AI studios (Cursor, Copilot-shaped VS Code, terminal agent harnesses) already have install surfaces. Tooling that fights those surfaces loses. Tooling that rides them—especially MCP—gets adopted without a second setup novel.
Composio’s Cursor path is a clean case study. This page extracts the strategy as an option for anyone building connectors, skills, or agent-facing SaaS into a studio—not only for using Composio itself.
- Related product docs
-
Composio MCP setup · Composio and MCP connectors · Vibe coding bootstrap · Bootstrap Cursor skills
- Topology / control-plane context
-
Agent control planes (MCP and skills are orthogonal to the env/inference spine—do not force them into Role Topology memory bins.)
The problem this strategy solves
Builders of AI-studio tooling usually face all of these at once:
-
Users will not finish a twelve-step OAuth essay before the first useful call
-
Agents drown if you dump thousands of raw SaaS tools into the tool list
-
Each studio has a different preferred install UX (marketplace, deeplink, CLI, JSON)
-
Local
stdioMCP processes are fragile on Windows PATH and hard to update -
“Installed” is not the same as “the agent actually ran a tool”
Composio’s answer is a ladder of install surfaces plus a thin studio package in front of a hosted MCP server.
Case study: how Composio lands in Cursor
1. Hosted streamable HTTP MCP (fat server)
The capability plane lives at https://connect.composio.dev/mcp—not as a forever-running local Node process the user must keep alive. Cursor speaks MCP over HTTP; OAuth for Composio itself is a first-class studio flow (mcp_auth).
2. Install ladder (pick one; support several)
| Surface | What the user does | What you ship |
|---|---|---|
Marketplace plugin |
|
Plugin package: |
One-click MCP deeplink |
Open |
Base64 JSON config with the MCP URL (MCP only; no skills) |
Manual |
Paste into |
Same URL stanza; works when marketplace CLI is awkward (e.g. PowerShell quoting) |
Local plugin dir |
Symlink into |
Same plugin tree—for authors and offline testing |
Official client matrix still branches by harness (CLI login for terminal agents, registry links for VS Code, custom connector for Claude). Same product; different on-ramp. See Composio onboarding setup.
3. Thin plugin, fat server
The Cursor plugin is mostly:
-
mcp.json— register the remote server -
skills/— teach the agent the intended loop -
Manifest metadata (name, logo, homepage)
Example shape (from composio-mcp-plugin):
plugin.json (under .cursor-plugin/){
"name": "composio",
"description": "Connect and operate 1000+ external apps…",
"version": "1.0.0",
"mcpServers": "../mcp.json",
"skills": "./skills/",
"homepage": "https://composio.dev",
"repository": "https://github.com/ComposioHQ/composio-mcp-plugin",
"logo": "logo.svg"
}
mcp.json{
"mcpServers": {
"composio": {
"url": "https://connect.composio.dev/mcp"
}
}
}
The heavy lifting (tool catalog, OAuth to Gmail/GitHub/…, routing, remote sandbox) stays on Composio’s host. Updating tools does not require every user to reinstall a fat local binary.
4. Meta-tools instead of a thousand tools
The agent sees a handful of COMPOSIO_* meta-tools (SEARCH, GET_TOOL_SCHEMAS, MULTI_EXECUTE, MANAGE_CONNECTIONS, WAIT_FOR_CONNECTIONS, remote workbench/bash)—not one MCP tool per SaaS action.
Workflow the skill encodes:
-
Search for tools and a plan
-
Connect the app if needed (agent returns an auth link; user completes it)
-
Execute with schema-faithful arguments
-
Process large results in a remote sandbox when needed
That keeps context small and stops agents from inventing slugs.
Options matrix for AI-studio tooling
When Dev-Centr (or a partner) ships studio-facing capability, choose deliberately:
| Option | Best when | Cost | Avoid when |
|---|---|---|---|
A. Marketplace plugin (MCP + skills) |
You want one-click Cursor install and agent behavior |
Maintain plugin repo + marketplace listing |
The studio has no plugin system |
B. MCP deeplink / |
Capability is “just a server”; skills optional |
Minimal packaging |
Users need a taught workflow (they will misuse raw tools) |
C. Local stdio MCP |
Tooling must touch the local filesystem/GPU without a host |
PATH, Node/Python runtime, updates, Windows quoting |
You only need SaaS HTTP APIs |
D. CLI agent install ( |
Terminal harnesses (Claude Code, Codex, Hermes, …) |
Per-harness docs and binaries |
IDE-only audience |
E. In-app DevCentr guided add |
Orchestration / discovery inside the DOS |
Product UI work; still hand off to A–D for the actual connect |
Reimplementing the connector plane inside DevCentr |
Recommended default for SaaS connectors: A + B (plugin for Cursor power users; deeplink/mcp.json as fallback) and D for terminal agents—the Composio pattern. Keep E as DevCentr’s recommendation and status surface, not a second OAuth stack.
Recommended default for local-only tools: C, optionally wrapped in A if you also need skills.
What “done” means
Mirror Composio’s product rule in your own tooling docs:
-
Settings row visible ≠ success
-
Success = agent executed a real tool call against a connected account (or a documented dry-run)
Bake that into the skill and the how-to smoke test.
Fit in DevCentr’s AI stack
| Layer (from agent control planes) | This strategy |
|---|---|
Inference / env / agent runtime topologies |
Unchanged—install strategy does not pick arrangement A–D |
MCP / skills (orthogonal) |
This page—how capability packages enter the studio |
Human shell (DevCentr) |
Still the ops PATH; agents may use Composio and |
Role Topology Composer ( |
May link marketplace/MCP install cards later; do not shove connectors into hierarchical memory bins |
- Essay (relaxed)
Checklist for shipping your own connector
-
Prefer streamable HTTP MCP when the work is remote SaaS
-
Publish an install ladder (plugin → deeplink →
mcp.json→ local symlink) -
Keep the studio package thin; version the server independently
-
Expose meta-tools or a small stable surface; search/plan before dump
-
Ship skills that encode the happy path and the smoke test
-
Defer secondary OAuth until a workflow needs it
-
Document per-client onboarding (Cursor vs CLI vs VS Code) from one source page
-
Point DevCentr / docs hub at the package; do not fork a private OAuth broker “for convenience”