Discover Awesome MCP Servers

Extend your agent with 36,482 capabilities via MCP servers.

All36,482
concierge-mcp

concierge-mcp

MCP server for Concierge, enabling AI agents to manage Discord customer support operations including tickets, AI, knowledge base, analytics, and more via natural language.

Paste MCP

Paste MCP

Connect Paste to Claude, Codex, Cursor, and other AI tools to access your clipboard.

MCP Server Template for Cursor IDE

MCP Server Template for Cursor IDE

Tuyệt vời! Đây là một bản mẫu (template) để tạo và kết nối các công cụ tùy chỉnh vào Cursor IDE sử dụng Model Context Protocol, có hỗ trợ phản hồi từ server một cách vui vẻ: ```python # server.py (Ví dụ server Flask) from flask import Flask, request, jsonify import json app = Flask(__name__) @app.route('/my_custom_tool', methods=['POST']) def my_custom_tool(): """ Điểm cuối (endpoint) cho công cụ tùy chỉnh của bạn. Nhận yêu cầu từ Cursor IDE và trả về kết quả. """ try: data = request.get_json() # Xử lý dữ liệu nhận được từ Cursor IDE # Ví dụ: query = data.get('query', '') context = data.get('context', {}) file_content = context.get('currentFileContent', '') file_path = context.get('currentFilePath', '') # **Xử lý logic công cụ của bạn ở đây** # Ví dụ đơn giản: đếm số dòng trong file num_lines = len(file_content.splitlines()) # **Tạo phản hồi vui vẻ!** response_data = { "result": f"Tuyệt vời! File {file_path} có {num_lines} dòng!", "status": "success", "message": "Công cụ đã chạy thành công!", "icon": "🎉" # Thêm một biểu tượng cho vui! } return jsonify(response_data), 200 except Exception as e: # Xử lý lỗi error_message = f"Ôi không! Đã xảy ra lỗi: {str(e)}" response_data = { "result": error_message, "status": "error", "message": "Công cụ gặp lỗi khi chạy.", "icon": "😞" } return jsonify(response_data), 500 if __name__ == '__main__': app.run(debug=True, port=5000) ``` ```json // cursor_tool_manifest.json (Ví dụ manifest cho Cursor IDE) { "name": "My Custom Tool", "description": "Một công cụ tùy chỉnh tuyệt vời để làm những điều thú vị!", "endpoint": "http://localhost:5000/my_custom_tool", "requiresContext": true, "icon": "✨", "inputPlaceholder": "Nhập truy vấn của bạn (tùy chọn)", "supportsMultiFile": false, "supportsLineSelection": false, "supportsStreaming": false, "modelContextProtocolVersion": "1.0" } ``` **Giải thích:** * **`server.py` (Server Flask):** * Sử dụng Flask để tạo một server đơn giản. * `my_custom_tool` là điểm cuối (endpoint) mà Cursor IDE sẽ gửi yêu cầu POST đến. * `request.get_json()` lấy dữ liệu JSON được gửi từ Cursor IDE. * `data.get('query', '')` và `context.get(...)` trích xuất thông tin từ dữ liệu nhận được. * **Quan trọng:** Phần `**Xử lý logic công cụ của bạn ở đây**` là nơi bạn viết code để thực hiện công việc mà công cụ của bạn cần làm. * **Phản hồi vui vẻ:** `response_data` chứa kết quả, trạng thái, thông báo và một biểu tượng (icon) để làm cho phản hồi trở nên thân thiện hơn. * Sử dụng `jsonify` để trả về dữ liệu JSON cho Cursor IDE. * Xử lý lỗi bằng cách trả về mã trạng thái HTTP 500 và một thông báo lỗi hữu ích. * **`cursor_tool_manifest.json` (Manifest cho Cursor IDE):** * `name`: Tên của công cụ của bạn (hiển thị trong Cursor IDE). * `description`: Mô tả ngắn gọn về công cụ của bạn. * `endpoint`: URL của server mà công cụ của bạn đang chạy. * `requiresContext`: `true` nếu công cụ của bạn cần thông tin về file hiện tại (nội dung, đường dẫn, v.v.). * `icon`: Biểu tượng cho công cụ của bạn (có thể là emoji hoặc URL đến một hình ảnh). * `inputPlaceholder`: Văn bản gợi ý hiển thị trong ô nhập liệu của công cụ. * `supportsMultiFile`: `true` nếu công cụ của bạn có thể xử lý nhiều file cùng một lúc. * `supportsLineSelection`: `true` nếu công cụ của bạn cần thông tin về các dòng được chọn. * `supportsStreaming`: `true` nếu công cụ của bạn trả về kết quả theo luồng (streaming). * `modelContextProtocolVersion`: Phiên bản của Model Context Protocol mà công cụ của bạn sử dụng. **Cách sử dụng:** 1. **Cài đặt Flask:** `pip install Flask` 2. **Chạy server:** `python server.py` 3. **Tạo `cursor_tool_manifest.json`:** Điền thông tin phù hợp cho công cụ của bạn. 4. **Thêm công cụ vào Cursor IDE:** * Mở Cursor IDE. * Đi tới Settings (Cài đặt). * Tìm "Custom Tools" (Công cụ tùy chỉnh). * Nhấp vào "Add Custom Tool" (Thêm công cụ tùy chỉnh). * Nhập đường dẫn đến `cursor_tool_manifest.json`. **Lưu ý quan trọng:** * **Bảo mật:** Trong môi trường sản xuất, hãy đảm bảo rằng server của bạn được bảo mật (ví dụ: sử dụng HTTPS, xác thực). * **Xử lý lỗi:** Xử lý lỗi một cách cẩn thận để cung cấp thông tin hữu ích cho người dùng. * **Logic công cụ:** Phần quan trọng nhất là logic công cụ của bạn. Hãy viết code để thực hiện công việc mà công cụ của bạn cần làm một cách hiệu quả và chính xác. * **Phản hồi:** Cố gắng cung cấp phản hồi rõ ràng và hữu ích cho người dùng. Sử dụng các thông báo vui vẻ và biểu tượng để làm cho trải nghiệm người dùng tốt hơn. * **Model Context Protocol:** Đọc kỹ tài liệu về Model Context Protocol để hiểu rõ cách dữ liệu được truyền giữa Cursor IDE và công cụ của bạn. **Ví dụ nâng cao:** * **Sử dụng API của bên thứ ba:** Công cụ của bạn có thể gọi các API của bên thứ ba để thực hiện các tác vụ phức tạp hơn. * **Phân tích cú pháp code:** Sử dụng các thư viện phân tích cú pháp code (ví dụ: `ast` trong Python) để hiểu cấu trúc của code và thực hiện các phân tích nâng cao. * **Tạo gợi ý code:** Công cụ của bạn có thể tạo gợi ý code dựa trên ngữ cảnh hiện tại. Chúc bạn thành công trong việc tạo ra những công cụ tùy chỉnh tuyệt vời cho Cursor IDE! Nếu bạn có bất kỳ câu hỏi nào, đừng ngần ngại hỏi.

