Discover Awesome MCP Servers

Extend your agent with 20,010 capabilities via MCP servers.

All20,010
DevServer MCP

DevServer MCP

Monitors development server logs in real-time and provides Claude with immediate error notifications via Server-Sent Events. Intelligently parses TypeScript, Svelte, and Vite errors with severity classification and file correlation.

PapersWithCode Client

PapersWithCode Client

Sebuah server yang memungkinkan asisten AI untuk mencari makalah penelitian, membaca kontennya, dan mengakses repositori kode terkait melalui API PapersWithCode.

Cisco RADKit MCP Server

Cisco RADKit MCP Server

Enables interaction with Cisco network devices through the RADKit SDK, allowing users to discover device inventory, fetch device attributes, and execute CLI commands via natural language.

n8n Workflow Builder MCP Server

n8n Workflow Builder MCP Server

Server Protokol Konteks Model (MCP) untuk membuat dan mengelola alur kerja n8n secara terprogram.

Grasshopper MCP

Grasshopper MCP

Enables AI-powered computational design in Rhino/Grasshopper with ML-based automatic layout optimization, component clustering, performance prediction, and real-time code execution in running Rhino instances.

Mcp Server And Claude for Desktop  Example

Mcp Server And Claude for Desktop Example

code2mcp

code2mcp

Enables execution of TypeScript code to call MCP tools instead of direct tool calls, reducing token usage by up to 98% while orchestrating complex multi-tool workflows through secure sandboxed code execution.

Google Webmaster MCP

Google Webmaster MCP

Enables AI agents to manage Google Tag Manager, Google Search Console, and Google Analytics (GA4) through unified access to tags, search performance data, URL inspection, sitemaps, and analytics reporting.

MCP Host Server

MCP Host Server

A multi-tenant remote server platform that enables applications to connect to Model Context Protocol servers over WebSocket connections, allowing secure access to file management, database, and API capabilities.

feishu-mcp-server

feishu-mcp-server

The Indonesian translation of "飞书多维表格" is: **Feishu Multidimensional Table** While a direct translation would be "Tabel Multidimensi Feishu," it's more common to keep the brand name "Feishu" as is. Therefore, "Feishu Multidimensional Table" is the most natural and understandable translation.

MCP Browser Use

MCP Browser Use

Memberdayakan agen AI untuk melakukan penjelajahan web, otomatisasi, dan tugas scraping dengan pengawasan minimal menggunakan instruksi bahasa alami dan Selenium.

Enterprise Code Search MCP Server

Enterprise Code Search MCP Server

Enables semantic code search across local projects and Git repositories using AI embeddings with ChromaDB. Supports both OpenAI and local Ollama models for private, enterprise-ready code analysis and similar code discovery.

ComfyUI MCP Server

ComfyUI MCP Server

Enables comprehensive ComfyUI workflow automation including image generation, workflow management, node discovery, and system monitoring through natural language interactions with local or remote ComfyUI servers.

Remote MCP Server

Remote MCP Server

A Cloudflare Workers-based Model Context Protocol server with OAuth login that allows AI assistants like Claude to access external tools.

Website Scraper MCP Server

Website Scraper MCP Server

Sebuah server MCP yang mengekstrak konten bermakna dari situs web dan mengonversi HTML menjadi Markdown berkualitas tinggi, menggunakan mesin Readability dari Mozilla.

Todo App

Todo App

Aplikasi ini dibuat sepenuhnya dengan Cursor menggunakan server Box MCP untuk menemukan PRD dan panduan pengkodean.

Maya MCP

Maya MCP

Maya MCP

Google Forms MCP Server

Google Forms MCP Server

Enables creation and management of Google Forms with support for all 12 question types, response collection, CSV export, and form publishing through OAuth-authenticated API access.

Chronos MCP Server

Chronos MCP Server

