Discover Awesome MCP Servers
Extend your agent with 26,604 capabilities via MCP servers.
- All26,604
- Developer Tools3,867
- Search1,714
- Research & Data1,557
- AI Integration Systems229
- Cloud Platforms219
- Data & App Analysis181
- Database Interaction177
- Remote Shell Execution165
- Browser Automation147
- Databases145
- Communication137
- AI Content Generation127
- OS Automation120
- Programming Docs Access109
- Content Fetching108
- Note Taking97
- File Systems96
- Version Control93
- Finance91
- Knowledge & Memory90
- Monitoring79
- Security71
- Image & Video Processing69
- Digital Note Management66
- AI Memory Systems62
- Advanced AI Reasoning59
- Git Management Tools58
- Cloud Storage51
- Entertainment & Media43
- Virtualization42
- Location Services35
- Web Automation & Stealth32
- Media Content Processing32
- Calendar Management26
- Ecommerce & Retail18
- Speech Processing18
- Customer Data Platforms16
- Travel & Transportation14
- Education & Learning Tools13
- Home Automation & IoT13
- Web Search Integration12
- Health & Wellness10
- Customer Support10
- Marketing9
- Games & Gamification8
- Google Cloud Integrations7
- Art & Culture4
- Language Translation3
- Legal & Compliance2
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.
n8n Workflow Builder MCP Server
Server Protokol Konteks Model (MCP) untuk membuat dan mengelola alur kerja n8n secara terprogram.
MCP Server - Test Migration (WDIO to Playwright)
Enables migration of test automation projects from WebDriverIO to Playwright using AST-based transformations. Provides tools for analyzing tests, converting syntax, refactoring to Page Object Model, and generating migration reports.
Exploit-DB MCP Server
Integrates the Exploit-DB database with AI assistants to enable searching for exploits, shellcodes, and proof-of-concept code during penetration testing workflows. It allows users to perform keyword searches and direct CVE-to-exploit mappings to retrieve technical security data.
CDC MCP Server
Provides access to 73 CDC public health datasets covering disease surveillance, vaccination tracking, behavioral risk factors, environmental health, and outbreak detection across 18 surveillance systems through the Socrata Open Data API.
Splunkbase MCP Server
Sebuah server Machine Control Protocol yang menyediakan akses terprogram ke fungsionalitas Splunkbase, memungkinkan pengguna untuk mencari, mengunduh, dan mengelola aplikasi Splunkbase melalui antarmuka yang terstandardisasi.
arr-assistant-mcp
A server that allows users to add movies and TV shows to Radarr/Sonarr using natural language queries.
MCP-Booster
Provides AI-powered development assistance with continuous chain-of-thought reasoning (CoConuT), automated task planning and execution, quality validation, and persistent memory of project context and decisions.
Mcp Server And Claude for Desktop Example
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.
GetNote MCP Server
Enables AI models to interact with the Get笔记 (GetNotes) platform via its Open API. It supports managing notes, organizing knowledge bases, and handling tags through natural language commands.
SAP AI Core Documentation MCP Server
Provides semantic search and intelligent access to SAP AI Core documentation for AI assistants like Claude. It enables users to search across categories, retrieve full document content, and access topic-specific information from the SAP artificial intelligence repository.
Emby.MCP
Connects an Emby media server to AI clients like Claude Desktop, enabling natural language control of media playback, library browsing, playlist management, and search across your personal media collection.
Azure MCP FastMCP Server
Provides Azure DevOps integration through MCP, enabling management of projects, work items, teams, and policies via natural language. Supports bulk work item creation with hierarchical relationships and iteration assignments.
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
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.
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.
Slack MCP
A .NET-based Model Context Protocol server and Python client for interacting with the Slack Web API. It enables AI models to manage channels, send messages, retrieve chat history, and handle emoji reactions.
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.
Labs64/NetLicensing-MCP
The official NetLicensing MCP Server is a natural language interface that enables agentic applications to manage the full software licensing lifecycle in Labs64 NetLicensing 👉🏼 without writing a single API call.
GitHub Copilot Usage MCP Server
An MCP server that retrieves current GitHub Copilot usage data, including quotas, limits, and usage statistics. It allows AI agents to monitor premium interaction status and detailed account usage via raw or formatted summaries.
freispace Analytics MCP Server
Enables AI assistants to query freispace scheduling software data including staff management, project analytics, resource availability, and holiday planning. Provides comprehensive insights for media teams while respecting user permissions and data safety.
BlenderMCP
Enables Claude Desktop to control Blender 5.0.1 on Windows for tasks such as creating 3D objects, executing Python scripts, and rendering scenes. It allows users to manage Blender's environment and perform 3D modeling operations using natural language commands.
ADT MCP Server
Enables interaction with SAP ABAP systems through ABAP Development Tools (ADT), providing access to repository objects, source code, where-used analysis, and SQL queries with support for both on-premise and BTP systems.
SSH MCP Server
An advanced SSH session manager that allows Claude to establish and manage multiple SSH connections, execute remote commands, and monitor connection health through the Model Context Protocol.
Woodpecker CI Pipeline Analyzer
Enables automated analysis of Woodpecker CI pipeline failures with intelligent error detection and fix suggestions. Supports both direct pipeline analysis and IDE-integrated git-context analysis using repository names, PR numbers, or branch information.
PDF Reader MCP Server
Enables reading, searching, and metadata extraction from PDF files without loading the entire content into the context window. It provides efficient tools for text cleaning, page-specific extraction, and context-aware search results.
ActivityWatch MCP Server
Enables LLM agents to query and analyze ActivityWatch time tracking data, including window activity, web browsing, and category management with natural language time periods and automatic data aggregation.
Jellyfin MCP Server
An MCP (Multi-Agent Conversation Protocol) Server that enables interaction with Jellyfin media server APIs, auto-generated using AG2's MCP builder based on the Jellyfin OpenAPI specification.
OpenAI MCP Server
Mengaktifkan integrasi dengan model OpenAI melalui protokol MCP, mendukung respons ringkas dan detail untuk digunakan dengan Claude Desktop.