Discover Awesome MCP Servers

Extend your agent with 42,365 capabilities via MCP servers.

All42,365
MCP-CLIO

MCP-CLIO

Exposes Creatio CLI (CLIO) commands as tools for AI agents to manage Creatio environments. It enables users to perform environment health checks, restart web applications, and execute raw CLI commands through a stateless HTTP transport.

smartsheet-mcp

smartsheet-mcp

Enables browsing and querying Smartsheet data through read-only MCP tools, allowing MCP-compatible clients to explore sheets, reports, dashboards, and more.

Mcp Server Docker

Mcp Server Docker

Tentu, berikut adalah contoh cara membuat server Minecraft (MCP) menggunakan Docker: **Dockerfile** ```dockerfile FROM openjdk:17-jdk-slim # Set working directory WORKDIR /app # Download Minecraft Server (ganti versi sesuai kebutuhan) RUN wget https://launcher.mojang.com/v1/objects/35139a42bd5cd35253599977d64a28b410c16647/server.jar -O minecraft_server.jar # Accept EULA RUN echo "eula=true" > eula.txt # Expose Minecraft port EXPOSE 25565 # Start Minecraft Server CMD ["java", "-Xmx2G", "-Xms2G", "-jar", "minecraft_server.jar", "nogui"] ``` **Penjelasan:** * `FROM openjdk:17-jdk-slim`: Menggunakan image dasar OpenJDK 17 yang ringan. Minecraft membutuhkan Java untuk berjalan. * `WORKDIR /app`: Menentukan direktori kerja di dalam container. * `RUN wget ...`: Mengunduh file `server.jar` Minecraft dari Mojang. **Penting:** Ganti URL dengan versi server yang Anda inginkan. Anda bisa menemukan URL download di situs web Minecraft atau wiki. * `RUN echo "eula=true" > eula.txt`: Menerima EULA (End User License Agreement) Minecraft. Anda harus menerima EULA untuk menjalankan server. * `EXPOSE 25565`: Membuka port 25565, port default untuk Minecraft. * `CMD ["java", "-Xmx2G", "-Xms2G", "-jar", "minecraft_server.jar", "nogui"]`: Menjalankan server Minecraft. * `-Xmx2G` dan `-Xms2G`: Mengatur alokasi memori maksimum dan minimum untuk server (2GB dalam contoh ini). Sesuaikan sesuai kebutuhan server Anda. * `nogui`: Menjalankan server tanpa GUI (Graphical User Interface). **Cara Menggunakan:** 1. **Simpan Dockerfile:** Simpan kode di atas sebagai file bernama `Dockerfile` (tanpa ekstensi). 2. **Bangun Image Docker:** Buka terminal atau command prompt, arahkan ke direktori tempat Anda menyimpan `Dockerfile`, dan jalankan perintah berikut: ```bash docker build -t minecraft-server . ``` Ini akan membangun image Docker dengan nama `minecraft-server`. Tanda titik (`.`) menunjukkan bahwa Dockerfile berada di direktori saat ini. 3. **Jalankan Container Docker:** Jalankan container dari image yang baru saja Anda buat: ```bash docker run -d -p 25565:25565 minecraft-server ``` * `-d`: Menjalankan container di background (detached mode). * `-p 25565:25565`: Memetakan port 25565 dari container ke port 25565 di host machine Anda. Ini memungkinkan pemain untuk terhubung ke server Anda. **Tips Tambahan:** * **Volume:** Untuk menyimpan data server (dunia, konfigurasi, dll.) secara persisten, gunakan volume Docker. Contoh: ```bash docker run -d -p 25565:25565 -v minecraft_data:/app minecraft-server ``` Ini akan membuat volume bernama `minecraft_data` dan memasangnya ke direktori `/app` di dalam container. Data server akan disimpan di volume ini, sehingga tidak akan hilang saat container dihentikan atau dihapus. * **Konfigurasi Server:** Anda dapat memodifikasi file `server.properties` untuk mengkonfigurasi server Anda. File ini akan dibuat secara otomatis saat server pertama kali dijalankan. Anda dapat mengakses file ini melalui volume yang Anda buat. * **Environment Variables:** Anda dapat menggunakan environment variables untuk mengkonfigurasi server. Contoh: ```dockerfile ENV EULA=TRUE CMD ["java", "-Xmx2G", "-Xms2G", "-jar", "minecraft_server.jar", "nogui"] ``` Kemudian, saat menjalankan container: ```bash docker run -d -p 25565:25565 -e EULA=TRUE minecraft-server ``` * **Docker Compose:** Untuk konfigurasi yang lebih kompleks, pertimbangkan untuk menggunakan Docker Compose. Ini memungkinkan Anda untuk mendefinisikan dan mengelola beberapa container sebagai satu aplikasi. **Contoh Docker Compose (docker-compose.yml):** ```yaml version: "3.8" services: minecraft: image: minecraft-server build: . ports: - "25565:25565" volumes: - minecraft_data:/app environment: EULA: "TRUE" volumes: minecraft_data: ``` Untuk menjalankan dengan Docker Compose: 1. Simpan kode di atas sebagai `docker-compose.yml` di direktori yang sama dengan `Dockerfile`. 2. Jalankan perintah: `docker-compose up -d` Pastikan Anda telah menginstal Docker dan Docker Compose di sistem Anda. Semoga contoh ini membantu! Jangan ragu untuk bertanya jika Anda memiliki pertanyaan lebih lanjut.

CNCjs MCP Server

CNCjs MCP Server