Berikut adalah server MCP berbasis .NET Core sederhana untuk mengambil waktu saat ini: ```csharp using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Hosting; using System; namespace SimpleMcpServer { public class Program { public static void Main(string[] args) { CreateHostBuilder(args).Build().Run(); } public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaultBuilder(args) .ConfigureWebHostDefaults(webBuilder => { webBuilder.Configure(app => { app.UseRouting(); app.UseEndpoints(endpoints => { endpoints.MapGet("/time", async context => { await context.Response.WriteAsync(DateTime.Now.ToString()); }); }); }); }); } } ``` **Penjelasan:** * **`using` statements:** Mengimpor namespace yang diperlukan. * **`namespace SimpleMcpServer`:** Mendefinisikan namespace untuk kode. * **`Program` class:** Kelas utama yang berisi titik masuk aplikasi. * **`Main` method:** Titik masuk aplikasi. Memanggil `CreateHostBuilder` untuk membuat dan menjalankan host web. * **`CreateHostBuilder` method:** Mengonfigurasi host web. * **`Host.CreateDefaultBuilder(args)`:** Membuat builder host default. * **`.ConfigureWebHostDefaults(webBuilder => ...)`:** Mengonfigurasi host web. * **`webBuilder.Configure(app => ...)`:** Mengonfigurasi pipeline permintaan HTTP. * **`app.UseRouting()`:** Menambahkan middleware perutean ke pipeline. * **`app.UseEndpoints(endpoints => ...)`:** Menambahkan middleware endpoint ke pipeline. * **`endpoints.MapGet("/time", async context => ...)`:** Memetakan permintaan GET ke endpoint `/time`. * **`await context.Response.WriteAsync(DateTime.Now.ToString())`:** Menulis waktu saat ini sebagai string ke respons. **Cara menjalankan:** 1. **Buat proyek .NET Core:** `dotnet new web` 2. **Ganti isi `Program.cs` dengan kode di atas.** 3. **Jalankan proyek:** `dotnet run` Server akan berjalan di `http://localhost:5000` (atau port lain yang dikonfigurasi). Anda dapat mengakses waktu saat ini dengan membuka `http://localhost:5000/time` di browser Anda. **Peningkatan:** * **Mengembalikan JSON:** Alih-alih mengembalikan string waktu biasa, Anda dapat mengembalikan JSON dengan format waktu yang lebih terstruktur. Gunakan `System.Text.Json` atau `Newtonsoft.Json` untuk serialisasi. * **Konfigurasi Port:** Konfigurasikan port yang digunakan server melalui file konfigurasi atau variabel lingkungan. * **Penanganan Kesalahan:** Tambahkan penanganan kesalahan untuk menangani pengecualian yang mungkin terjadi. * **Logging:** Tambahkan logging untuk mencatat informasi tentang permintaan dan respons. * **Middleware:** Tambahkan middleware untuk otentikasi, otorisasi, dan tugas-tugas lainnya. Contoh mengembalikan JSON: ```csharp using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Hosting; using System; using System.Text.Json; namespace SimpleMcpServer { public class Program { public static void Main(string[] args) { CreateHostBuilder(args).Build().Run(); } public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaultBuilder(args) .ConfigureWebHostDefaults(webBuilder => { webBuilder.Configure(app => { app.UseRouting(); app.UseEndpoints(endpoints => { endpoints.MapGet("/time", async context => { var time = DateTime.Now; var timeObject = new { Time = time }; context.Response.ContentType = "application/json"; await context.Response.WriteAsync(JsonSerializer.Serialize(timeObject)); }); }); }); }); } } ``` Kode ini akan mengembalikan JSON seperti: `{"Time":"2023-10-27T10:30:00.0000000+00:00"}` (format waktu akan bervariasi).

JR East Delay Information MCP Server

JR East Delay Information MCP Server

An MCP server that provides real-time delay information for JR East train lines, accessible via MCP clients like Claude Desktop through the 'getDelays' tool.

my-mcp-server

my-mcp-server

A simple Node.js MCP server that exposes three tools: greet for personalized messages, calculate for basic math operations, and weather_info for mock weather data retrieval.

Gemini Agent MCP Server

Gemini Agent MCP Server

Provides a Model Context Protocol interface to the Gemini CLI, enabling AI agents to call the Gemini model and interact with development tools like code linting, GitHub operations, and documentation generation. Includes security measures to prevent unauthorized file access through path validation.

MCP Server with SSE

MCP Server with SSE

Enables real-time data streaming through Server-Sent Events with timestamp broadcasting and server monitoring capabilities. Optimized for deployment on Render.com with health checks and status endpoints.

GitHub MCP Server

GitHub MCP Server

mcp-registry-crewai-demo-agent

mcp-registry-crewai-demo-agent

Berikut adalah demonstrasi menghubungkan Keboola Registry API dengan server MCP melalui wrapper CrewAI, memungkinkan agen AI untuk memanfaatkan keterampilan yang terdaftar.

my-model-context

my-model-context

CLI untuk mengelola konfigurasi server MCP lokal

code2prompt-mcp

code2prompt-mcp

An MCP server that analyzes codebases and generates contextual prompts, making it easier for AI assistants to understand and work with code repositories.

MCP Server Template

MCP Server Template

A template repository for creating MCP servers that can be easily containerized and used with MCP clients.

Supabase Memory MCP Server

Supabase Memory MCP Server

Provides memory/knowledge graph storage capabilities using Supabase, enabling multiple Claude instances to safely share and maintain a knowledge graph with features like entity storage, concurrent access safety, and full text search.

Octopus Deploy MCP Server

Octopus Deploy MCP Server

Enables AI assistants to inspect, query, and diagnose problems within Octopus Deploy instances. Provides read-only access to deployments, releases, projects, environments, and other DevOps resources to transform AI into your ultimate DevOps wingmate.