Discover Awesome MCP Servers
Extend your agent with 83,864 capabilities via MCP servers.
- All83,864
- Developer Tools3,867
- Search1,714
- Research & Data1,557
- AI Integration Systems229
- Cloud Platforms219
- Data & App Analysis181
- Database Interaction177
- Remote Shell Execution165
- Browser Automation147
- Databases145
- Communication137
- AI Content Generation127
- OS Automation120
- Programming Docs Access109
- Content Fetching108
- Note Taking97
- File Systems96
- Version Control93
- Finance91
- Knowledge & Memory90
- Monitoring79
- Security71
- Image & Video Processing69
- Digital Note Management66
- AI Memory Systems62
- Advanced AI Reasoning59
- Git Management Tools58
- Cloud Storage51
- Entertainment & Media43
- Virtualization42
- Location Services35
- Web Automation & Stealth32
- Media Content Processing32
- Calendar Management26
- Ecommerce & Retail18
- Speech Processing18
- Customer Data Platforms16
- Travel & Transportation14
- Education & Learning Tools13
- Home Automation & IoT13
- Web Search Integration12
- Health & Wellness10
- Customer Support10
- Marketing9
- Games & Gamification8
- Google Cloud Integrations7
- Art & Culture4
- Language Translation3
- Legal & Compliance2
Anki MCP Server
一个服务器实现,连接到本地运行的 Anki,从而可以通过模型上下文协议进行卡片复习和创建。
WinTerm MCP
一个模型上下文协议服务器,它提供对 Windows 终端的程序化访问,使 AI 模型能够通过标准化的工具与 Windows 命令行交互,这些工具用于编写命令、读取输出和发送控制信号。
Decent-Sampler Drums MCP Server
促进 DecentSampler 鼓组配置的创建,支持 WAV 文件分析和 XML 生成,以确保准确的采样长度和结构良好的预设。
DocuMind MCP Server
一个模型上下文协议服务器,使用先进的神经处理技术分析和评估 GitHub README 文档的质量,并提供评分和改进建议。 (Alternatively, a slightly more formal translation:) 一个模型上下文协议 (Model Context Protocol) 服务器,利用先进的神经处理技术,分析并评估 GitHub README 文档的质量,同时提供评分和改进建议。
zendesk-mcp-server
这个服务器提供与 Zendesk 的全面集成,可以检索和管理工单及评论,进行工单分析和起草回复,并能访问帮助中心文章作为知识库。
Textwell MCP Server
将 Textwell 与模型上下文协议集成,以通过 GitHub Pages 桥梁促进文本操作,例如写入和附加文本。
Scrapbox MCP Server
一个简单的基于 TypeScript 的 MCP 服务器,它实现了一个笔记系统,允许用户创建、列出和通过 Claude 生成文本笔记的摘要。
Chrome Tools MCP Server
一个 MCP 服务器,它提供通过 Chrome 开发者工具协议与 Chrome 交互的工具,从而能够远程控制 Chrome 标签页来执行 JavaScript、捕获屏幕截图、监控网络流量等等。
Cosense MCP Server
一个 MCP 服务器,允许 Claude 访问来自 Cosense 项目的页面,支持公共和私有项目,并可选择使用 SID 认证。
MCP Alchemy
将 Claude Desktop 直接连接到数据库,使其能够通过 API 层探索数据库结构、编写 SQL 查询、分析数据集以及创建报告,该 API 层提供表探索和查询执行工具。
Draw Things MCP
一个集成,允许 Cursor AI 通过 Draw Things API 使用自然语言提示生成图像。
MCP Source Tree Server
Okay, I understand. Here's how you can generate a JSON file tree from a specified directory's `src` folder, respecting `.gitignore` rules, suitable for quick project structure review in Claude. I'll provide a Python script to accomplish this. **Explanation:** 1. **`gitignore_parser` Library:** We'll use the `gitignore_parser` library to correctly interpret `.gitignore` files. This is crucial for accurately reflecting what files should be excluded. If you don't have it, you'll need to install it: `pip install gitignore_parser` 2. **`os.walk()`:** This function recursively traverses the directory tree. 3. **`.gitignore` Handling:** The script reads and parses `.gitignore` files in each directory it encounters. 4. **JSON Output:** The script constructs a JSON representation of the file tree. **Python Script:** ```python import os import json import gitignore_parser def generate_file_tree_json(root_dir, output_file="file_tree.json"): """ Generates a JSON file tree from the 'src' folder of a specified directory, respecting '.gitignore' rules. Args: root_dir (str): The root directory of the project. output_file (str): The name of the output JSON file. Defaults to "file_tree.json". """ src_dir = os.path.join(root_dir, "src") if not os.path.exists(src_dir): print(f"Error: 'src' directory not found in {root_dir}") return def build_tree(directory, ignore_checker): """Recursively builds the file tree.""" tree = {} for item in os.listdir(directory): full_path = os.path.join(directory, item) relative_path = os.path.relpath(full_path, src_dir) # Path relative to src if ignore_checker(relative_path): continue # Skip ignored files/directories if os.path.isfile(full_path): tree[item] = None # Represent files as None elif os.path.isdir(full_path): tree[item] = build_tree(full_path, ignore_checker) return tree def create_ignore_checker(root_directory): """Creates a function to check if a file/directory is ignored based on .gitignore files.""" ignore_files = [] for root, _, files in os.walk(root_directory): if '.gitignore' in files: ignore_files.append(os.path.join(root, '.gitignore')) ignore_list = [] for ignore_file in ignore_files: ignore_list.append(gitignore_parser.parse(ignore_file)) def is_ignored(path): for ignore in ignore_list: if ignore(os.path.join(src_dir, path)): # Check against the full path return True return False return is_ignored ignore_checker = create_ignore_checker(src_dir) file_tree = build_tree(src_dir, ignore_checker) with open(output_file, "w") as f: json.dump(file_tree, f, indent=4) print(f"File tree JSON saved to {output_file}") # Example Usage: if __name__ == "__main__": # Replace with the actual root directory of your project project_root = "/path/to/your/project" # <---- CHANGE THIS! generate_file_tree_json(project_root) ``` **How to Use:** 1. **Install `gitignore_parser`:** `pip install gitignore_parser` 2. **Replace Placeholder:** In the `if __name__ == "__main__":` block, replace `"/path/to/your/project"` with the actual absolute path to the root directory of your project (the directory containing the `src` folder). 3. **Run the Script:** Execute the Python script. It will create a file named `file_tree.json` in the same directory as the script. 4. **Upload to Claude:** Upload the `file_tree.json` file to Claude. **Example `file_tree.json` Output (Illustrative):** ```json { "components": { "Button.js": null, "Input.js": null }, "utils": { "api.js": null, "helpers.js": null }, "App.js": null, "index.js": null } ``` **Key Improvements and Considerations:** * **`.gitignore` Parsing:** Uses `gitignore_parser` for accurate `.gitignore` handling. This is *essential* for real-world projects. * **Error Handling:** Includes a check to ensure the `src` directory exists. * **Relative Paths:** Uses `os.path.relpath` to store paths relative to the `src` directory in the JSON, making the output more concise and readable. * **Clearer Structure:** Represents files as `null` in the JSON tree, which is a common and easily understood convention. * **Example Usage:** Provides a clear example of how to use the script. * **Comments:** Includes comments to explain the code. * **`create_ignore_checker` Function:** This function encapsulates the logic for creating the ignore checker, making the code more modular and readable. It finds all `.gitignore` files within the `src` directory and its subdirectories. * **Full Path Checking:** The `is_ignored` function now checks the full path (relative to the `src` directory) against the `.gitignore` rules, ensuring accurate matching. * **Modularity:** The code is broken down into functions for better organization and reusability. **How to Use with Claude:** 1. **Upload the JSON:** Upload the generated `file_tree.json` file to Claude. 2. **Prompt Claude:** Craft a prompt that asks Claude to analyze the file structure. For example: * "Here is a JSON representation of the file structure of a project's `src` directory. Can you identify the main components and utilities?" * "Analyze this file structure and suggest potential areas for refactoring." * "Based on this file structure, what design patterns might be in use?" * "This JSON represents the file tree of a React project. Identify the likely component structure." The more specific your prompt, the better the results you'll get from Claude. You can also ask Claude to generate diagrams or visualizations based on the JSON data.
MATLAB MCP Server
将 MATLAB 与 AI 集成,以执行代码、从自然语言生成脚本,并无缝访问 MATLAB 文档。
Logseq MCP Server
一个服务器,使大型语言模型(LLM)能够以编程方式与 Logseq 知识图谱进行交互,从而允许创建和管理页面和块。
ticktick-mcp-server
一个 TickTick 的 MCP 服务器,可以直接通过 Claude 和其他 MCP 客户端与您的 TickTick 任务管理系统进行交互。
MCP Server Replicate
一个 FastMCP 服务器实现,它促进对 AI 模型推理的基于资源的访问,重点是通过 Replicate API 进行图像生成,并具有实时更新、Webhook 集成和安全 API 密钥管理等功能。
MCP Server: SSH Rails Runner
启用通过 SSH 安全地远程执行 Rails 控制台命令,用于只读操作、变更规划以及在已部署的 Rails 环境中执行批准的变更。
Explorium AgentSource MCP Server
Explorium API MCP 服务器。通过在 GitHub 上创建一个帐户来参与 explorium-ai/mcp-explorium 的开发。
Google Search MCP Server
通过在 GitHub 上创建一个帐户来为 Claw256/mcp-web-search 的开发做出贡献。
literateMCP
一个灵活的系统,用于管理各种类型的来源(论文、书籍、网页等),并将它们与知识图谱集成。 - YUZongmin/sqlite-literature-management-fastmcp-mcp-server
Unreal Engine Code Analyzer MCP Server
用于虚幻引擎 5 的 MCP 服务器。通过在 GitHub 上创建一个帐户来参与 ayeletstudioindia/unreal-analyzer-mcp 的开发。
Tuya MCP Server
一个基于 tinytuya 的 Tuya 设备控制命令行工具 - cabra-lat/tuyactl
ElevenLabs Text-to-Speech MCP
通过在 GitHub 上创建一个帐户来为 georgi-io/jessica 的开发做出贡献。
Deepseek R1 MCP Server
数字以太中的恐惧与厌恶:一场进入人工智能视觉意识的野蛮之旅 - grapheneaffiliate/dRiNk-ThE-kOoLaId
Code Snippet Server
通过在 GitHub 上创建一个帐户来为 ngeojiajun/mcp-code-snippets 的开发做出贡献。
MCP Gateway for RFK Jr Endpoints
在 GitHub 上创建一个帐户,为 debedb/mcprfkgw 的开发做贡献。
Deskaid
用于 Claude Desktop 的编码助手 MCP。通过在 GitHub 上创建一个帐户来参与 ezyang/codemcp 的开发。
MCP-researcher Server
一个模型上下文协议 (MCP) 服务器,用于研究和文档辅助,使用 Perplexity AI - DaInfernalCoder/perplexity-mcp
Keboola Explorer MCP Server
通过在 GitHub 上创建一个帐户,为 keboola/keboola-mcp-server 的开发做出贡献。
ArangoDB
一个基于 TypeScript 的服务器,用于通过模型上下文协议与 ArangoDB 交互,从而实现数据库操作并与 Claude 和 VSCode 扩展等工具集成,以简化数据管理。