Overview
The mcp-store is a repository for MCP Server and Client, providing a platform for users to access and manage their MCP applications.
To use mcp-store, visit the GitHub repository at mcp-store and follow the instructions provided in the README file for installation and setup.
- Centralized access to MCP Server and Client applications. - Easy installation and setup instructions. - Community support through GitHub issues.
- Developers can use mcp-store to manage their MCP applications efficiently.
- Users can find and contribute to MCP projects.
- Facilitates collaboration among developers working on MCP-related projects.
Add to your AI client
Use these steps to connect mcp-store in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-store-tmstack": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-store-tmstack"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-store-tmstack": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-store-tmstack"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-store-tmstack": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-store-tmstack"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-store-tmstack": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-store-tmstack"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-store-tmstack": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-store-tmstack"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-store-tmstack": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-store-tmstack"
]
}
}
}FAQ
What is MCP?
MCP stands for Minecraft Coder Pack, a tool for modding Minecraft.
Is mcp-store free to use?
Yes! mcp-store is open-source and free for everyone to use.
How can I contribute to mcp-store?
You can contribute by submitting issues or pull requests on the GitHub repository.