Discover Awesome MCP Servers

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

All20,281
MCP PII Tools

MCP PII Tools

Enables high-precision detection, anonymization, encryption and decryption of personally identifiable information (PII) in text using GPT-4o-based detection and advanced cryptographic methods. Supports both deterministic encryption for searchable data and format-preserving encryption for structured identifiers.

BusyBee

BusyBee

Autonomous TDD coding agent that converts specifications into feature lists and implements them using test-driven development with pause/resume capabilities, live progress monitoring, and automatic git commits.

OrgFlow MCP

OrgFlow MCP

Enables comprehensive organizational data management including employee tracking, team coordination, project management, asset oversight, and performance monitoring. Provides a centralized system for managing all aspects of organizational operations through natural language interactions.

BitSight Community MCP Server

BitSight Community MCP Server

Enables access to BitSight security rating data through company search and rating retrieval functionality. Automatically manages BitSight subscriptions for one-time rating requests and provides structured security assessments for companies.

Aurora-MCP

Aurora-MCP

Enables querying relationships between plant species, small molecules, and mitochondrial Complex I inhibitors by bridging natural-product, biodiversity, and PubMed datasets. Allows LLMs to perform structured searches and reasoning over biological data to identify potential plant-derived mitochondrial inhibitors.

Maharashtra Transport MCP Server

Maharashtra Transport MCP Server

An MCP Server that enables interaction with Maharashtra's Motor Vehicle Department API, allowing users to access transportation-related services through natural language requests.

Full-Stack MCP Server

Full-Stack MCP Server

Provides 8 specialized AI agents (Frontend, Backend, Database, API, DevOps, Testing, Security, Performance) for full-stack web development, powered by high-speed Cerebras inference and integrated with OpenCode CLI.

Shark MCP - AI Agent Microloan Server

Shark MCP - AI Agent Microloan Server

Enables AI agents to request and manage microloans for HTTP 402 Payment Required transactions. Provides automated underwriting, credit management, and USDC disbursement with progressive credit limits based on repayment history.

MCP Weather Demo

MCP Weather Demo

A demonstration server for ModelContextProtocol that provides weather tools and prompts for Claude AI, allowing LLMs to access external data without manual copying.

Readwise MCP Enhanced

Readwise MCP Enhanced

A comprehensive MCP server that unifies Readwise Reader document management with full Readwise highlights functionality, featuring AI-powered text processing and 94% reduction in token usage. Enables saving, searching, and managing documents and highlights through natural language with advanced content controls and spaced repetition learning.

Context Optimizer MCP Server

Context Optimizer MCP Server

Provides AI coding assistants with context optimization tools including targeted file analysis, intelligent terminal command execution with LLM-powered output extraction, and web research capabilities. Helps reduce token usage by extracting only relevant information instead of processing entire files and command outputs.

Sefaria Jewish Library

Sefaria Jewish Library

대규모 언어 모델이 표준화된 인터페이스를 통해 세파리아 라이브러리에서 유대교 텍스트와 주석을 검색할 수 있도록 합니다.

Port MCP Server

Port MCP Server

거울

lighthouse-mcp

lighthouse-mcp

Cursor/Cline/GitHub Copilot과 같은 AI 어시스턴트가 Google의 Lighthouse 도구를 사용하여 웹 페이지의 성능 지표를 측정할 수 있도록 합니다. 그런 다음 에이전트 루프를 실행하여 어시스턴트가 해당 지표를 최적화하도록 할 수 있습니다!

MCP Kakao Local

MCP Kakao Local

Connects to Kakao Local API and Kakao Maps, enabling access to location-based services and map functionality in Korea.

Zhihu MCP Server

Zhihu MCP Server

A Model Context Protocol server that enables users to automatically generate articles using large language models and publish them directly to Zhihu (a Chinese Q\&A platform).

MCP Server for NPM Package Info

MCP Server for NPM Package Info

NPM JavaScript 패키지 관리 도구를 위한 MCP 서버

ArtifactHub MCP Server

ArtifactHub MCP Server

A Model Context Protocol server that enables interaction with Helm charts on Artifacthub, providing tools for retrieving chart information, default values, and templates through natural language queries.

Facebook Ads MCP Server

Facebook Ads MCP Server

Claude AI를 활용하여 Facebook 광고 캠페인을 입력하고 평가하는 MCP 서버

MCP Server Template

MCP Server Template

A scaffold project for building FastAPI-based Model Context Protocol servers with automatic tool discovery and router capabilities.

Secure Command Executor MCP Server

Secure Command Executor MCP Server

안전 점검 및 로깅 기능을 통해 시스템 명령을 안전하게 관리하고 실행하도록 설계된, 일일 로그 로테이션 기능을 갖춘 강력한 명령 실행 서비스입니다.

