Claude MCP 工具集
STDIO用于Claude桌面端的MCP服务器集合
用于Claude桌面端的MCP服务器集合
A collection of Model Context Protocol (MCP) servers for use with Claude Desktop and other MCP-compatible applications.
This repository contains multiple MCP servers that provide various capabilities:
Clone the repository:
git clone https://github.com/jamcam-me/Claude-MCP.git
cd Claude-MCP
Install dependencies:
npm install
To start all MCP servers:
npm start
To start individual servers:
npm run start:filesystem
npm run start:github
npm run start:brave-search
npm run start:fetch
npm run start:mindmap
npm run start:market-analysis
npm run start:financial-modeling
npm run start:technical-doc
Provides access to the local filesystem with the following tools:
read_file
: Read a file from the filesystemwrite_file
: Write data to a file in the filesystemlist_files
: List files in a directoryProvides access to GitHub repositories with the following tools:
search_repositories
: Search for GitHub repositoriesget_repository
: Get information about a GitHub repositorylist_issues
: List issues in a GitHub repositoryProvides web search capabilities using Brave Search with the following tools:
search
: Perform a web searchsearch_news
: Search for news articlessearch_images
: Search for imagesProvides tools for fetching data from URLs and APIs:
fetch
: Fetch data from a URLfetch_json
: Fetch JSON data from a URL and parse itfetch_html
: Fetch HTML content from a URLProvides tools for creating and manipulating mindmaps:
create_mindmap
: Create a new mindmap from a template or from scratchupdate_mindmap
: Update an existing mindmap by adding, modifying, or removing nodesexport_mindmap
: Export a mindmap to various formats (JSON, Markdown, Mermaid)Provides tools for market analysis and visualization:
partner_ecosystem_analysis
: Analyze partner ecosystem and generate visualization datacompetitive_analysis
: Analyze competitive landscape and generate visualization dataregional_market_analysis
: Analyze regional markets and generate visualization dataProvides tools for financial modeling and analysis:
revenue_projection
: Generate revenue projections based on market share, pricing tiers, and growth ratesscenario_analysis
: Analyze bull, base, and bear case scenarios for financial projectionssensitivity_analysis
: Analyze the sensitivity of financial projections to changes in key parametersProvides tools for generating technical documentation and diagrams:
generate_architecture_diagram
: Generate architecture diagrams based on system componentsgenerate_sequence_diagram
: Generate sequence diagrams for system interactionsgenerate_gantt_chart
: Generate Gantt charts for project timelinesTo 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": [] } } }
ISC