PixelLab

PixelLab

Generate animated pixel art characters, tilesets, and object directly from your AI coding assistant!

Emoji Storyteller MCP Server

Emoji Storyteller MCP Server

Generates entertaining stories told entirely through emojis with adjustable chaos levels, themed narratives, and a maximum chaos mode. Perfect for creating delightful emoji-based tales across adventure, romance, horror, space, food, and party themes.

MCP Tekmetric

MCP Tekmetric

A Model Context Protocol server that allows AI assistants to interact with Tekmetric data, enabling users to query appointment details, vehicle information, repair order status, and parts inventory through natural language.

IBM Business Automation Workflow MCP Server

IBM Business Automation Workflow MCP Server

Enables AI agents to integrate with IBM Business Automation Workflow by exposing workflow REST services as MCP tools, allowing natural language interaction with business automation capabilities.

Google Calendar MCP Server

Google Calendar MCP Server

Enables interaction with Google Calendar through the Google Calendar API. Supports listing calendars, creating/deleting events, and retrieving calendar events with OAuth2 authentication.

Remote MCP Server on Cloudflare

Remote MCP Server on Cloudflare

@git-fabric/aiana

@git-fabric/aiana

A composable semantic memory layer that provides cross-project recall and session context using Qdrant and OpenAI embeddings. It enables users to securely store, search, and manage persistent memories with built-in secret scrubbing for privacy.

Cloud PC Management MCP Server

Cloud PC Management MCP Server

Cho phép quản lý Azure Cloud PC bằng Microsoft Graph API, cho phép người dùng liệt kê các Cloud PC khả dụng trong đối tượng thuê của họ thông qua Claude Desktop.

the402-mcp-server

the402-mcp-server

MCP server for the402.ai — an open marketplace where AI agents discover and purchase services from third-party providers via x402 micropayments (USDC on Base). Browse the catalog, purchase services, manage conversation threads, and list services as a provider.

Vibe MCP Server

Vibe MCP Server

Enterprise-grade MCP server for Vibe APIs, enabling AI agents to manage projects, repositories, buckets, and retrieve activity data.

godoc-mcp

godoc-mcp

godoc-mcp is a Model Context Protocol (MCP) server that provides efficient access to Go documentation. It helps LLMs understand Go projects by providing direct access to package documentation without needing to read entire source files.

IMDB MCP Server

IMDB MCP Server

Provides access to IMDB movie and person data, including searches, cast details, and top-rated lists through the Model Context Protocol. It enables LLMs to fetch structured cinematic metadata and filmographies using the Cinemagoer backend.

Kapruka MCP Server

Kapruka MCP Server

Python MCP server that wraps the Kapruka.com REST API and exposes it as tools for LLMs and third-party MCP clients.

Binance MCP Server

Binance MCP Server

Provides Binance futures market data, trading capabilities, and technical indicators to AI assistants through the Model Context Protocol.

scrapbox-cosense-mcp-editable

