Discover Awesome MCP Servers

Extend your agent with 16,740 capabilities via MCP servers.

All16,740
CrewAI MCP Server

CrewAI MCP Server

Exposes CrewAI tools through a REST API that allows Claude and other LLMs to access web search functionality, data analysis capabilities, and custom CrewAI tools.

UNHCR Chart Generation MCP Server

UNHCR Chart Generation MCP Server

Enables AI agents to generate UNHCR-styled data visualizations including bar, line, pie, and scatter charts with refugee and population data, returning charts as base64-encoded images.

Muiscan MCP Server

Muiscan MCP Server

Converts Figma designs into production-ready MUI (Michael UI) web components through the Model Context Protocol. Enables seamless design-to-code workflow by transforming Figma exports into accessible, standards-compliant web components.

MCP Server TypeScript Template

MCP Server TypeScript Template

Espelho de

mcp-server-netmiko

mcp-server-netmiko

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.

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

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

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.

feishu-mcp-server

feishu-mcp-server

Feishu Multidimensional Tables

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.

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.

OpenAI MCP Server

OpenAI MCP Server

Permite a integração com modelos OpenAI através do protocolo MCP, suportando respostas concisas e detalhadas para uso com o Claude Desktop.

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.

Serverless Web MCP Server

Serverless Web MCP Server

ZeroBounce MCP Server

ZeroBounce MCP Server

A Model Context Protocol server that allows interaction with the ZeroBounce email validation service, enabling users to validate individual emails, check account credits, and perform bulk validations.

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.

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.

MCP n8n API Server

MCP n8n API Server

Servidor MCP para integração da API n8n - Conecte a IA Claude aos fluxos de trabalho n8n

my-model-context

my-model-context

CLI para gerenciar configurações locais do servidor MCP

freispace Analytics MCP Server

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.

SSH MCP Server

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.

SelfMemory

SelfMemory

Let your memories live forever by passing your knowledge to the next generation with SelfMemory.

3D Printing MCP By OctoEverywhere

3D Printing MCP By OctoEverywhere

3D Printing MCP By OctoEverywhere