CodeepCodeep

MCP Marketplace

MCP docs →

Curated catalog of Model Context Protocol servers Codeep can spin up with one command. Each entry below is installable from any Codeep session.

From the CLI / Zed / VS Code chat, run /mcp browse for the same list, or /mcp install <id> to add one to your workspace.

Files & Code

  • Filesystem

    docs →

    Read, list, and (optionally) write files in a sandbox directory.

    /mcp install filesystem /path/to/expose
  • GitHub

    docs →

    Browse repositories, issues, PRs, and commits via the GitHub API.

    /mcp install github
    Env vars
    • GITHUB_PERSONAL_ACCESS_TOKEN·required
  • GitLab

    docs →

    Read repos, issues, MRs, and pipelines on GitLab (cloud or self-hosted).

    /mcp install gitlab
    Env vars
    • GITLAB_PERSONAL_ACCESS_TOKEN·required
    • GITLAB_API_URL
  • Git (local repo)

    docs →

    Inspect commits, blame, diffs, and branches in a local git repository.

    /mcp install git /path/to/repo

Database

  • PostgreSQL

    docs →

    Read-only SQL access to a Postgres database — schema introspection + query.

    /mcp install postgres postgresql://user:pass@host/db
  • SQLite

    docs →

    Query a SQLite database file with full SQL.

    /mcp install sqlite /path/to/data.db

Web

  • Fetch (web)

    docs →

    Fetch arbitrary URLs and return the markdown-converted contents.

    /mcp install fetch
  • Brave Search

    docs →

    Web search via the Brave Search API.

    /mcp install brave-search
    Env vars
    • BRAVE_API_KEY·required
  • Playwright (browser)

    docs →

    Drive a real browser — navigate, click, fill, screenshot, and scrape — via Microsoft Playwright. The de-facto browser-automation MCP (supersedes Puppeteer).

    /mcp install playwright

Testing & Devices

  • iOS Simulator

    docs →

    Drive the iOS Simulator — tap, type, swipe, screenshot, record, install & launch apps. macOS only; needs Xcode + idb (`brew install facebook/fb/idb-companion`).

    /mcp install ios-simulator
  • Mobile (iOS + Android)

    docs →

    UI automation for end-to-end mobile testing across iOS simulators/devices and Android. macOS needs Xcode command-line tools.

    /mcp install mobile

Communication

  • Read channels, post messages, look up users and threads.

    /mcp install slack
    Env vars
    • SLACK_BOT_TOKEN·required
    • SLACK_TEAM_ID·required

Utility

  • Memory (knowledge graph)

    docs →

    Persistent knowledge graph the agent reads/writes across sessions.

    /mcp install memory
  • Time / timezones

    docs →

    Current time, timezone conversion, IANA timezone lookup.

    /mcp install time

Bring your own

Anything that speaks the MCP JSON-RPC protocol works — official packages, third-party, or a private HTTP endpoint. Add it manually:

/mcp add my-server npx @vendor/mcp-server --flag value

For HTTP-transport servers, edit .codeep/mcp_servers.json and use the url + headers shape instead of command / args. See /docs/mcp for the full reference.