scrapbox-cosense-mcp-editable

MCP server for Cosense (formerly Scrapbox) that enables page creation, editing, deletion, and searching with WebSocket-based operations. Extends the original server with page-deletion and line-editing tools.

UNO-MCP

UNO-MCP

To translate this accurately, I need a little more context. It seems like a technical term or a specific product/concept. However, based on the individual words, here's a possible translation, along with some considerations: **Possible Translation (with considerations):** **Option 1 (Focus on literal meaning):** * **Người Vận Hành Tường Thuật Thống Nhất, làm phong phú và mở rộng văn bản một cách liền mạch, thiết kế Đại Diện 5 trong 1.** * **Explanation:** * "Người Vận Hành Tường Thuật Thống Nhất" - Unified Narrative Operator (quite literal) * "làm phong phú và mở rộng văn bản một cách liền mạch" - seamlessly enrich and expand text * "thiết kế Đại Diện 5 trong 1" - 5-in-1 Agentic design (using "Đại Diện" for "Agentic") **Option 2 (Focus on potential function/purpose):** * **Công Cụ Tạo Dựng Cốt Truyện Thống Nhất, tự động làm giàu và phát triển nội dung, tích hợp 5 chức năng trong 1.** * **Explanation:** * "Công Cụ Tạo Dựng Cốt Truyện Thống Nhất" - Tool for Creating Unified Narratives (interpreting "Operator" as a tool) * "tự động làm giàu và phát triển nội dung" - automatically enrich and develop content * "tích hợp 5 chức năng trong 1" - integrates 5 functions in 1 **Key Considerations and Why Context is Important:** * **"Narrative Operator":** This is the most ambiguous part. "Operator" could mean a person who operates something, a tool that performs an operation, or even a mathematical operator. The best translation depends on what it *does*. * **"Agentic design":** "Agentic" implies autonomy and agency. "Đại Diện" is a good start, but depending on the context, "tự động" (automatic) or "có khả năng tự hành" (capable of autonomous operation) might be more accurate. * **"5-in-1":** This is straightforward, but the specific *functions* that are being combined would be helpful to know. **To get the *best* translation, please provide more context about what this "Unified Narrative Operator" is and what it does.** For example: * Is it software? * Is it a person's job title? * What kind of text does it work with? * What are the 5 functions it performs? With more information, I can provide a much more accurate and useful translation.

Weather MCP Server

Weather MCP Server

Một máy chủ MCP kết nối với API của OpenWeatherMap để cung cấp dữ liệu thời tiết hiện tại và dự báo nhiều ngày cho các địa điểm trên toàn thế giới với các đơn vị đo khác nhau.

TodoPomo MCP Server

TodoPomo MCP Server

Integrates task management with the Pomodoro Technique, enabling AI assistants to manage productivity workflows through timed work sessions, task tracking, and comprehensive productivity statistics.

BetterMCPFileServer

BetterMCPFileServer

Một máy chủ Giao thức Bối cảnh Mô hình (Model Context Protocol) được thiết kế lại, cho phép các mô hình AI truy cập hệ thống tập tin thông qua các bí danh đường dẫn bảo toàn quyền riêng tư với giao diện API 6 chức năng được tối ưu hóa.

MPO MCP Server

MPO MCP Server

Enables AI assistants to interact with GitHub repositories, Confluence documentation, and Databricks Unity Catalog through comprehensive tools for code exploration, documentation retrieval, and data schema management.

Vibe Worldbuilding MCP

Vibe Worldbuilding MCP

Một Giao Thức Bối Cảnh Mô Hình để tạo ra các thế giới hư cấu chi tiết với Claude, bao gồm các gợi ý xây dựng thế giới có cấu trúc và tạo ảnh tự động thông qua API Imagen của Google.

mcp_repob7b7df37-94c2-48e4-8721-6cc695c23d4c

mcp_repob7b7df37-94c2-48e4-8721-6cc695c23d4c

Đây là một kho lưu trữ thử nghiệm được tạo bởi tập lệnh thử nghiệm của MCP Server cho GitHub.

libretexts-mcp

libretexts-mcp

MCP server that enables searching, fetching, and navigating LibreTexts open textbooks in physics, math, chemistry, engineering, biology, statistics, and geosciences.

Bilibili-Api

Bilibili-Api

A Model Context Protocol (MCP) server that provides services for the bilibili.com API, supporting functions such as obtaining user information and video search.

Keynote-MCP

Keynote-MCP

A Model Context Protocol server that enables AI assistants to control Keynote presentations through AppleScript automation, supporting slide operations, theme-aware content management, and export functions.

IPMA Weather MCP Server

IPMA Weather MCP Server

Provides comprehensive access to Portuguese weather data from IPMA, including forecasts, warnings, sea state, fire risk, UV index, seismic activity, and weather station observations for all Portuguese cities and islands.

Mother MCP

Mother MCP

A unified remote MCP server that integrates multiple advertising, analytics, and productivity platforms, enabling users to manage campaigns, reports, and tasks via a single URL.