Discover Awesome MCP Servers
Extend your agent with 26,654 capabilities via MCP servers.
- All26,654
- 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
US Government Open Data MCP
MCP server + TypeScript SDK for 36 U.S. government data APIs — 188 tools. Treasury, FRED, Congress, FDA, CDC, FEC, lobbying, and more. Works with VS Code Copilot, Claude Desktop, Cursor.
Cloudflare Playwright MCP
Enables AI assistants to control a browser through Playwright and Cloudflare Workers, allowing web automation tasks like navigation, typing, clicking, and taking screenshots through natural language instructions.
Shopify Python MCP Server
Server MCP yang terintegrasi dengan Shopify API, memungkinkan pengguna Claude Desktop untuk mengambil dan memanipulasi informasi produk dari toko Shopify.
Concurrent Browser MCP
A concurrent browser MCP server that supports multiple parallel browser instances
YouTrack MCP Server
A comprehensive Model Context Protocol server that provides AI agents with 44 tools to manage JetBrains YouTrack issues, sprints, and projects via the REST API. It supports full YouTrack query language and works with both Cloud and Server instances for complete project management integration.
ABSD DevOps MCP Server
Enables secure local filesystem operations and interactive terminal sessions for AI assistants. Provides 12 tools for file management, directory operations, code searching, and running interactive REPLs with security protections.
Berlin Open Data MCP Server
Enables interaction with Berlin's open data catalog through tools for full-text search, metadata retrieval, and dataset analysis. It provides access to over 2,500 datasets across categories like transport, health, and education using the Model Context Protocol.
Beep MCP Server
Enables AI assistants to interact with the Beep platform to manage bounties, assets, and payments. It supports operations for starting and stopping streaming sessions, verifying transactions, and issuing payments on the Beep network.
HowToCook-MCP Server
An MCP server that transforms AI assistants into personal chefs by providing recipe recommendations and meal planning features based on the HowToCook repository.
Seafile MCP Server
Connects Claude to your self-hosted or cloud-based Seafile storage for managing libraries and files through natural language. It enables users to browse directories, read file contents, and perform file operations like moving, renaming, or searching across their private infrastructure.
GitHub API MCP Server
A Multi-Agent Conversation Protocol Server for the GitHub API, auto-generated using AG2's MCP builder, allowing users to interact with GitHub services through natural language.
JIRA MCP Server
Enables AI assistants to search, view, create, and update JIRA issues using natural language commands and JQL queries.
Baby Design UI MCP Server
Enables AI assistants to discover, document, and generate React code using the pastel-themed Baby Design UI component library. It provides tools for retrieving design tokens and component specifications to streamline the development of user interfaces.
Next.js MCP Server
Alat utilitas yang menganalisis rute aplikasi Next.js dan memberikan informasi detail tentang jalur API, metode HTTP, parameter, kode status, dan skema permintaan/respons.
Google Sheets MCP Server
Provides read-only access to Google Sheets data through OAuth 2.0 authentication, enabling users to retrieve spreadsheet metadata, list tabs, and read cell data using natural language queries.
MCP Server
An implementation of the Model Context Protocol (MCP) server that enables multiple clients to connect simultaneously and handles basic context management and messaging with an extendable architecture.
Dice MCP Server
Provides comprehensive TRPG dice rolling functionality including standard notation, advantage/disadvantage mechanics, and success-counting dice pools. It enables users to perform complex dice logic and track roll history through an MCP-compliant interface.
Dedalus MCP Documentation Server
Enables AI-powered querying and serving of markdown documentation with search, Q\&A capabilities, and document analysis. Built for the YC Agents Hackathon with OpenAI integration and rate limiting protection.
Attendee MCP Server
A Model Context Protocol server that allows users to create and manage meeting bots capable of joining video calls, speaking, sending chat messages, and retrieving meeting transcripts.
JVLink MCP Server
Enables natural language queries and analysis of Japanese horse racing data from JRA-VAN without writing SQL. Supports analyzing race results, jockey performance, breeding trends, and track conditions through conversation with Claude.
Azure Kusto MCP Server
Server MCP untuk Azure Kusto
build-simple-mcp
Okay, here's a guide on how to build a simple Minecraft: Java Edition server using the official Minecraft server software. This focuses on getting a basic, functional server up and running. **Important Considerations Before You Start:** * **Hardware:** Running a Minecraft server requires decent hardware. A dedicated computer is best. The more players you want to support, the more RAM and CPU power you'll need. A minimum of 2GB of RAM is recommended for a small server (a few players), but 4GB or more is better. A fast CPU is also important. * **Internet Connection:** You'll need a stable and reasonably fast internet connection. Upload speed is particularly important, as that's what your players will be downloading from your server. * **Java:** Minecraft: Java Edition requires Java. Make sure you have the correct version installed. Generally, you'll want the latest version of Java 17 or later. * **Security:** Running a server exposes your computer to the internet. Take security seriously. Use a strong password, keep your software updated, and consider using a firewall. **Steps:** 1. **Download the Minecraft Server Software:** * Go to the official Minecraft website: [https://www.minecraft.net/en-us/download/server](https://www.minecraft.net/en-us/download/server) * Download the `minecraft_server.jar` file. It will be named something like `server.jar` or `minecraft_server.1.XX.X.jar` (where `1.XX.X` is the version number). 2. **Create a Server Folder:** * Create a new folder on your computer where you want to store your server files. Name it something descriptive, like "MinecraftServer". This folder will contain all the server's data, including the world, configuration files, and logs. 3. **Place the `server.jar` File:** * Move the `server.jar` file you downloaded into the "MinecraftServer" folder you just created. 4. **Run the Server for the First Time:** * Open a command prompt or terminal window. * Navigate to the "MinecraftServer" folder using the `cd` command. For example, if your folder is on your desktop, the command might be: ```bash cd Desktop/MinecraftServer ``` (On Windows, you might need to use backslashes: `cd Desktop\MinecraftServer`) * Run the server using the following command: ```bash java -jar server.jar nogui ``` * `java` tells the system to use the Java runtime environment. * `-jar` specifies that you're running a JAR file. * `server.jar` is the name of the server file. Make sure it matches the actual filename. * `nogui` tells the server to run without a graphical user interface (GUI), which is more efficient for a dedicated server. * The first time you run the server, it will generate some files and then stop. This is normal. It will also create an `eula.txt` file. 5. **Accept the EULA:** * Open the `eula.txt` file in a text editor. * Change `eula=false` to `eula=true`. This indicates that you agree to the Minecraft End User License Agreement. * Save the file. 6. **Run the Server Again:** * Go back to your command prompt or terminal window (still in the "MinecraftServer" folder). * Run the same command as before: ```bash java -jar server.jar nogui ``` * This time, the server should start properly. You'll see a lot of output in the console window as the server initializes. Wait until it says something like "Done (XX.XXXs)! For help, type "help"" 7. **Connect to Your Server (Locally):** * Start Minecraft: Java Edition on your computer. * Click "Multiplayer". * Click "Add Server". * In the "Server Name" field, enter a name for your server (e.g., "My Local Server"). * In the "Server Address" field, enter `localhost`. * Click "Done". * Your server should now appear in the server list. Select it and click "Join Server". If everything is working correctly, you should be able to connect to your server and play! 8. **Allowing External Connections (Port Forwarding - *Important for Playing with Friends*):** * **This is the most complicated part.** By default, your server is only accessible from your local network (i.e., computers on the same Wi-Fi network). To allow friends to connect from the internet, you need to configure *port forwarding* on your router. * **Find Your Router's IP Address:** Open a command prompt or terminal and type `ipconfig` (Windows) or `ifconfig` (macOS/Linux). Look for the "Default Gateway" address. This is your router's IP address. * **Access Your Router's Configuration:** Open a web browser and enter your router's IP address in the address bar. You'll be prompted for a username and password. These are usually printed on a sticker on your router. Common usernames are "admin" and common passwords are "password" or blank. If you don't know them, consult your router's documentation or contact your internet service provider. * **Find the Port Forwarding Section:** The location of the port forwarding settings varies depending on your router's brand and model. Look for sections labeled "Port Forwarding," "NAT Forwarding," "Virtual Servers," or something similar. * **Create a Port Forwarding Rule:** * **Service Name/Description:** Enter a name for the rule (e.g., "Minecraft Server"). * **Port Range:** Enter `25565` for both the start and end port. This is the default Minecraft server port. * **Internal IP Address/Forward To IP:** Enter the *internal* IP address of the computer running the server. You can find this using `ipconfig` (Windows) or `ifconfig` (macOS/Linux). Look for the "IPv4 Address" (Windows) or "inet" address (macOS/Linux). * **Protocol:** Select "TCP" or "TCP/UDP" (if given the option). * **Enable:** Make sure the rule is enabled. * **Save the Changes:** Save the port forwarding rule and restart your router if prompted. * **Find Your Public IP Address:** Go to a website like [https://www.whatismyip.com/](https://www.whatismyip.com/) to find your public IP address. This is the address your friends will use to connect to your server. 9. **Tell Your Friends Your Public IP Address:** * Give your friends your public IP address. They will enter this address in the "Server Address" field in Minecraft. For example, if your public IP address is `123.45.67.89`, they would enter `123.45.67.89` as the server address. **Important Server Configuration ( `server.properties` ):** * After running the server for the first time, a `server.properties` file will be created in your "MinecraftServer" folder. This file contains many settings that control how your server works. Open it in a text editor to customize the server. Here are some important settings: * `level-name=world`: The name of the world folder. Change this to create a new world with a different name. * `allow-nether=true`: Whether to allow the Nether dimension. * `gamemode=survival`: The default game mode (survival, creative, adventure, spectator). * `difficulty=easy`: The difficulty level (peaceful, easy, normal, hard). * `enable-command-block=false`: Whether to allow command blocks. Generally, leave this disabled unless you know what you're doing. * `max-players=20`: The maximum number of players allowed on the server. * `motd=A Minecraft Server`: The message of the day (MOTD) that is displayed in the server list. Use `\n` for line breaks. * `online-mode=true`: **Important:** Set this to `true` for a legitimate server that requires players to authenticate with their Minecraft accounts. Set it to `false` for a cracked server (not recommended). **Leaving this on `false` is a security risk.** * `server-port=25565`: The port the server runs on. Only change this if you know what you are doing. * `white-list=false`: Whether to use a whitelist. **Basic Server Commands (Type these in the server console window):** * `help`: Displays a list of available commands. * `op <playername>`: Gives a player operator (admin) privileges. * `deop <playername>`: Removes operator privileges from a player. * `kick <playername> [reason]`: Kicks a player from the server. * `ban <playername> [reason]`: Bans a player from the server. * `pardon <playername>`: Unbans a player. * `stop`: Stops the server gracefully. **Always use this command to shut down the server to prevent world corruption.** **Troubleshooting:** * **"Failed to bind to port" error:** This usually means that another program is already using port 25565, or that the server is already running. Make sure no other Minecraft servers are running, and check if any other programs are using the port. * **Players can't connect:** Double-check your port forwarding settings, your firewall settings, and make sure your friends are using your correct public IP address. Also, make sure `online-mode=true` in `server.properties` if you want players to authenticate with their Minecraft accounts. * **Server is lagging:** Reduce the number of players, upgrade your hardware, or optimize your server settings (e.g., reduce the view distance). **Security Best Practices:** * **Keep your server software up to date.** New versions often include security fixes. * **Use a strong password for your computer.** * **Enable a firewall.** Windows Firewall or `iptables` (Linux) can help protect your server from unauthorized access. * **Be careful who you give operator privileges to.** Operators can do anything on the server. * **Consider using a whitelist.** A whitelist only allows specific players to join the server. Set `white-list=true` in `server.properties` and then use the `whitelist add <playername>` command to add players to the whitelist. * **Back up your server regularly.** This will protect you from data loss in case of a crash or other problem. Simply copy the entire "MinecraftServer" folder to a safe location. **Next Steps:** * **Plugins:** Once you have a basic server running, you can add plugins to enhance its functionality. Popular plugin platforms include Bukkit, Spigot, and Paper. * **Mods:** For more extensive changes, you can use mods. Mods require a mod loader like Forge or Fabric. * **Server Hosting:** If you don't want to run the server on your own computer, you can use a Minecraft server hosting provider. These providers offer pre-configured servers and handle the technical aspects of running a server for you. This guide provides a basic foundation for building a Minecraft server. There's a lot more to learn, but this should get you started! Good luck!
AutoBrowser MCP
Autobrowser MCP adalah server Model Context Provider (MCP) yang memungkinkan aplikasi AI untuk mengendalikan peramban (browser) Anda.
Blabber-MCP
Sebuah server MCP yang memungkinkan LLM (Model Bahasa Besar) untuk menghasilkan audio ucapan dari teks menggunakan API Text-to-Speech OpenAI, mendukung berbagai suara, model, dan format audio.
GalaConnect MCP Server
Here are a few ways to translate "Galachain MCP server for use with LLMs" into Indonesian, depending on the nuance you want to convey: **Option 1 (Most straightforward):** * **Server MCP Galachain untuk digunakan dengan LLM** * This is a direct translation and easily understood. **Option 2 (Slightly more descriptive):** * **Server MCP Galachain untuk penggunaan dengan LLM** * This uses "penggunaan" (usage) which can sound slightly more formal. **Option 3 (Emphasizing the purpose):** * **Server MCP Galachain yang digunakan untuk LLM** * This translates to "Galachain MCP server *that is* used for LLMs." **Option 4 (If you want to be very clear about what MCP stands for, assuming the audience might not know):** * **Server MCP (Manajemen dan Kontrol Produksi) Galachain untuk digunakan dengan LLM** * This includes the full form of MCP in parentheses. Only use this if you think your audience needs the clarification. **Which one is best?** * **Option 1 is generally the best choice** unless you have a specific reason to use one of the others. It's concise and clear. **Key Considerations:** * **LLM:** It's generally acceptable to leave "LLM" as is, as it's a common abbreviation in technical contexts. If you *really* wanted to translate it, you could use "Model Bahasa Besar" (Large Language Model), but it's usually unnecessary. * **MCP:** As mentioned above, consider whether your audience knows what MCP stands for. Therefore, my recommendation is: **Server MCP Galachain untuk digunakan dengan LLM**
Aisera MCP Servers
Repositori untuk menyimpan Server MCP Publik Aisera
Feather Code MCP Server
A GitHub integration for Claude Desktop that provides access to GitHub features directly from Claude, offering 15 powerful tools for repository management, issues, pull requests, and code operations.
MCP Google Calendar Integration
Connects with Google Calendar API to fetch calendar events for specific dates through natural language commands in AI-driven editors like Cursor, enabling real-time calendar data access within your coding environment.
MCP-NAVER-Map
Server MCP Peta Naver
rootvine-mcp
Cross-platform music link resolution for AI agents. Resolve any song or album across Spotify, Apple Music, Amazon, YouTube, and more. Returns affiliate-ready links with click tracking