发现优秀的 MCP 服务器
通过 MCP 服务器扩展您的代理能力,拥有 27,861 个能力。
Obsidian MCP Server
Integrates with the Obsidian Local REST API to enable reading, creating, editing, and searching notes within an Obsidian vault. It supports advanced operations like Dataview queries and partial file updates through both stdio and HTTP transport modes.
Postman MCP Generator
Generates MCP servers from Postman API requests, automatically creating JavaScript tools that enable LLMs to interact with any API documented in Postman collections. Supports authentication configuration and deployment via STDIO or SSE.
Scrapbox Cosense MCP Server
这个服务器方便与 cosense/Scrapbox 项目进行交互,使用户能够检索、列出、搜索和创建页面,同时支持各种查询操作并安全访问私有项目。
Fergus MCP Server
Enables AI assistants to interact with Fergus job management platform through secure API integration. Supports managing jobs, customers, quotes, and sites with real-time data synchronization.
GitLab MCP Server
一个 MCP 服务器,能够与 GitLab 仓库进行通信,允许通过自然语言与 GitLab 的 API 交互,从而管理项目、问题和仓库。
Massive Context MCP
An MCP server that enables processing of massive datasets up to 10M+ tokens using a recursive language model pattern for strategic chunking and analysis. It automates sub-queries and result aggregation using free local inference via Ollama or the Claude API to handle context beyond standard prompt limits.
OpsNow MCP Asset Server
MCP + CrewAI Agentic Integration
A FastMCP server providing real-time weather, news retrieval, and local note management tools for autonomous CrewAI agents. It enables context-aware multi-agent workflows with observability and high-speed inference integration.
REI3 Tickets MCP Server
Enables AI assistants to create tickets and worklog entries in REI3 ticket management systems through the REI3 Tickets API. Supports secure authentication and provides natural language interface for ticket operations.
Webpage MCP Server
Enables querying and retrieving webpage content from websites by parsing sitemap.xml files and fetching HTML content from specified URLs. Includes built-in rate limiting for responsible web scraping.
Carousels MCP from Houtini
MCP server that turns articles, transcripts, and markdown into LinkedIn carousel PDFs, Instagram PNGs, and Threads PNGs. Content in, slides out. No web UI, no cloud service.
Stealth Browser MCP Server
Provides stealth browser capabilities using Playwright with anti-detection techniques, allowing MCP clients to navigate websites and take screenshots while evading common bot detection systems.
coin-mcp-server
Okay, here's a breakdown of how to use Bitget's API to get cryptocurrency information, along with considerations and a basic example. I'll provide both the English explanation and the Chinese translation. **English Explanation** **1. Understanding the Bitget API:** * **REST API:** Bitget primarily uses a RESTful API. This means you'll be making HTTP requests (GET, POST, etc.) to specific URLs (endpoints) to retrieve data or perform actions. * **Authentication:** Some endpoints (especially those dealing with your account or trading) require authentication. This involves using API keys (a public key and a secret key) that you generate on the Bitget platform. Keep your secret key *very* safe. * **Rate Limits:** Bitget, like most exchanges, has rate limits. This restricts the number of requests you can make within a certain time period. Exceeding these limits will result in your requests being temporarily blocked. Check the Bitget API documentation for the specific rate limits. * **Documentation:** The *most important* resource is the official Bitget API documentation. Find it on the Bitget website (usually under "API" or "Developer" sections). The documentation will list all available endpoints, required parameters, response formats, and authentication details. **Always refer to the official documentation first.** **2. Basic Steps:** 1. **Get API Keys (if needed):** If you need to access private data (like your account balance or place orders), create API keys on the Bitget website. Enable the necessary permissions (e.g., "Read," "Trade"). 2. **Choose an Endpoint:** Decide what information you want. Examples: * **Market Data:** Get the current price of Bitcoin (BTC), trading volume, order book, etc. * **Account Information:** Get your account balance, order history, etc. (requires authentication). * **Trading:** Place buy/sell orders (requires authentication). 3. **Construct the Request:** Build the HTTP request to the correct endpoint, including any required parameters. This often involves creating a URL with query parameters. 4. **Send the Request:** Use a programming language (Python, JavaScript, etc.) and an HTTP client library (e.g., `requests` in Python, `axios` in JavaScript) to send the request to the Bitget API. 5. **Parse the Response:** The Bitget API will return a response, usually in JSON format. Parse the JSON to extract the data you need. 6. **Handle Errors:** Check the HTTP status code and the response body for any errors. Implement error handling in your code. **3. Example (Python using `requests` - Market Data - Public Endpoint):** ```python import requests import json # Replace with the actual Bitget API endpoint for ticker information (e.g., BTCUSDT) api_url = "https://api.bitget.com/api/spot/v1/ticker/BTCUSDT_SPBL" #Example endpoint, check documentation try: response = requests.get(api_url) response.raise_for_status() # Raise an exception for bad status codes (4xx or 5xx) data = response.json() print(json.dumps(data, indent=4)) # Pretty print the JSON # Example: Extract the last price last_price = data['data']['close'] print(f"Last price of BTCUSDT: {last_price}") except requests.exceptions.RequestException as e: print(f"Error: {e}") except (KeyError, TypeError) as e: print(f"Error parsing JSON: {e}") ``` **Important Notes:** * **Security:** Never hardcode your secret API key directly into your code. Use environment variables or a secure configuration file. * **Error Handling:** Implement robust error handling to catch network errors, API errors, and JSON parsing errors. * **API Versioning:** Bitget may update its API. Pay attention to the API version in the endpoint URL (e.g., `/api/v1/`, `/api/v2/`) and update your code accordingly when necessary. * **Testing:** Thoroughly test your code in a test environment (if Bitget provides one) before using it with real funds. * **Legal:** Be aware of any legal or regulatory requirements related to using cryptocurrency exchange APIs in your jurisdiction. **Chinese Translation** **1. 理解 Bitget API:** * **REST API:** Bitget 主要使用 RESTful API。 这意味着您将向特定的 URL(端点)发出 HTTP 请求(GET、POST 等)以检索数据或执行操作。 * **身份验证:** 某些端点(尤其是处理您的帐户或交易的端点)需要身份验证。 这涉及使用您在 Bitget 平台上生成的 API 密钥(公钥和私钥)。 请 *非常* 安全地保管您的私钥。 * **速率限制:** 像大多数交易所一样,Bitget 具有速率限制。 这限制了您在特定时间段内可以发出的请求数量。 超过这些限制将导致您的请求被暂时阻止。 请查看 Bitget API 文档以获取具体的速率限制。 * **文档:** *最重要* 的资源是官方 Bitget API 文档。 在 Bitget 网站上找到它(通常在“API”或“开发者”部分下)。 该文档将列出所有可用的端点、必需的参数、响应格式和身份验证详细信息。 **始终首先参考官方文档。** **2. 基本步骤:** 1. **获取 API 密钥(如果需要):** 如果您需要访问私有数据(例如您的帐户余额或下订单),请在 Bitget 网站上创建 API 密钥。 启用必要的权限(例如,“读取”、“交易”)。 2. **选择一个端点:** 确定您想要的信息。 例子: * **市场数据:** 获取比特币 (BTC) 的当前价格、交易量、订单簿等。 * **帐户信息:** 获取您的帐户余额、订单历史记录等(需要身份验证)。 * **交易:** 下买入/卖出订单(需要身份验证)。 3. **构建请求:** 构建到正确端点的 HTTP 请求,包括任何必需的参数。 这通常涉及创建带有查询参数的 URL。 4. **发送请求:** 使用编程语言(Python、JavaScript 等)和 HTTP 客户端库(例如 Python 中的 `requests`,JavaScript 中的 `axios`)将请求发送到 Bitget API。 5. **解析响应:** Bitget API 将返回一个响应,通常为 JSON 格式。 解析 JSON 以提取您需要的数据。 6. **处理错误:** 检查 HTTP 状态代码和响应正文是否有任何错误。 在您的代码中实现错误处理。 **3. 示例(Python 使用 `requests` - 市场数据 - 公共端点):** ```python import requests import json # 替换为实际的 Bitget API 端点以获取行情信息(例如,BTCUSDT) api_url = "https://api.bitget.com/api/spot/v1/ticker/BTCUSDT_SPBL" #示例端点,请查阅文档 try: response = requests.get(api_url) response.raise_for_status() # 为错误的状态代码(4xx 或 5xx)引发异常 data = response.json() print(json.dumps(data, indent=4)) # 漂亮地打印 JSON # 示例:提取最新价格 last_price = data['data']['close'] print(f"BTCUSDT 的最新价格:{last_price}") except requests.exceptions.RequestException as e: print(f"错误:{e}") except (KeyError, TypeError) as e: print(f"解析 JSON 时出错:{e}") ``` **重要提示:** * **安全:** 永远不要将您的秘密 API 密钥直接硬编码到您的代码中。 使用环境变量或安全配置文件。 * **错误处理:** 实现强大的错误处理以捕获网络错误、API 错误和 JSON 解析错误。 * **API 版本控制:** Bitget 可能会更新其 API。 注意端点 URL 中的 API 版本(例如,`/api/v1/`、`/api/v2/`),并在必要时相应地更新您的代码。 * **测试:** 在将您的代码用于真实资金之前,请在测试环境中彻底测试您的代码(如果 Bitget 提供)。 * **法律:** 请注意您所在司法管辖区与使用加密货币交易所 API 相关的任何法律或监管要求。 **Key Takeaways:** * **Read the Documentation:** The Bitget API documentation is your bible. * **Start Simple:** Begin with public endpoints (no authentication required) to get familiar with the API. * **Handle Errors:** Robust error handling is crucial. * **Security First:** Protect your API keys. I hope this comprehensive explanation and example are helpful! Remember to consult the official Bitget API documentation for the most up-to-date information. Good luck!
MCP-ArcKnowledge
有了这个,您可以轻松地管理和查询您的知识库列表(webhook 端点)。您可以通过注册其 URL 来添加新的文档来源,并且可以选择提供描述和 API 密钥。 您还可以列出所有已注册的文档来源并查看其详细信息。 当您...
jitapi
Point Claude at any API. JitAPI figures out which endpoints to call and in what order — automatically. Register any OpenAPI spec, search endpoints in plain English, and orchestrate multi-step workflows across multiple APIs. No API keys required — works out of the box with local embeddings.
Ros_mcp_server
ROS MCP 服务器旨在通过提供一组允许精确控制线性和角速度的函数,来促进机器人运动的控制。
Ghibli Image Generator MCP Server
Provides access to the Ghibli Image Generator API for creating Ghibli-style images using OpenAI models. It enables users to generate stylized artwork through the ghibli_generate_image tool.
FrankenClaw
Modular MCP toolbox that gives AI agents controlled access to shell, files, Git, Ollama, Shopify, vision, browser automation, and more — 12 FrankenTools.
Claude Talk to Figma MCP
Enables AI assistants like Claude and Cursor to interact directly with Figma to create, modify, and analyze design elements in real-time. It provides a comprehensive suite of tools for document inspection, styling, component management, and automated layout via a bidirectional WebSocket connection.
mcp-gopls
一个模型上下文协议 (MCP) 服务器,它允许像 Claude 这样的 AI 助手与 Go 语言服务器协议 (LSP) 交互,并从高级 Go 代码分析功能中受益。
SkillAudit
AI agent skill security scanner. Scans URLs and GitHub repos to verify AI agent capabilities, check security gates, and assess reputation. 4 tools: scan_url, scan_github, gate_check, reputation_check.
Sandbox MCP
Production-ready MCP server for secure Python code execution with artifact capture, virtual environment support, and LM Studio integration.
Cover Letter MCP Server
Generates professional PDF cover letters using LaTeX with advanced folder management capabilities. Integrates with Claude Desktop to create beautifully formatted cover letters with customizable organization by company, role, or industry.
Date-MCP Server
A Model Context Protocol service that handles date and time conversions for China's timezone (UTC+8), supporting current date retrieval, timestamp conversions, and date-time formatting.
Session Buddy
Provides comprehensive session management for Claude Code with automatic initialization/cleanup, quality checkpoints, and local conversation memory with semantic search for capturing learnings across coding sessions.
pentestMCP
An MCP server that exposes over 20 standard penetration testing utilities, such as Nmap, SQLMap, and OWASP ZAP, as callable tools for AI agents. It enables natural language control over complex security workflows for automated and interactive penetration testing.
MCP-SST
Enables monitoring and control of the SST development process by streaming dev logs, managing Lambda invocations, and executing lifecycle commands like start, stop, and restart. It provides real-time access to event streams and deployment status directly through the Model Context Protocol.
IndexFoundry MCP
Creates deterministic, auditable vector databases from any content source with deployable RAG applications. Supports multiple embedding providers and vector databases with fine-grained pipeline control or project-based workflows.
workbench-mcp
A Python-based MCP server for interactive PostgreSQL data exploration, schema discovery, and safe SQL execution with support for stored procedures. It also enables automation through external HTTP API requests and local bash script execution on Fedora and Linux systems.
Strudel MCP Server
Enables AI-powered music generation and live coding by providing direct control over Strudel.cc through browser automation. Supports pattern creation, audio analysis, and pattern storage for TidalCycles/Strudel music patterns.