Bridges Claude Code to CNCjs to enable remote control and monitoring of GRBL-based CNC machines. It provides a comprehensive toolset for managing G-code jobs, machine movement, and safety operations through natural language.

email-mcp-server

email-mcp-server

An MCP server that enables AI assistants to send emails via SMTP, supporting simple and custom emails with attachments and CC/BCC, plus connection testing.

LocalNest MCP

LocalNest MCP

A local-first MCP server that provides AI agents with safe codebase access through file discovery, hybrid lexical-semantic search, and project introspection. It features durable local memory and semantic indexing while keeping all data and processing entirely on your local machine.

zendesk-mcp

zendesk-mcp

Connects AI assistants to your Zendesk account with 14 curated tools for managing tickets, users, organizations, and help center articles, running locally with no third-party services.

PipeDrive MCP Server

PipeDrive MCP Server

A comprehensive MCP server for the Pipedrive CRM API, enabling AI assistants to read, write, and analyze CRM data conversationally through 100 tools including performance reporting and loss analysis.

civ6mcp

civ6mcp

Enables Claude to access real-time Civilization VI game data for strategic analysis, diplomatic intelligence, military assessments, and more via MCP.

GitHub MCP Server

GitHub MCP Server

Enables AI agents to analyze employee GitHub activity including PRs, code reviews, comments, and contributions across repositories with time-range filtering for performance assessment and impact analysis.

MemeOracle

MemeOracle

Memecoin Intelligence MCP Server — 9 tools for rug-check risk scoring, momentum analysis, whale watch, viral detection across 80+ chains. Part of ToolOracle (tooloracle.io).

Things MCP Server

Things MCP Server

Enables interaction with the Things app for task management, allowing natural language task creation, project analysis, and priority management.

Careerjet Job Search MCP Server

Careerjet Job Search MCP Server

Enables job searching functionality using Careerjet API with features like keyword and location-based searches, advanced filtering, and multi-language support across 50+ countries.

Visum Thinker MCP Server

Visum Thinker MCP Server

Provides structured sequential thinking capabilities for AI assistants to break down complex problems into manageable steps, revise thoughts, and explore alternative reasoning paths.

reactotron-mcp

reactotron-mcp

Acts as a proxy between your app and Reactotron, enabling AI assistants to read logs, inspect state, monitor network requests, and trigger custom commands.

Notion Page Viewer

Notion Page Viewer

Enables viewing and browsing Notion page content through a web interface with multiple display modes, supporting various block types including text, images, toggles, and child pages.

Empresa Gemini MCP

Empresa Gemini MCP

An MCP server that integrates Google Gemini with corporate management APIs to handle employees, clients, and suppliers through natural language. It enables dynamic data retrieval, record creation, and secure document listing without including sensitive data in the initial prompt.

Ant Design MCP Server

Ant Design MCP Server

Provides AI assistants with comprehensive Ant Design component documentation, examples, API references, and best practices. Supports multiple versions and enables natural language queries for React UI component development.

ffdecmcp

ffdecmcp

MCP wrapper for JPEXS Free Flash Decompiler (FFDec) that exposes SWF decompilation and analysis tools to AI assistants like Claude.

Slack MCP Server

Slack MCP Server

Enables AI assistants to read messages, threads, channel info, user profiles, search conversations, and generate permalinks in Slack workspaces.

DuckDuckGo MCP Server

DuckDuckGo MCP Server

A free and unlimited web search server that enables AI models to search, crawl, and research web content using DuckDuckGo without requiring API keys. It features parallel crawling and a smart ranking system to prioritize the most relevant information for complex queries.

claude-mesh

claude-mesh

Enables two live Claude Code instances on the same workstation to exchange synchronous questions and answers via a shared SQLite file.

MCP Shopline

MCP Shopline

An open-source MCP server that wraps the Shopline Open API into 143 AI-callable tools for e-commerce data analysis, enabling AI agents to query orders, products, inventory, customer behavior, and promotions from Shopline stores through natural language.

SCP Local MCP Server

SCP Local MCP Server

Enables secure access to customer e-commerce data (orders, loyalty points, offers, preferences) through the Shopper Context Protocol with OAuth 2.0 authentication. Supports discovering and connecting to SCP-enabled merchants for personalized shopping assistance.

Vue Docs MCP

Vue Docs MCP

Provides AI assistants with up-to-date Vue ecosystem documentation through the Model Context Protocol, enabling semantic search, API lookup, and cross-framework references.

Public APIs MCP

Public APIs MCP

Enables semantic search and discovery of free public APIs from an extensive catalog. Provides embedding-based search over API names and descriptions, plus detailed API information retrieval.

AgentSkills MCP

AgentSkills MCP

Provides comprehensive financial research tools including A-share stock analysis, web scraping, entity extraction, and multi-source search capabilities for building intelligent financial research agents.

projectx-mcp

projectx-mcp

Enables users to manage time entries and log hours on the ProjectX platform using natural language. It provides tools for creating, viewing, and deleting entries, as well as retrieving a list of available projects.

Claude Code MCP Server

Claude Code MCP Server

A server that allows LLMs to run Claude Code with all permissions bypassed automatically, enabling code execution and file editing without permission interruptions.

GridPulse Energy

GridPulse Energy

MCP server for real-time electricity prices, carbon intensity, and energy analytics across 41+ zones in Europe, Great Britain, the United States, and Australia. Query live prices, compare zones, check gas storage levels, get green scores, find optimal charging windows, and access advanced analytics. Free Basic tier requires no API key. Install via npx gridpulse-mcp or connect directly via Streamab