Discover Awesome MCP Servers

Extend your agent with 29,296 capabilities via MCP servers.

All29,296
README Insight MCP

README Insight MCP

Provides tools to summarize README files from local paths or public Git repositories into structured JSON summaries. It enables users to quickly extract key facts and project overviews from documentation through automated tool calls.

Laravel MCP (Model Context Protocol)

Laravel MCP (Model Context Protocol)

Một gói phần mềm để phát triển Máy chủ MCP bằng Laravel.

mcp-server

mcp-server

IMAP Mini MCP

IMAP Mini MCP

A lightweight MCP server for interacting with IMAP email accounts to read messages, manage folders, and compose draft replies. It supports standard providers and local bridges, providing tools for searching, fetching attachments, and organizing mailboxes without the ability to send or delete emails.

Lemon Squeezy Server

Lemon Squeezy Server

Integrates with Lemon Squeezy to manage subscriptions, checkouts, products, orders, customers, license keys, and webhooks programmatically with audit logging capabilities.

fix-mcp

fix-mcp

MCP server for AI-assisted trading operations, enabling agents to diagnose and resolve FIX, OMS, and venue incidents through controlled tools and human approval.

InstantCMS MCP Server

InstantCMS MCP Server

Provides a specialized environment for developing InstantCMS 2 addons and templates by exposing hooks, class APIs, and code structures to AI assistants. It enables automated scaffolding, validation, and searching of system components to streamline the creation of functional CMS extensions.

Portainer MCP

Portainer MCP

Máy chủ Portainer MCP

Interactive Brokers MCP Server

Interactive Brokers MCP Server

Provides tools for interacting with Interactive Brokers Gateway to access market data, account summaries, and portfolio positions. It enables users to perform contract lookups, retrieve historical OHLCV bars, and view real-time quotes through natural language interfaces.

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.

My First MCP Server

My First MCP Server

An AI-powered MCP server that provides development tools for code analysis, documentation, and project management including code pattern extraction, humorous code reviews, TODO scanning, and PRD generation.

UniAuto MCP Server

UniAuto MCP Server

Máy chủ Universal Test Automation MCP với khả năng tự phục hồi và tích hợp Smithery.ai.

MCP Google Server

MCP Google Server

A Model Context Protocol server providing web search capabilities using Google Custom Search API and webpage content extraction functionality.

Playwright Fetch MCP Server

Playwright Fetch MCP Server

Provides web content fetching capabilities using Playwright browser automation, enabling LLMs to retrieve and process JavaScript-rendered content from web pages and convert HTML to markdown for easier consumption.

agentdrop-mcp

agentdrop-mcp

AI agent arena — register agents, battle head-to-head, check DropScores, submit prediction takes, and debate from any MCP client. Deploy real HTTPS endpoint agents or use hosted fallback.

mcp-romm

mcp-romm

10 tool MCP server for RomM. Adds searching, metadata, tracking, saves and management via MCP.

Stock Ticker MCP Server

Stock Ticker MCP Server

Provides real-time and historical stock market data through the Alpha Vantage API. Enables users to get current stock prices and retrieve historical stock data for any major stock symbol via natural language queries.

Salesforce Basic MCP Server

Salesforce Basic MCP Server

Enables AI assistants to query Salesforce data including retrieving accounts by ID, searching accounts by name, and fetching recent opportunities through authenticated API access.

figma-to-markdown-mcp

figma-to-markdown-mcp

Converts Figma to Markdown. Strips out visual noise to drastically reduce LLM token consumption.

gnosis-mcp

gnosis-mcp

Zero-config knowledge base for AI coding agents. Loads your markdown docs into a searchable database and exposes them as MCP tools — search, read, and manage documentation without leaving your editor. Works instantly with SQLite (no setup), upgrades to PostgreSQL + pgvector for hybrid semantic search. 6 MCP tools, 3 resources, FTS5 keyword search, 176 tests.

Simple MCP Server

Simple MCP Server

A Python Flask-based Model Context Protocol server that provides basic tools including hello_world, calculate, and get_time functions through stable HTTP endpoints.

sprklai/zenii

sprklai/zenii

Zenii is a local AI backend with persistent memory, 18 tools, and 114 API routes. MCP server exposes all tools via stdio transport. * Transport: stdio * Command: zenii-mcp-server --transport stdio * Language: Rust * License: MIT

Microsoft MCP

Microsoft MCP

Enables AI assistants to interact with Microsoft Graph API services including Outlook email, Calendar events, OneDrive files, and Contacts. Supports multiple Microsoft accounts with unified search across all services.

Postscript MCP Server

Postscript MCP Server

Marinade Finance MCP Server

Marinade Finance MCP Server

Enables interaction with Marinade Finance on Solana, supporting liquid staking operations (stake/unstake SOL for mSOL), token transfers, balance checks, protocol state queries, and documentation search.

ARC Config MCP Server

ARC Config MCP Server

Enables natural language management of GitHub Actions Runner Controller (ARC) in Kubernetes clusters. Supports automated installation, scaling, monitoring, and troubleshooting of GitHub Actions runners through conversational AI commands.

mcpwall

mcpwall

mcpwall is a deterministic security proxy for MCP tool calls — iptables for MCP. It sits between the MCP client and server, intercepting every JSON-RPC request and enforcing YAML-defined policies.

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.

Engram

Engram

Perstistant Memory Layer for Agents

Tududi MCP Server

Tududi MCP Server

Connects AI assistants to the Tududi productivity platform to manage tasks, projects, and notes using GTD methodology. It provides a standardized interface for LLMs to read and manipulate data through a suite of over 25 tools and resources.