mirror of
https://github.com/modelcontextprotocol/servers.git
synced 2026-04-20 12:55:21 +02:00
4785a973127d9c836654cba19d963c68048137ad
MCP servers 
Example servers for the Model Context Protocol, to demonstrate the kinds of things you can do!
Getting started
The servers in this repository can be used directly with npx. For example:
npx -y @modelcontextprotocol/server-memory
This will start the memory server. However, this isn't very useful on its own, and should instead be configured into an MCP client. For example, here's the Claude Desktop configuration to use the above server:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"]
}
}
}
Individual servers may require additional arguments or environment variables to be set. See the READMEs within src for more information.
Languages
TypeScript
69.4%
Python
19.2%
JavaScript
10.2%
Dockerfile
1.2%