Our MCP catalogue
MCP servers for Claude Code and Claude Cowork that we run daily on client work, plus MCP tooling for building and inspecting coding agents.
An MCP (Model Context Protocol) is a server that gives Claude access to an outside tool, in Claude Code and in Claude Cowork alike: reading a Trello board, running an Apify scraper, checking a project's secrets in Doppler. A Claude Code skill is a different thing: a folder of instructions and scripts, with no external server involved; that is the difference between skills and MCP in Claude Code. We run both together on most projects: the MCP connects the tool, and the skill decides when and how to use it.
No results
Try another word or clear the category filter.
Official MCPs
06Official third-party MCP servers we connect to Claude Code and Claude Cowork for day-to-day client work.
Apify
Apify's official MCP for running Actors (scrapers and crawlers) from Claude.
Connects Claude Code or Claude Desktop to the Apify Store, so an agent can find an Actor, run it with the parameters it needs and read back the dataset, without leaving the conversation. It's a remote HTTP server with OAuth against your Apify account, or a plain API token if you'd rather skip the browser. Every run spends credits from your Apify plan, same as launching it from their console.
Descript
Descript's official MCP for editing video and audio from the assistant.
Gives Claude access to one Descript Drive (you pick which during auth) to import media from a URL or a local file, which gets transcribed automatically. From there it can ask Underlord to strip filler words, apply Studio Sound, add captions or suggest B-roll, and create or manage projects by prompt. It's a Descript-hosted server, no API key or local process to keep running.
Doppler
Doppler's official MCP for reading projects, configs and secrets from the agent.
Doppler keeps secrets off disk and injects them as environment variables when a process starts, and this MCP lets Claude query that structure (projects, configs) instead of a local `.env`. Setup means creating an isolated config for the agent, granting only the secrets the task needs, and generating a read-only, expiring service token. The project and environment the MCP uses live in the folder binding `doppler setup` creates, not in its own config file.
Fathom
Fathom's official MCP for reading meeting notes and transcripts.
Connects Claude to your Fathom account so it can list meetings, and for a specific call pull its summary or the full timestamped transcript. Authorization is browser OAuth, and on team accounts an owner has to enable the connector before it shows up for everyone else.
Tavily
Tavily's official MCP for web search, extraction, mapping and crawling.
Gives Claude four web tools beyond a plain search: search, extract the clean content of a URL, map a site's structure, and crawl multiple pages in depth. It's set up with a free Tavily API key, either as a local server via npx or as a direct URL connection with the key baked into the address.
Trello
Trello's (Atlassian) official MCP for reading and writing boards, lists and cards.
Connects Claude directly to your Trello workspace: it can read boards, lists, cards and checklists, and create or move cards on request. It's a remote server with OAuth, no local code or API key to manage.
MCP for coding agents
02Model Context Protocol servers and SDKs built for constructing and inspecting coding agents, not for end use.
MCP-UI
An SDK for rendering interactive UIs inside MCP tools.
Lets developers attach interactive web interfaces to MCP tools, so AI hosts can render rich UIs alongside tool output instead of plain text. It ships server SDKs (TypeScript, Ruby, Python) for creating UI resources and a client SDK that renders them inside sandboxed iframes. Tools point to their UI via a metadata resource URI the host fetches and displays.
CodeGraph
A local code knowledge graph for AI coding agents.
Parses a codebase with tree-sitter into a local SQLite graph of symbols, functions, classes and call relationships, then keeps it in sync incrementally as files change. It exposes the index through an MCP server so agents can query structure and trace call flows instead of repeatedly reading and grepping source. Everything runs locally, no cloud and no API keys.