Claude-MCP is a collection of Model Context Protocol (MCP) servers designed to enhance Claude Desktop and other MCP-compatible applications with various capabilities, including file management, GitHub integration, web search functionality, and specialized tools for mindmapping, market analysis, financial modeling, and technical documentation.
To install the Claude-MCP servers:
Clone the repository:
git clone https://github.com/jamcam-me/Claude-MCP.git
cd Claude-MCP
Install dependencies:
npm install
To launch all MCP servers simultaneously:
npm start
You can start specific servers based on your needs:
npm run start:filesystem # For file system access
npm run start:github # For GitHub integration
npm run start:brave-search # For web searches
npm run start:fetch # For URL and API access
npm run start:mindmap # For mindmap creation
npm run start:market-analysis # For market analysis tools
npm run start:financial-modeling # For financial projections
npm run start:technical-doc # For documentation generation
Provides local filesystem access with tools for:
Offers GitHub integration with capabilities to:
Enables web search functionality:
Provides tools for retrieving online data:
Offers mindmapping capabilities:
Provides business intelligence tools:
Supports financial planning with:
Facilitates documentation creation:
To configure Claude Desktop to use these MCP servers, add the following to your claude_desktop_config.json
file:
{
"mcpServers": {
"filesystem": {
"command": "node",
"args": ["D:/github/Claude-MCP/src/mcp-servers/filesystem-server.js"],
"disabled": false,
"alwaysAllow": []
},
"github": {
"command": "node",
"args": ["D:/github/Claude-MCP/src/mcp-servers/github-server.js"],
"disabled": false,
"alwaysAllow": []
},
"brave-search": {
"command": "node",
"args": ["D:/github/Claude-MCP/src/mcp-servers/brave-search-server.js"],
"disabled": false,
"alwaysAllow": []
},
"fetch": {
"command": "node",
"args": ["D:/github/Claude-MCP/src/mcp-servers/fetch-server.js"],
"disabled": false,
"alwaysAllow": []
},
"mindmap": {
"command": "node",
"args": ["D:/github/Claude-MCP/src/mcp-servers/mindmap-server.js"],
"disabled": false,
"alwaysAllow": []
},
"market-analysis": {
"command": "node",
"args": ["D:/github/Claude-MCP/src/mcp-servers/market-analysis-server.js"],
"disabled": false,
"alwaysAllow": []
},
"financial-modeling": {
"command": "node",
"args": ["D:/github/Claude-MCP/src/mcp-servers/financial-modeling-server.js"],
"disabled": false,
"alwaysAllow": []
},
"technical-documentation": {
"command": "node",
"args": ["D:/github/Claude-MCP/src/mcp-servers/technical-documentation-server.js"],
"disabled": false,
"alwaysAllow": []
}
}
}
Make sure to adjust the file paths to match your installation directory.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.