Discover Awesome MCP Servers

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

All14,499
Universal MCP Tool

Universal MCP Tool

A versatile tool that converts Web API interfaces into MCP tools for AI assistants, allowing them to access various web services through simple configuration and API key management.

AutoProbeMCP

AutoProbeMCP

A Model Context Protocol server that provides browser automation capabilities using Playwright, enabling AI assistants to interact with web pages through a standardized interface.

Jokes MCP Server

Jokes MCP Server

A Model Context Protocol server that provides Chuck Norris and Dad jokes, demonstrating how to integrate MCP servers with Microsoft Copilot Studio and GitHub Copilot.

MCP Bridge Server

MCP Bridge Server

A macOS-native bridge server that enables communication between different AI clients like Claude and Cline, allowing them to interact with each other through the Model Context Protocol.

MCP-Expokossodo 2025

MCP-Expokossodo 2025

Enables management of Expokossodo 2025 events through 7 MCP tools for checking events, attendee registration, capacity monitoring, attendance confirmation, and real-time statistics. Features JWT authentication with role-based permissions for event coordinators and staff.

Notion Integration

Notion Integration

Um servidor simples de Protocolo de Contexto de Modelo (MCP) que se integra com a API do Notion para gerenciar minha lista de tarefas pessoal através do Claude.

rod-mcp

rod-mcp

Rod-MCP oferece capacidades de automação de navegador para suas aplicações usando Rod. O servidor fornece muitas ferramentas mcp úteis que permitem que LLMs interajam com as páginas da web, como clicar, tirar screenshots, salvar página como PDF, etc.

APISIX-MCP

APISIX-MCP

The APISIX Model Context Protocol (MCP) server bridges large language models (LLMs) with the APISIX Admin API.

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.

Zapiar_MCP_Server

Zapiar_MCP_Server

n8n Workflow Builder MCP Server

n8n Workflow Builder MCP Server

Um servidor de Protocolo de Contexto de Modelo (MCP) para criar e gerenciar fluxos de trabalho n8n programaticamente.

Splunkbase MCP Server

Splunkbase MCP Server

Um servidor de Protocolo de Controle de Máquina que fornece acesso programático à funcionalidade do Splunkbase, permitindo que os usuários pesquisem, baixem e gerenciem aplicativos do Splunkbase por meio de uma interface padronizada.

Mcp Server And Claude for Desktop  Example

Mcp Server And Claude for Desktop Example

how to run both the client and server

how to run both the client and server

Um repositório para experimentar com cliente e servidor MCP.

MCP Server Template

MCP Server Template

A comprehensive template for building Model Context Protocol servers with FastMCP framework, featuring modular architecture, auto-discovery registry, and support for multiple transport methods. Includes example arithmetic and weather tools to help developers quickly create custom MCP servers.

HDU Academic System MCP Server

HDU Academic System MCP Server

Enables AI assistants to interact with Hangzhou Dianzi University's academic system through automatic login and course schedule retrieval. Supports secure authentication and structured academic data access for HDU students.

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.

IcebergMCP

IcebergMCP

An MCP server that enables natural language interaction with Apache Iceberg data lakehouses, allowing users to query table metadata, schemas, and properties through Claude, Cursor, or other MCP clients.

Hue MCP Server

Hue MCP Server

A Model Context Protocol server that enables AI assistants to control Philips Hue smart lighting systems through natural language commands.

MCP Filesystem Python

MCP Filesystem Python

A secure MCP server enabling read-only access and file search capabilities within a specified directory, while respecting .gitignore patterns.

bilibili MCP Server

bilibili MCP Server

A Model Context Protocol server that allows AI assistants to retrieve user information, search videos by ID, and find content by keywords on bilibili.com.

Brave Search MCP Server

Brave Search MCP Server

Enables web and local business searches through the Brave Search API. Provides general web search with pagination and filtering, plus local business search with automatic fallback to web results.

Alby MCP Server

Alby MCP Server

Connects a Bitcoin Lightning wallet to your LLM using Nostr Wallet Connect, enabling payments and interactions with Lightning Network features.

Noverload MCP Server

Noverload MCP Server

Connects your Noverload saved content library to AI assistants, enabling search, access, and management of saved YouTube videos, articles, PDFs, and other content. Features advanced search modes, action item tracking, and goals management through natural language.

F1 MCP Server Node Implementation

F1 MCP Server Node Implementation

Cursor Sound MCP

Cursor Sound MCP

Fornece feedback de áudio ao reproduzir efeitos sonoros quando o Cursor AI completa a geração de código, criando uma experiência de codificação mais interativa.

MCP Server for Qdrant

MCP Server for Qdrant

Espelho de

Todo App

Todo App

Este aplicativo foi construído completamente com o Cursor, usando o servidor Box MCP para encontrar um PRD e as diretrizes de codificação.

Chronos MCP Server

Chronos MCP Server

Aqui está um servidor MCP simples baseado em .NET Core para recuperar a hora atual: ```csharp using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Hosting; using System; namespace TimeServer { 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("/", async context => { await context.Response.WriteAsync($"Current time: {DateTime.Now}"); }); }); }); }); } } ``` **Explicação:** * **`using` statements:** Importam os namespaces necessários para o ASP.NET Core e para trabalhar com datas e horas. * **`namespace TimeServer`:** Define o namespace para o projeto. * **`Program` class:** Contém o ponto de entrada da aplicação (`Main` method). * **`CreateHostBuilder` method:** Configura o host da aplicação ASP.NET Core. * **`Host.CreateDefaultBuilder(args)`:** Cria um host padrão com configurações padrão. * **`.ConfigureWebHostDefaults(webBuilder => ...)`:** Configura o web host. * **`webBuilder.Configure(app => ...)`:** Configura o pipeline de requisição HTTP. * **`app.UseRouting()`:** Adiciona o middleware de roteamento ao pipeline. * **`app.UseEndpoints(endpoints => ...)`:** Define os endpoints da aplicação. * **`endpoints.MapGet("/", async context => ...)`:** Mapeia requisições GET para a rota raiz ("/") para um manipulador assíncrono. * **`await context.Response.WriteAsync($"Current time: {DateTime.Now}");`:** Escreve a hora atual no corpo da resposta HTTP. **Como executar:** 1. **Crie um novo projeto .NET Core:** ```bash dotnet new webapi -n TimeServer cd TimeServer ``` 2. **Substitua o conteúdo do `Program.cs` pelo código acima.** 3. **Execute o projeto:** ```bash dotnet run ``` Isso iniciará um servidor web na porta padrão (geralmente 5000 ou 5001). Você pode acessar a hora atual abrindo um navegador e navegando para `http://localhost:5000` (ou a porta que o `dotnet run` indicar). **Considerações:** * **MCP:** A descrição original menciona "MCP server". Se "MCP" se refere a um protocolo específico, este código precisaria ser adaptado para implementar esse protocolo. Este exemplo fornece um servidor HTTP simples. * **Formato da hora:** O formato da hora retornado é o padrão de `DateTime.Now.ToString()`. Você pode formatar a hora de forma diferente usando `DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")` ou outros formatos. * **Tratamento de erros:** Este exemplo é muito básico e não inclui tratamento de erros. Em um ambiente de produção, você deve adicionar tratamento de erros para lidar com exceções e retornar respostas apropriadas. * **Configuração:** Você pode configurar a porta e outros aspectos do servidor usando arquivos de configuração (como `appsettings.json`) e variáveis de ambiente. Este exemplo fornece um ponto de partida simples. Dependendo dos requisitos específicos do seu "MCP server", você pode precisar adicionar mais funcionalidades e personalizações.

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.