Discover Awesome MCP Servers

Extend your agent with 57,688 capabilities via MCP servers.

All57,688
Xafari MCP

Xafari MCP

An MCP server and crawler for Xafari documentation that enables AI agents to search, retrieve pages, and extract code examples from a local index. It provides structured documentation access through stdio or HTTP interfaces for seamless IDE integration.

MCP-Todoist Integration

MCP-Todoist Integration

Máy chủ MCP để tích hợp Todoist cho quản lý tác vụ bằng ngôn ngữ tự nhiên.

Web3 Research MCP

Web3 Research MCP

Nghiên cứu sâu về tiền điện tử - miễn phí & hoàn toàn cục bộ

Config MCP Server

Config MCP Server

Enables AI assistants to search documentation, read and update configuration files, and discover settings across your development workspace. Supports JSON, YAML, TOML, and Markdown files with seamless integration for GitHub Copilot and other MCP clients.

Codebase MCP Server

Codebase MCP Server

A Model Context Protocol server that analyzes application codebases with real-time file watching, providing AI assistants like Claude with deep insights into project structure, code patterns, and architecture.

scholar-search

scholar-search

Enables searching Google Scholar papers with year filtering, deduplication, and proxy support. Also provides paper detail retrieval, TF-IDF relevance analysis, and chart generation via MCP tools.

mcp-postgres

mcp-postgres

Read-only PostgreSQL MCP server that enables running SELECT queries, listing tables and schemas, and describing columns, with built-in protection against writes and malicious SQL attacks.

MCP JSON Sanitizer

MCP JSON Sanitizer

Enables repair of malformed JSON strings into valid JSON for agent workflows by fixing common LLM formatting issues. Supports cleanup of code fences, smart quotes, unquoted keys, trailing commas, and missing brackets to ensure reliable data parsing.

Guía de Instalación de Supabase MCP Server

Guía de Instalación de Supabase MCP Server

