Discover Awesome MCP Servers

Extend your agent with 20,299 capabilities via MCP servers.

All20,299
Nagoya Bus MCP

Nagoya Bus MCP

Provides access to Nagoya bus system information and schedules. Enables users to query bus routes, stops, and real-time transit data for Nagoya's public transportation network.

Azure Usage MCP Server

Azure Usage MCP Server

Enables natural language analysis of Azure usage data from CSV files, providing cost summaries, visualizations, and insights about service and regional spending patterns.

Microservice Control Panel (MCP)

Microservice Control Panel (MCP)

바이트댄스의 Ocean Engine(巨量引擎) 광고 플랫폼의 API를 통합 및 관리하여 전자상거래 트래픽 확보 시나리오를 위한 통합 액세스 인터페이스를 제공하는 플랫폼입니다.

MCP Server Starter (TypeScript)

MCP Server Starter (TypeScript)

A minimal, production-ready TypeScript template for building Model Context Protocol servers with auto-loading architecture for tools, resources, and prompts, supporting both stdio and HTTP transports.

test-mcp-servers-in-vs-code

test-mcp-servers-in-vs-code

MCP Prompt Cleaner

MCP Prompt Cleaner

Enhances and cleans raw prompts using AI to make them more clear, actionable, and effective. Provides quality assessment, suggestions, and supports both general and code-specific optimization modes.

MCP Jira

MCP Jira

Enables AI assistants to interact with Jira Cloud and Server/Data Center deployments for issue management, project tracking, and workflow automation. Supports multiple authentication methods including API tokens, OAuth 2.0, and personal access tokens.

MCP SVG Converter

MCP SVG Converter

SVG 코드를 상세한 사용자 정의 옵션을 통해 고품질 PNG 및 JPG 이미지로 변환하는 도구를 제공하는 모델 컨텍스트 프로토콜 서버입니다.

Flomo Go Tools

Flomo Go Tools

Enhanced Fetch MCP

Enhanced Fetch MCP

Provides advanced web scraping with HTTP client, smart content extraction to Markdown, browser automation via Playwright, screenshot/PDF generation, and Docker sandbox execution environments.

Enrichment MCP Server

Enrichment MCP Server

A Model Context Protocol server that performs third-party threat intelligence enrichment for various observables (IP addresses, domains, URLs, emails) using services like VirusTotal, Shodan, and AbuseIPDB.

Cultural Heritage MCP Server

Cultural Heritage MCP Server

Provides access to European cultural heritage collections and artworks, allowing users to search for items, get detailed information about specific artworks, browse collections by institution, and receive AI-powered recommendations based on interests.

Xray MCP Server

Xray MCP Server

Enables vulnerability scanning of web applications using the xray security scanner. Provides URL scanning capabilities with configurable crawlers, plugins, and POCs to detect security vulnerabilities through natural language interactions.

Monday Api Mcp

Monday Api Mcp

Remote MCP Server on Cloudflare

Remote MCP Server on Cloudflare

Poe Proxy MCP Server

Poe Proxy MCP Server

A FastMCP server that proxies the Poe.com API, allowing users to query various AI models (including Claude 3.7 Sonnet) and share files with models that support it.

Magic-API MCP Server

Magic-API MCP Server

Provides comprehensive development tools for Magic-API including documentation lookup, API testing, resource management, debugging with breakpoints, backup operations, and code search capabilities. Enables developers to efficiently build, test, and maintain Magic-API projects through natural language interactions.

Glitchtip MCP Server

Glitchtip MCP Server

Enables interaction with Glitchtip error tracking platform through natural language. Provides access to issues, events, projects, teams, and organization management for comprehensive error monitoring and debugging.

HaloPSA MCP Tools

HaloPSA MCP Tools

Model Context Protocol server for interacting with the HaloPSA API, enabling AI assistants like Claude to manage tickets, users, and assets in HaloPSA through natural language.

MCP Math Server

MCP Math Server

Provides basic mathematical operations including arithmetic, square root, and number theory functions like GCD and LCM. Built with TypeScript and includes proper error handling for edge cases like division by zero.

saras-mcp

saras-mcp

