Glossary

What is an MCP server?

An MCP server is a process that speaks the Model Context Protocol — an open spec for letting LLMs call tools and read resources from external systems. Claude Code and Claude Cowork both speak MCP natively; every tool the agent calls is either built-in or backed by an MCP server somewhere.

A few concrete examples:

The MCP server can run locally (a process on your machine, started by Cowork from your .mcp.json config) or remotely (an HTTP endpoint that speaks the protocol over the network). Either way, the contract is the same: the server publishes a list of tools, the agent decides which to call, the server runs them and returns results.

Why this matters for a Cowork rollout:

In short: MCP is the plumbing that gives a Cowork session its capability surface. Knowing which MCPs are installed is half of understanding what your team's Cowork install can actually do.

Read the full guide