Discover Awesome MCP Servers

Extend your agent with 14,657 capabilities via MCP servers.

All14,657
MCP Server.exe

MCP Server.exe

A powerful executable server for running Model Context Protocol services that supports tool chain execution, multiple MCP services management, and a pluggable tool system for complex automation workflows.

🛰️ Space Flight News MCP Server

🛰️ Space Flight News MCP Server

Dự án này là một máy chủ Giao thức Ngữ cảnh Mô hình (MCP) tích hợp với API Space Flight News để cung cấp các bài báo tin tức liên quan đến du hành vũ trụ mới nhất.

LAPRAS MCP Server

LAPRAS MCP Server

lapras.com Máy chủ MCP chính thức

Mailcow MCP Server

Mailcow MCP Server

Enables complete management of Mailcow email servers through 20 MCP tools including domain management, mailbox operations, email sending, queue management, sync jobs, and system monitoring. Provides AI models with full control over email server infrastructure through secure API integration.

MCP Cloudflare DNS Server

MCP Cloudflare DNS Server

A Model Context Protocol server implementation that allows AI agents to manage DNS records for domains hosted on Cloudflare by providing tools to list, create, update, and delete various types of DNS records.

bnbchain-mcp

bnbchain-mcp

bnbchain-mcp

claude-safe-mcp

claude-safe-mcp

A secure MCP wrapper for Anthropic Claude Code that eliminates the need for permission flags while preserving full CLI functionality and working seamlessly with MCP-compatible IDEs.

URL-Based MCP Server

URL-Based MCP Server

URL MCP là một bản dựng máy chủ MCP không trạng thái, cho phép người dùng xây dựng máy chủ MCP mà không cần viết hoặc lưu trữ mã. Nó được thiết kế để thử nghiệm giao thức và bảo mật hơn là để xây dựng các tích hợp MCP thực tế.

MongoDB MCP Server by CData

MongoDB MCP Server by CData

MongoDB MCP Server by CData

aster-info-mcp

aster-info-mcp

An MCP server that provides structured access to Aster DEX market data—covering candlesticks, order books, trades, and funding rates.

Remote Terminal MCP

Remote Terminal MCP

A unified remote terminal management server that simplifies complex SSH connections and server management through MCP protocol, allowing users to control multiple remote servers with natural language commands as easily as local operations.

Remote MCP Server on Cloudflare

Remote MCP Server on Cloudflare

freedcamp

freedcamp

freedcamp

Enhanced Sequential Thinking MCP Server

Enhanced Sequential Thinking MCP Server

Enables structured problem-solving through sequential thinking stages with persistent storage and analysis. Helps break down complex problems into manageable cognitive steps while tracking progress and generating summaries of the entire thought process.

Telegram

Telegram

microsandbox

microsandbox

microsandbox

POEditor MCP Server

POEditor MCP Server

Enables comprehensive translation management through POEditor's API with project, language, term, and translation operations. Includes automation scripts for reporting, monitoring, AI-powered suggestions, and multi-format exports.

Postscript MCP Server

Postscript MCP Server

Vibe Blocks MCP

Vibe Blocks MCP

Connects Roblox Studio to AI coding editors via the Model Context Protocol, allowing AI agents to understand and interact with live Roblox Studio sessions through scene manipulation, scripting, and optional Roblox Open Cloud API integration.

SkySQL MCP Server

SkySQL MCP Server

Kho lưu trữ máy chủ và máy khách SkySQL MCP.

mcp-server-google-cloud-logging

mcp-server-google-cloud-logging