Tuyệt vời! Dưới đây là bản dịch chi tiết về hướng dẫn cài đặt cho Supabase MCP Server: **Hướng dẫn Cài đặt Chi Tiết cho Supabase MCP Server** (Lưu ý: "MCP" có thể là viết tắt của một thành phần cụ thể trong hệ sinh thái Supabase. Nếu bạn có thông tin chi tiết hơn về "MCP Server" này, vui lòng cung cấp để tôi có thể điều chỉnh bản dịch cho phù hợp.) **Giới thiệu** Hướng dẫn này sẽ hướng dẫn bạn từng bước cách cài đặt Supabase MCP Server. Chúng tôi sẽ bao gồm các yêu cầu tiên quyết, các bước cài đặt và cấu hình cơ bản. **Yêu cầu Tiên quyết** Trước khi bắt đầu, hãy đảm bảo bạn có những điều sau: * **Hệ điều hành:** Một hệ điều hành tương thích (ví dụ: Ubuntu, macOS, Windows Subsystem for Linux (WSL)). * **Docker:** Docker và Docker Compose đã được cài đặt và cấu hình. Bạn có thể tải xuống Docker từ [https://www.docker.com/get-started](https://www.docker.com/get-started). * **Node.js và npm (hoặc yarn):** Nếu MCP Server yêu cầu Node.js, hãy đảm bảo bạn đã cài đặt phiên bản được hỗ trợ. Bạn có thể tải xuống Node.js từ [https://nodejs.org/](https://nodejs.org/). npm thường đi kèm với Node.js. Bạn cũng có thể sử dụng yarn thay cho npm. * **Tài khoản Supabase:** Bạn cần có một tài khoản Supabase và một dự án Supabase đang hoạt động. * **Công cụ dòng lệnh Supabase (Supabase CLI):** Cài đặt Supabase CLI để tương tác với dự án Supabase của bạn. Bạn có thể tìm hướng dẫn cài đặt tại [https://supabase.com/docs/reference/cli/install](https://supabase.com/docs/reference/cli/install). * **Git:** Git để sao chép kho lưu trữ (repository) của MCP Server. **Các Bước Cài Đặt** 1. **Sao chép Kho Lưu Trữ (Repository):** Sử dụng Git để sao chép kho lưu trữ của Supabase MCP Server vào máy của bạn: ```bash git clone <địa_chỉ_repository_MCP_Server> cd <thư_mục_repository_MCP_Server> ``` Thay thế `<địa_chỉ_repository_MCP_Server>` bằng địa chỉ URL thực tế của kho lưu trữ MCP Server. Thay thế `<thư_mục_repository_MCP_Server>` bằng tên thư mục bạn muốn sử dụng. 2. **Cấu hình Môi trường:** * **Sao chép tệp `.env.example` (nếu có):** Nếu kho lưu trữ chứa tệp `.env.example`, hãy sao chép nó thành `.env`: ```bash cp .env.example .env ``` * **Chỉnh sửa tệp `.env`:** Mở tệp `.env` bằng trình soạn thảo văn bản và điền các biến môi trường cần thiết. Các biến này có thể bao gồm: * `SUPABASE_URL`: URL của dự án Supabase của bạn. * `SUPABASE_ANON_KEY`: Khóa anon (public) của dự án Supabase của bạn. * `SUPABASE_SERVICE_ROLE_KEY`: Khóa service role của dự án Supabase của bạn (sử dụng cẩn thận, chỉ cho các tác vụ backend). * Các biến cấu hình khác dành riêng cho MCP Server. Bạn có thể tìm thấy `SUPABASE_URL`, `SUPABASE_ANON_KEY` và `SUPABASE_SERVICE_ROLE_KEY` trong bảng điều khiển Supabase của bạn (Project Settings -> API). 3. **Cài đặt Các Phụ Thuộc (Dependencies):** Nếu MCP Server là một ứng dụng Node.js, hãy cài đặt các phụ thuộc bằng npm hoặc yarn: ```bash npm install # hoặc yarn install ``` 4. **Khởi động bằng Docker Compose (nếu có):** Nếu kho lưu trữ cung cấp tệp `docker-compose.yml`, bạn có thể sử dụng Docker Compose để khởi động MCP Server và các phụ thuộc của nó: ```bash docker-compose up -d ``` Lệnh này sẽ xây dựng và khởi động các container được định nghĩa trong `docker-compose.yml` ở chế độ detached (chạy nền). 5. **Khởi động Thủ công (nếu không có Docker Compose):** Nếu không có `docker-compose.yml`, bạn có thể cần khởi động MCP Server theo cách thủ công. Điều này có thể bao gồm việc chạy một lệnh Node.js: ```bash npm start # hoặc yarn start ``` Hoặc một lệnh khác tùy thuộc vào cách MCP Server được thiết kế. Tham khảo tài liệu của MCP Server để biết hướng dẫn cụ thể. 6. **Cấu hình Supabase CLI (nếu cần):** Nếu MCP Server yêu cầu tương tác với Supabase CLI, hãy đảm bảo bạn đã đăng nhập vào tài khoản Supabase của mình và liên kết với dự án của bạn: ```bash supabase login supabase init supabase link --project-ref <project_ref> ``` Thay thế `<project_ref>` bằng ID tham chiếu dự án Supabase của bạn. 7. **Kiểm tra Cài đặt:** Sau khi cài đặt, hãy kiểm tra xem MCP Server có đang chạy đúng cách hay không. Điều này có thể bao gồm việc truy cập một điểm cuối (endpoint) API cụ thể hoặc kiểm tra nhật ký (logs) của server. **Khắc phục Sự cố** * **Lỗi phụ thuộc:** Đảm bảo bạn đã cài đặt tất cả các phụ thuộc cần thiết. Kiểm tra tệp `package.json` (nếu có) để biết danh sách các phụ thuộc. * **Lỗi cấu hình:** Kiểm tra kỹ tệp `.env` của bạn để đảm bảo tất cả các biến môi trường được cấu hình chính xác. * **Lỗi Docker:** Kiểm tra nhật ký Docker để biết bất kỳ lỗi nào trong quá trình xây dựng hoặc khởi động container. Sử dụng `docker logs <tên_container>` để xem nhật ký của một container cụ thể. * **Quyền:** Đảm bảo bạn có quyền cần thiết để đọc và ghi vào các thư mục và tệp cần thiết. **Lưu ý Quan trọng:** * Hướng dẫn này là một hướng dẫn chung. Các bước cài đặt cụ thể có thể khác nhau tùy thuộc vào MCP Server cụ thể mà bạn đang cài đặt. Luôn tham khảo tài liệu chính thức của MCP Server để biết hướng dẫn chi tiết và chính xác nhất. * Bảo mật: Đặc biệt cẩn thận khi xử lý khóa `SUPABASE_SERVICE_ROLE_KEY`. Không bao giờ chia sẻ khóa này công khai và chỉ sử dụng nó cho các tác vụ backend đáng tin cậy. **Để tôi giúp bạn tốt hơn:** Vui lòng cung cấp thêm thông tin về Supabase MCP Server mà bạn đang cố gắng cài đặt. Ví dụ: * Địa chỉ URL của kho lưu trữ (repository) GitHub. * Tài liệu chính thức của MCP Server. * Bất kỳ thông tin cụ thể nào bạn đã có về MCP Server. Với thông tin chi tiết hơn, tôi có thể cung cấp cho bạn một bản dịch chính xác và hữu ích hơn.

Google Contacts MCP Server

Google Contacts MCP Server

Enables AI assistants to access and search Google Contacts through per-user OAuth authentication on serverless AWS Lambda. Provides read-only access to personal contacts with zero data storage and real-time API queries.

OCI MCP Server

OCI MCP Server

Enables interaction with Oracle Cloud Infrastructure services through a unified interface. Supports comprehensive OCI resource management including compute instances, storage, networking, databases, and monitoring through natural language commands in VS Code.

MCP DB Server

MCP DB Server

Enables AI agents to query databases via natural language using the Model Context Protocol, with automatic schema discovery, SQL query execution, and read-only safety checks.

ai-governance-controls

ai-governance-controls

Provides AI governance controls as MCP tools for safety screening, risk classification, and red teaming of AI systems, returning structured governance reports.

Weather MCP Server

Weather MCP Server

A Model Context Protocol server that enables users to fetch weather forecasts through Cursor AI by using natural language queries.

infoblox-ddi-mcp

infoblox-ddi-mcp

Manages Infoblox Universal DDI infrastructure (DNS, DHCP, IPAM, security) through 26 intent-level workflow tools via natural language.

Google-Flights-MCP-Server

Google-Flights-MCP-Server

Máy chủ MCP này cho phép các trợ lý AI tìm kiếm thông tin chuyến bay trực tuyến bằng Google Flights. Nó có thể tìm các chuyến bay cho những ngày cụ thể hoặc tìm kiếm trong một khoảng thời gian để tìm tất cả các lựa chọn hoặc chỉ những lựa chọn rẻ nhất hiện có.

Pilot

Pilot

A high-performance browser automation MCP server that provides AI agents with a fast, persistent Chromium instance via Playwright. It features reference-based element interaction, snapshot diffing, and manual handoff capabilities to handle complex tasks like CAPTCHAs.

Google MCP Server

Google MCP Server

Enables interaction with Google Docs and Gmail, allowing users to append text to documents and create email drafts with explicit approval prompts.

selectel-mcp

selectel-mcp

An MCP server that gives an AI agent controlled access to a Selectel cloud account: OpenStack cloud servers, S3 object storage, and account billing.

Sentinel MCP Data Governance Agent

Sentinel MCP Data Governance Agent

A data governance agent that audits PostgreSQL databases through controlled MCP tools for schema inspection, null profiling, and anomaly detection.

zk-utils

zk-utils

MCP server for zk note management enabling note search, creation, and link analysis via the zk command-line tool.

Chisel Knowledge MCP

Chisel Knowledge MCP

Enables building and managing knowledge workspaces with tools for ingesting content from text, clipboard, or URLs and searching organized knowledge bases. Supports multiple configurable workspaces with separate inbox and knowledge directories for structured information management.

CockroachDB MCP Server by CData

CockroachDB MCP Server by CData

CockroachDB MCP Server by CData

Drumbeats MCP

Drumbeats MCP

MCP server for Drumbeats monitoring. Enables creating monitors, triaging incidents, and running HTTP/SSL/DNS checks using natural language from any AI client.

Aster MCP Server

Aster MCP Server

An MCP server for Aster Futures and Spot APIs, enabling AI agents to query market data, place orders, and check positions and accounts securely.

GetMyCert

GetMyCert

13,000+ IT certification practice questions for AI agents (AWS, Azure, GCP, CompTIA, CISSP, PMP, Kubernetes, Terraform, Cisco, Salesforce). Pay-per-call via x402 USDC on Base, or a prepaid API key. Tools: get_cert_questions, list_certifications.

Lizeur

Lizeur

Enables AI assistants to extract and read content from PDF documents using Mistral AI's OCR capabilities. Provides intelligent caching and returns clean markdown text for easy integration with AI workflows.

Coda MCP Server

Coda MCP Server

Provides full access to the Coda API v1, enabling AI agents to interact with Coda docs, tables, rows, formulas, and more through 51 tools.

Screenshot Website Fast

Screenshot Website Fast

Captures high-quality screenshots and screencasts of web pages, automatically tiling full pages into 1072x1072 chunks optimized for Claude Vision API and other AI vision models.

ActivityWatch MCP Server

ActivityWatch MCP Server

Connects AI assistants to ActivityWatch for real-time computer activity awareness and time tracking analysis. Enables natural language queries about app usage, browsing history, and productivity patterns through high-level tools without requiring AQL syntax knowledge.