MCP Server Examples
A list of useful MCP servers and how to add them in Command Code. These servers extend Command Code with access to external tools, documentation, and services.
Search, read, and create pages in your Notion workspace.
After adding, authenticate via the /mcp menu inside a Command Code session.
Manage GitHub beyond what git supports — issues, PRs, code search, and more. It requires your GitHub Personal Access Token (PAT).
Token Setup
Fine-grained token (recommended) — scoped to specific repos, minimal permissions:
- Go to Studio > Developer Settings > Personal Access Tokens > Fine-grained tokens
- Click Generate new token
- Name it
commandcode-mcp, set expiration as needed - Repository access → Choose "All repositories" or "Only select repositories"
- Permissions → Repository permissions → expand and configure:
- Contents: Read and write (for file operations)
- Issues: Read and write (for issue management)
- Pull requests: Read and write (for PR operations)
- Metadata: Read-only (automatically included)
- Generate token and copy it
Classic token — broader access, simpler setup:
- Go to Studio > Developer Settings > Personal Access Tokens > Tokens (classic)
- Name it
commandcode-mcp, set expiration as needed - Check the repo scope (includes all repository permissions)
- Generate token and copy it
Add the Server
Replace YOUR_GITHUB_PAT with your generated token:
For more details, see the instructions in these GitHub MCP Server installation docs.
Control and inspect a browser using Playwright. Write and run browser tests, take screenshots, and automate web interactions.
Access Sentry logs, monitor errors, and debug production issues.
After adding, authenticate via the /mcp menu inside a Command Code session.
Search and read OpenAI developer documentation directly from your prompts.
Connect to up-to-date developer documentation. Dynamically fetches version-specific docs and code examples from official sources.
Include use context7 in your prompts to pull in the latest docs for any library.
Access your Figma designs. Available as both a remote and local server.
Figma MCP
For the remote server, authenticate via the /mcp menu after adding. The local server requires the Figma desktop app to be running.
Control and inspect Chrome from Command Code. Debug pages, take screenshots, and interact with the DOM.
Most MCP servers connect in three ways: as a remote HTTP server, a local stdio process, or from a JSON config.
General Pattern
- Check out our MCP Quickstart to add your first MCP server
- Join our Discord community for support