I cannot provide you with MCP (Mod Coder Pack) server code specifically for "Saras." Here's why, and what I *can* offer: * **MCP is a Tool, Not a Mod:** MCP is a tool used to decompile, deobfuscate, and recompile Minecraft code. It's not a mod itself. It provides the *environment* to *create* mods. * **"Saras" is Unclear:** I don't know what "Saras" refers to. It could be: * A specific mod: If it's a mod, I can't give you the *source code* directly. That would be a copyright violation. * A concept for a mod: If it's an idea, I can help you with *how* to start coding it using MCP. * Something else entirely. **What I Need to Help You:** 1. **Clarify "Saras":** What *is* "Saras"? Is it a mod you're trying to create? Is it a mod that already exists? If it's an existing mod, I cannot provide the source code. 2. **What are you trying to do?** Are you trying to: * Create a new mod from scratch? * Modify an existing mod? * Understand how a specific part of Minecraft works? **If you want to create a new mod, here's how to get started with MCP:** 1. **Download and Set Up MCP:** * Download the correct MCP version for the Minecraft version you want to mod. You can usually find MCP on sites like Mod Coder Pack's official website or related forums. * Follow the MCP setup instructions carefully. This usually involves extracting the MCP files and running a command to decompile Minecraft. 2. **Set up your Development Environment:** * Use an IDE (Integrated Development Environment) like Eclipse or IntelliJ IDEA. These IDEs have features that make coding much easier. * Configure your IDE to work with MCP. This usually involves setting up the classpath to include the MCP libraries. 3. **Start Coding:** * Create a new Java project in your IDE. * Create your mod's main class. This class will be the entry point for your mod. * Use the Minecraft API (provided by MCP) to add your mod's features. **Example (Very Basic):** ```java package com.example.sarasmod; // Replace with your mod's package import net.minecraft.init.Blocks; import net.minecraft.item.ItemStack; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.Mod.EventHandler; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.registry.GameRegistry; @Mod(modid = SarasMod.MODID, version = SarasMod.VERSION) public class SarasMod { public static final String MODID = "sarasmod"; public static final String VERSION = "1.0"; @EventHandler public void init(FMLInitializationEvent event) { // Some example code System.out.println("DIRT BLOCK >> " + Blocks.dirt.getUnlocalizedName()); // Example: Add a recipe to craft dirt into something GameRegistry.addRecipe(new ItemStack(Blocks.stone), "XX", "XX", 'X', Blocks.dirt); } } ``` **Explanation:** * `@Mod`: This annotation tells Forge that this is a mod. * `MODID`: A unique identifier for your mod. * `VERSION`: The version number of your mod. * `@EventHandler`: This annotation marks methods that handle specific events. * `FMLInitializationEvent`: This event is fired when the game is initializing. * `GameRegistry.addRecipe`: This adds a crafting recipe. **Important Notes:** * **Minecraft Forge:** You'll need to use Minecraft Forge to load your mod. Forge is a modding API that makes it easier to create mods. * **Documentation:** Refer to the Minecraft Forge documentation and tutorials for more information on how to create mods. * **Java Knowledge:** You'll need a good understanding of Java programming to create Minecraft mods. Please provide more details about what you're trying to achieve, and I'll do my best to help you.

T-SQL Analyzer

T-SQL Analyzer

T-SQL Analyzer

PowerPoint MCP Server

PowerPoint MCP Server

AI 모델이 금융 차트, 서식 지정, 템플릿 관리와 같은 고급 기능을 사용하여 PowerPoint 프레젠테이션을 생성하고 조작할 수 있도록 하는 모델 컨텍스트 프로토콜 서버.

Mcp Forge

Mcp Forge

MCP-Forge는 모델 컨텍스트 프로토콜(MCP) 서버를 동적으로 생성, 관리 및 모니터링하기 위한 강력한 프레임워크입니다. 공식 MCP SDK를 사용하여 이 도구를 사용하면 중앙 집중식 인터페이스를 통해 필요에 따라 특화된 MCP 서버를 만들 수 있습니다.

estudIA-MCP

estudIA-MCP

RAG-enabled MCP server that uses Google Gemini for embeddings and Supabase for vector storage, enabling semantic search and document similarity matching through natural language queries.

Fuel Network & Sway Language MCP Server

Fuel Network & Sway Language MCP Server

Fuel 문서를 지원하고 Cursor와 같은 다양한 코딩 IDE를 지원하는 Fuel MCP 서버입니다.

Docker MCP Server

Docker MCP Server

Enables secure execution of shell commands and file operations within isolated Docker containers. Provides process management, interactive input handling, and comprehensive file system operations for containerized development environments.

Mistral Agent Manager

Mistral Agent Manager

Enables management of Mistral AI agents through MCP tools including creating, listing, searching, viewing details, and deleting agents. Integrates with Mistral API to provide agent management capabilities through natural language interactions.

Readonly Filesystem MCP Server

Readonly Filesystem MCP Server

Node.js server implementing Model Context Protocol for secure read-only filesystem operations, allowing Claude to read files, list directories, search files, and get file metadata within specified directories.

Securities prices MCP server sample

Securities prices MCP server sample

증권 가격, 과거 정보 등을 위한 샘플 MCP 서버