Chargebee MCP Server

Chargebee MCP Server

A server that integrates with AI-powered code editors to provide immediate answers about Chargebee products and API services, offering context-aware code snippets and access to Chargebee's knowledge base.

Remote MCP Server on Cloudflare

Remote MCP Server on Cloudflare

IRIS ObjectScript MCP Server

IRIS ObjectScript MCP Server

Provides access to InterSystems IRIS ObjectScript documentation, examples, and intelligent search tools. Enables developers to query documentation, search class references, and access official IRIS resources through natural language.

Petstore MCP Server

Petstore MCP Server

A comprehensive Model Context Protocol implementation for the Swagger Petstore API that provides 19 tools across pet management, store operations, and user management categories.

hello-mcp-server-current-time

hello-mcp-server-current-time

알겠습니다. spring-ai-starter-mcp-server 기반으로 현재 시간을 반환하는 간단한 사용자 정의 MCP 서버 예제를 제공해 드리겠습니다. **1. 프로젝트 설정 (pom.xml 또는 build.gradle)** 먼저, 필요한 의존성을 추가해야 합니다. `spring-ai-starter-mcp-server`를 사용하므로, 해당 의존성을 포함해야 합니다. ```xml (pom.xml 예시) <dependencies> <dependency> <groupId>org.springframework.ai</groupId> <artifactId>spring-ai-starter-mcp-server</artifactId> <version>{spring-ai-version}</version> <!-- Spring AI 버전을 지정하세요 --> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> ``` **2. 사용자 정의 MCP 엔드포인트 생성** `@RestController` 어노테이션을 사용하여 MCP 엔드포인트를 정의합니다. `/time` 엔드포인트를 만들어 현재 시간을 반환하도록 하겠습니다. ```java import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; @RestController public class TimeController { @GetMapping("/time") public String getCurrentTime() { LocalDateTime now = LocalDateTime.now(); DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"); return "현재 시간: " + now.format(formatter); } } ``` **3. Spring Boot 애플리케이션 클래스** Spring Boot 애플리케이션 클래스를 생성합니다. ```java import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class McpServerApplication { public static void main(String[] args) { SpringApplication.run(McpServerApplication.class, args); } } ``` **4. 애플리케이션 실행** Spring Boot 애플리케이션을 실행합니다. **5. 테스트** 애플리케이션이 실행되면, 브라우저나 `curl` 명령어를 사용하여 `/time` 엔드포인트를 호출하여 결과를 확인할 수 있습니다. ```bash curl http://localhost:8080/time ``` 결과는 다음과 유사할 것입니다. ``` 현재 시간: 2023-10-27 10:30:00 ``` **설명:** * **`@RestController`**: 이 어노테이션은 클래스를 REST 컨트롤러로 지정합니다. * **`@GetMapping("/time")`**: `/time` 경로에 대한 GET 요청을 처리하는 메서드를 정의합니다. * **`LocalDateTime.now()`**: 현재 날짜와 시간을 가져옵니다. * **`DateTimeFormatter`**: 날짜와 시간을 원하는 형식으로 포맷합니다. * **`SpringApplication.run()`**: Spring Boot 애플리케이션을 시작합니다. **주의사항:** * `{spring-ai-version}`을 실제 사용하려는 Spring AI 버전으로 바꿔야 합니다. * `application.properties` 또는 `application.yml` 파일에서 서버 포트 (기본적으로 8080)를 변경할 수 있습니다. * 이 예제는 매우 간단하며, 실제 MCP 서버에서는 인증, 로깅, 오류 처리 등 더 많은 기능이 필요할 수 있습니다. 이 예제가 Spring AI 기반의 사용자 정의 MCP 서버를 구축하는 데 도움이 되기를 바랍니다. 더 궁금한 점이 있으면 언제든지 질문해주세요.

Maven Dependencies Server

Maven Dependencies Server

Maven 의존성 버전을 확인하는 도구를 제공하는 MCP (Model Context Protocol) 서버입니다. 이 서버를 통해 LLM은 Maven 의존성을 검증하고 Maven Central Repository에서 최신 버전을 검색할 수 있습니다.

Repology MCP Server

Repology MCP Server

Enables users to search and retrieve package repository information from Repology through natural language. Supports searching projects, getting detailed package information, and checking repository problems across multiple Linux distributions and package managers.

FoundryMCP

FoundryMCP

MCP Server for AI Agents accessing Palantir Foundry

Dangerous MCP

Dangerous MCP

민감한 환경 변수에 접근하여 보안 위험을 드러내는 데모 서버입니다. MCP 도구가 명시적인 동의 없이 사용자 데이터를 유출할 수 있는 잠재력을 보여줍니다.