Có một vài cách để lấy nhật ký từ Logging trong gcloud: **1. Sử dụng lệnh `gcloud logging read`:** Đây là cách đơn giản nhất để lấy nhật ký từ dòng lệnh. * **Cú pháp cơ bản:** ```bash gcloud logging read "FILTER" --format="FORMAT" --limit=LIMIT ``` * `FILTER`: Bộ lọc nhật ký để chỉ định nhật ký bạn muốn lấy. Ví dụ: `resource.type="gce_instance" AND severity>=WARNING`. Nếu bạn không chỉ định bộ lọc, tất cả nhật ký sẽ được trả về. * `FORMAT`: Định dạng đầu ra. Các tùy chọn phổ biến bao gồm `text`, `json`, `yaml`. Mặc định là `text`. * `LIMIT`: Số lượng nhật ký tối đa để trả về. Mặc định là 20. * **Ví dụ:** * Lấy 10 nhật ký lỗi gần đây nhất từ tất cả các tài nguyên: ```bash gcloud logging read "severity=ERROR" --limit=10 ``` * Lấy tất cả nhật ký từ một phiên bản GCE cụ thể, định dạng JSON: ```bash gcloud logging read "resource.type=gce_instance AND resource.labels.instance_id=YOUR_INSTANCE_ID" --format="json" ``` * Lấy nhật ký từ một khoảng thời gian cụ thể: ```bash gcloud logging read "timestamp>=\"2023-10-27T00:00:00Z\" AND timestamp<=\"2023-10-27T23:59:59Z\"" ``` **2. Sử dụng lệnh `gcloud logging tail`:** Lệnh này theo dõi nhật ký theo thời gian thực. * **Cú pháp cơ bản:** ```bash gcloud logging tail "FILTER" ``` * `FILTER`: Bộ lọc nhật ký. Tương tự như `gcloud logging read`. * **Ví dụ:** * Theo dõi tất cả nhật ký từ một ứng dụng App Engine: ```bash gcloud logging tail "resource.type=gae_app" ``` **3. Sử dụng API Logging qua `gcloud alpha logging logs list` và `gcloud alpha logging entries list`:** Mặc dù ít phổ biến hơn cho việc sử dụng hàng ngày, bạn có thể sử dụng các lệnh `alpha` để tương tác trực tiếp hơn với API Logging. Điều này cho phép bạn liệt kê các nhật ký có sẵn và sau đó liệt kê các mục nhật ký trong một nhật ký cụ thể. * **Liệt kê các nhật ký:** ```bash gcloud alpha logging logs list ``` * **Liệt kê các mục nhật ký trong một nhật ký cụ thể:** ```bash gcloud alpha logging entries list --log=projects/YOUR_PROJECT_ID/logs/YOUR_LOG_ID ``` Thay thế `YOUR_PROJECT_ID` và `YOUR_LOG_ID` bằng các giá trị thực tế. **4. Sử dụng Cloud Logging API trực tiếp (nâng cao):** Bạn có thể sử dụng thư viện client của Google Cloud cho ngôn ngữ lập trình của bạn (ví dụ: Python, Java, Go) để tương tác trực tiếp với Cloud Logging API. Điều này cho phép bạn có nhiều quyền kiểm soát hơn đối với cách bạn truy xuất và xử lý nhật ký. Xem tài liệu Cloud Logging API để biết thêm chi tiết. **Quan trọng:** * **Quyền:** Đảm bảo bạn có đủ quyền để truy cập nhật ký. Thông thường, bạn cần vai trò `roles/logging.viewer` hoặc `roles/logging.admin`. * **Bộ lọc:** Sử dụng bộ lọc một cách hiệu quả để chỉ lấy nhật ký bạn cần. Điều này giúp bạn tiết kiệm thời gian và tài nguyên. * **Định dạng:** Chọn định dạng đầu ra phù hợp với nhu cầu của bạn. `json` thường hữu ích cho việc xử lý bằng các công cụ khác. * **Dự án:** Đảm bảo bạn đã chọn đúng dự án Google Cloud bằng lệnh `gcloud config set project YOUR_PROJECT_ID`. Hãy nhớ thay thế các giá trị giữ chỗ (ví dụ: `YOUR_INSTANCE_ID`, `YOUR_PROJECT_ID`, `YOUR_LOG_ID`) bằng các giá trị thực tế của bạn.

Remote MCP Server on Cloudflare

Remote MCP Server on Cloudflare

OpenTelemetry Documentation MCP Server

OpenTelemetry Documentation MCP Server

Enables access to OpenTelemetry documentation by fetching and converting pages to markdown format and searching content using Google Custom Search. Provides comprehensive documentation lookup and search capabilities for OpenTelemetry concepts, instrumentation, and configuration.

remote-mcp-server

remote-mcp-server

Memento

Memento

A local, fully-offline MCP memory server that enables persistent storage and retrieval of information using SQLite with both keyword and semantic vector search capabilities.

Filesystem MCP Server for WSL

Filesystem MCP Server for WSL

Node.js server implementing Model Context Protocol that enables seamless interaction between Windows and Linux distributions under WSL, allowing file operations like reading, writing, searching, and managing files across the WSL filesystem from Windows.

MCP Hub Tools

MCP Hub Tools

An MCP server that allows searching for and retrieving information about Model Context Protocol servers registered on the MCP Hub.

PocketMCP

PocketMCP

A lightweight, local-first MCP server that automatically watches folders, chunks and embeds files using Transformers.js, and exposes semantic search capabilities to VS Code and Cursor. Runs completely offline with SQLite vector storage, designed for resource-constrained environments.

HHS Media Services API MCP Server

HHS Media Services API MCP Server

A Multi-Agent Conversation Protocol Server that provides a natural language interface to the U.S. Department of Health & Human Services (HHS) Media Services API, allowing users to access health-related data and media resources through conversational AI.

Master MCP Server

Master MCP Server

Aggregates multiple MCP servers behind a single, secure endpoint with unified tool/resource discovery, OAuth authentication, and resilient request routing. Enables users to manage and interact with multiple MCP backends through one centralized interface with load balancing and circuit breakers.