Connect Startopia to coding agents and AI clients.
Startopia exposes project context, notes, tasks, recent changes, and preview-then-commit write actions through a remote MCP server. Use the built-in connect flow for client-specific install packs or wire it up directly from your agent.
Supported clients
These are the installation surfaces Startopia is packaging today for discovery and fast setup.
CLI-ready remote MCP setup for agentic coding and review loops.
Repo-native MCP config plus one-click install links for fast onboarding.
Remote MCP setup with an exact `codex mcp add` command and TOML snippet.
Workspace-safe MCP config for Copilot agent mode with token prompts.
Fallback payload, smoke test, manifest link, and OpenAPI discovery links.
Discovery URLs
These links are the public entry points you will use for listings, docs, and smoke tests.
Recommended setup path
Create or reuse a project-scoped Startopia token.
Pick a client preset or use the generic MCP payload.
Call get_context_pack first so the agent starts with project context instead of raw notes.
For writes, use preview_create_note, preview_create_task, or preview_update_task before commit_write_action.
Minimal remote MCP check
A project-scoped bearer token is enough to confirm the server is reachable and listing tools.
curl -s https://startopia.lol/mcp \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <STARTOPIA_TOKEN>" \
-H "MCP-Protocol-Version: 2025-06-18" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'