Discover Awesome MCP Servers
Extend your agent with 14,680 capabilities via MCP servers.
- All14,680
- 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

XFetch Mcp
Tìm nạp nâng cao. Cho phép truy xuất nội dung từ bất kỳ trang web nào, kể cả những trang được bảo vệ bởi Cloudflare và các hệ thống bảo mật khác.

Bocha Search MCP
Một công cụ tìm kiếm tập trung vào AI, cho phép các ứng dụng AI tiếp cận kiến thức chất lượng cao từ hàng tỷ trang web và các nguồn nội dung hệ sinh thái trên nhiều lĩnh vực khác nhau, bao gồm thời tiết, tin tức, bách khoa toàn thư, thông tin y tế, vé tàu và hình ảnh.

Accounting MCP Server
Enables personal financial management through AI assistants by providing tools to add transactions, check balances, list transaction history, and generate monthly summaries. Supports natural language interaction for tracking income and expenses with categorization.
Build
Okay, I can help you understand how to create different MCP (Meta-Control Protocol) servers using the TypeScript SDK. However, I need a little more information to give you the *most* helpful and specific answer. Please tell me: 1. **Which MCP SDK are you using?** There are several possibilities. Knowing the specific SDK is crucial. Some common ones (or related concepts) include: * **Epic Games MCP SDK:** This is likely what you're referring to if you're working with Fortnite or other Epic Games services. It's often used for managing player data, entitlements, and other game-related information. * **Other MCP implementations:** "MCP" can also refer to more generic meta-control protocols in other contexts (e.g., in distributed systems, cloud management). If you're *not* using the Epic Games SDK, please specify which one you are using. * **Custom MCP:** Are you building your own MCP server and client? 2. **What do you mean by "different"?** What aspects of the MCP server do you want to customize or differentiate? For example: * **Different environments (dev, staging, production):** This is a common use case. You'll likely want different configurations for each environment. * **Different game features:** Perhaps you want different MCP servers to handle different aspects of your game (e.g., one for matchmaking, one for inventory). * **Different regions:** You might need separate MCP servers for different geographical regions to reduce latency. * **Different data models:** Are you using different data structures or schemas for different purposes? * **Different authentication/authorization:** Do you need different ways to authenticate users or authorize access to resources? 3. **What have you tried so far?** Do you have any existing code or configuration that you can share? This will help me understand your current setup and provide more targeted guidance. **General Concepts (Assuming Epic Games MCP SDK):** Here's a breakdown of the general concepts involved in creating different MCP servers, assuming you're using the Epic Games MCP SDK (or something similar): * **Configuration:** The most common way to create "different" MCP servers is through configuration. You'll typically have configuration files (e.g., JSON, YAML, or TypeScript files) that specify: * **Server endpoints:** The URLs or IP addresses where the MCP server listens for requests. * **Database connections:** The connection strings for the databases that the MCP server uses to store data. * **Authentication settings:** The credentials and methods used to authenticate clients. * **Entitlement settings:** The rules for granting and managing entitlements. * **Feature flags:** Settings that enable or disable specific features of the MCP server. * **Logging levels:** The level of detail to include in the server's logs. * **Environment Variables:** Environment variables are often used to override configuration settings, especially in production environments. This allows you to change the behavior of the MCP server without modifying the code or configuration files. * **Code Separation (If Necessary):** In some cases, you might need to create separate codebases for different MCP servers. This is more likely if you have significantly different data models or business logic. However, it's generally better to use configuration and feature flags to differentiate servers whenever possible. * **Deployment:** You'll need to deploy each MCP server to a separate environment (e.g., a different virtual machine, container, or cloud instance). This ensures that the servers are isolated from each other. **Example (Conceptual - Needs SDK Details):** Let's say you want to create different MCP servers for development and production environments. Here's a conceptual example of how you might do it: 1. **Create Configuration Files:** * `config/development.json`: ```json { "serverEndpoint": "http://localhost:8080", "databaseUrl": "mongodb://localhost:27017/mcp_dev", "authenticationEnabled": false, "loggingLevel": "debug" } ``` * `config/production.json`: ```json { "serverEndpoint": "https://mcp.example.com", "databaseUrl": "mongodb://prod-db-server:27017/mcp_prod", "authenticationEnabled": true, "authenticationProvider": "EpicGames", "loggingLevel": "info" } ``` 2. **Load Configuration in TypeScript:** ```typescript import * as fs from 'fs'; import * as path from 'path'; interface Config { serverEndpoint: string; databaseUrl: string; authenticationEnabled: boolean; authenticationProvider?: string; loggingLevel: string; } function loadConfig(env: string): Config { const configPath = path.join(__dirname, 'config', `${env}.json`); const configData = fs.readFileSync(configPath, 'utf8'); return JSON.parse(configData); } const environment = process.env.NODE_ENV || 'development'; // Default to development const config = loadConfig(environment); // Now you can use the 'config' object to configure your MCP server. console.log(`Running in ${environment} environment`); console.log(`Server endpoint: ${config.serverEndpoint}`); // Example: Initialize your MCP server with the configuration // (This part depends on the specific MCP SDK) // const mcpServer = new McpServer(config); // mcpServer.start(); ``` 3. **Set Environment Variable:** * When running in production, set the `NODE_ENV` environment variable to `production`: ```bash export NODE_ENV=production node your-mcp-server.js ``` **Important Considerations:** * **Security:** Pay close attention to security when configuring MCP servers, especially in production environments. Use strong authentication methods, encrypt sensitive data, and regularly audit your security settings. * **Scalability:** Design your MCP servers to be scalable so that they can handle increasing traffic and data volumes. Consider using load balancing, caching, and database sharding. * **Monitoring:** Implement monitoring to track the performance and health of your MCP servers. Set up alerts to notify you of any issues. * **Logging:** Use comprehensive logging to help you troubleshoot problems and understand how your MCP servers are being used. **Next Steps:** Please provide the information I requested at the beginning of this response (SDK, "different" meaning, and what you've tried). With that information, I can give you much more specific and helpful guidance.

