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.

cmd mcp add --transport http notion https://mcp.notion.com/mcp

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:

  1. Go to Settings > Developer Settings > Personal Access Tokens > Fine-grained tokens
  2. Click Generate new token
  3. Name it commandcode-mcp, set expiration as needed
  4. Repository access → Choose "All repositories" or "Only select repositories"
  5. 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)
  6. Generate token and copy it

Classic token — broader access, simpler setup:

  1. Go to Settings > Developer Settings > Personal Access Tokens > Tokens (classic)
  2. Name it commandcode-mcp, set expiration as needed
  3. Check the repo scope (includes all repository permissions)
  4. Generate token and copy it

Add the Server

Replace YOUR_GITHUB_PAT with your generated token:

cmd mcp add-json github '{"type":"http","url":"https://api.githubcopilot.com/mcp","headers":{"Authorization":"Bearer YOUR_GITHUB_PAT"}}'

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.

cmd mcp add playwright -- npx -y @playwright/mcp@latest

Access Sentry logs, monitor errors, and debug production issues.

cmd mcp add --transport http sentry https://mcp.sentry.dev/mcp

After adding, authenticate via the /mcp menu inside a Command Code session.


Search and read OpenAI developer documentation directly from your prompts.

cmd mcp add --transport http openai-docs https://developers.openai.com/mcp

Connect to up-to-date developer documentation. Dynamically fetches version-specific docs and code examples from official sources.

cmd mcp add context7 -- npx -y @upstash/context7-mcp

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

cmd mcp add --transport http figma https://mcp.figma.com/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.

cmd mcp add chrome-devtools -- npx -y chrome-devtools-mcp@latest
Prerequisite

Chrome must be running with the --remote-debugging-port=9222 flag for the MCP server to connect.


Most MCP servers connect in three ways: as a remote HTTP server, a local stdio process, or from a JSON config.

General Pattern

cmd mcp add --transport http <name> <url>