mcp-google-sheets
Google Trang tính.
sightline-mcp-server
Mcp Servers
Máy chủ MCP

Optimizely DXP MCP Server
Enables AI assistants to manage Optimizely DXP deployments through natural language conversations. Supports code deployment, database operations, content synchronization, and environment management across Integration, Preproduction, and Production environments.

Pero MCP Server
Enables SSH connection management with remote command execution and file transfer capabilities, plus App Store Connect integration for managing applications, team members, and TestFlight operations.
Filesystem MCP Server (@shtse8/filesystem-mcp)
Máy chủ Node.js Model Context Protocol (MCP) cung cấp quyền truy cập hệ thống tệp tương đối, an toàn cho các tác nhân AI như Cline/Claude.
Aseprite MCP Tools
Máy chủ MCP để tương tác với API của Aseprite
Finance MCP Server
Một máy chủ MCP tối giản được xây dựng bằng Python, cung cấp hai công cụ ví dụ: một công cụ để chuyển đổi tên công ty thành mã chứng khoán và một công cụ khác để lấy dữ liệu tài chính từ Yahoo Finance. Dự án tập trung vào việc học cách xây dựng và chạy một máy chủ MCP—sử dụng một kịch bản tài chính đơn giản chỉ để làm ví dụ minh họa.

Overleaf MCP Server
Provides access to Overleaf projects via Git integration, allowing Claude and other MCP clients to read LaTeX files, analyze document structure, and extract content.

MCP Goose Subagents Server
An MCP server that enables AI clients to delegate tasks to autonomous developer teams using Goose CLI subagents, supporting parallel or sequential execution of specialized agents for different development roles.

GPT Image MCP Server
An MCP server that enables text-to-image generation and editing using OpenAI's gpt-image-1 model, supporting multiple output formats, quality settings, and background options.
Remote MCP Server on Cloudflare
OpenAPI MCP Server
Cho phép AI xử lý các OpenAPI phức tạp bằng Ngôn ngữ Đơn giản.
MCP Network Sentinel
A network monitoring tool for MCP servers that logs all network activities to help identify potential security issues.

MCP Server on Cloudflare Workers
A proof of concept implementation of Model Context Protocol server running on Cloudflare's edge network with bearer token authentication, allowing deployed AI models to access tools via serverless architecture.
mcptut1
Hướng dẫn về máy chủ và máy khách MCP (Minecraft Coder Pack).
MCP Installer
Máy chủ MCP tìm kiếm các Máy chủ MCP

Stealthee MCP
Enables detection and analysis of pre-public product launches through web search, content extraction, AI-powered scoring, and automated alerting. Provides comprehensive tools for surfacing stealth startup signals before they trend publicly.

Highrise MCP Server by CData
This read-only MCP Server allows you to connect to Highrise data from Claude Desktop through CData JDBC Drivers. Free (beta) read/write servers available at https://www.cdata.com/solutions/mcp
MCP Jira Server
Okay, here's the translation of "MCP to talk to Jira from cursor" into Vietnamese, with a few options depending on the intended meaning: **Option 1 (Most likely, assuming "MCP" is a tool/acronym):** * **"Sử dụng MCP để tương tác với Jira trực tiếp từ Cursor"** (This is the most direct and likely translation. It assumes MCP is a tool or platform.) **Option 2 (If "MCP" is a person/role):** * **"Yêu cầu MCP tương tác với Jira từ Cursor"** (This translates to "Request MCP to interact with Jira from Cursor.") * **"Để MCP tương tác với Jira từ Cursor"** (This translates to "Allow MCP to interact with Jira from Cursor.") **Option 3 (More general, if you're asking *how* to do something):** * **"Cách để tương tác với Jira từ Cursor bằng MCP"** (This translates to "How to interact with Jira from Cursor using MCP.") **Explanation of terms:** * **MCP:** We keep this as "MCP" as it's likely an acronym or proper noun. * **to talk to Jira:** "tương tác với Jira" (interact with Jira) is the most common and natural translation. * **from cursor:** "trực tiếp từ Cursor" (directly from Cursor) or "từ Cursor" (from Cursor) are both acceptable. **Which option is best depends on the context. If you can provide more information about what "MCP" is, I can give you a more precise translation.**

MCP Developer Server
Provides instant access to 700+ programming documentation sources and creates isolated Docker containers for safe code testing and experimentation. Combines comprehensive documentation lookup with containerized development environments for enhanced development workflows.

Netlify MCP Server
Enables code agents to interact with Netlify services through the Model Context Protocol, allowing them to create, build, deploy, and manage Netlify resources using natural language prompts.

BrowserMCP
Remote browser instances for your AI agents. Reliably complete any browser-based task at scale. Fully-control agentic browsers that spin up in seconds.
MCP Server for Veryfi Document Processing
Máy chủ giao thức ngữ cảnh mô hình với quyền truy cập Veryfi API

SP Database MCP Server
A Model Context Protocol server that provides real-time database schema information to AI assistants, supporting both low-code system schema queries and traditional database metadata queries.

mcp-agent-forge
mcp-agent-forge