Discover Awesome MCP Servers

Extend your agent with 16,638 capabilities via MCP servers.

All16,638
Basic MCP Server Tool

Basic MCP Server Tool

Flux Image Generation Server

Flux Image Generation Server

flux image generation mcp server

Hello World MCP Server

Hello World MCP Server

Typescript starter for MCP server with resource, prompt and tool

mcp_agent

mcp_agent

MCP (Minecraft Coder Pack)용 공개 서버

mcp-github-server

mcp-github-server

GitHub APIを使用したModel Context Protocolサーバーの実装

Supabase MCP Server

Supabase MCP Server

Mirror of

JetBrains MCP Server Plugin

JetBrains MCP Server Plugin

JetBrains MCP Server Plugin

ChEMBL-MCP-Server

ChEMBL-MCP-Server

🔍 간단한 MCP 인터페이스를 통해 AI 어시스턴트가 ChEMBL을 검색, 액세스 및 분석할 수 있도록 합니다.

Mcp Server

Mcp Server

Mcp Ffmpeg

Mcp Ffmpeg

Model Context Protocol Server to facilitate llms to able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created.

Ip Mcp Server

Ip Mcp Server

A IP MCP server.

YouTube Transcript API

YouTube Transcript API

MCP 서버는 유튜브 비디오의 내용을 텍스트로 변환하는 데 도움을 줍니다.

mcp-server-kubernetes

mcp-server-kubernetes

거울

MCP Server Hello World

MCP Server Hello World

MCP

MCP

graphexpert2025

graphexpert2025

## Graph Databases and MCP Servers: Comprehensive Notes for LM Onboarding These notes provide a comprehensive overview of Graph Databases and MCP (Metadata Computation Platform) Servers, designed to quickly onboard a Language Model (LM) to Graph DB projects. **I. Graph Databases: The Big Picture** * **What are they?** Graph databases are NoSQL databases that use graph structures with nodes, edges, and properties to store and represent data. They excel at managing and querying relationships between data points. * **Why use them?** * **Relationship-centric:** Ideal for data where relationships are as important as the data itself. * **Performance:** Efficiently traverse complex relationships, outperforming relational databases in many scenarios. * **Flexibility:** Schema-less or schema-light, allowing for easy evolution of the data model. * **Intuitive:** Graph data model closely mirrors real-world relationships, making it easier to understand and query. * **Key Components:** * **Nodes (Vertices):** Represent entities (e.g., people, products, locations). * **Edges (Relationships):** Connect nodes and represent the relationships between them (e.g., "knows," "purchased," "located_in"). Edges can be directed or undirected. * **Properties:** Key-value pairs that store attributes of nodes and edges (e.g., node: `name="John Doe", age=30`; edge: `type="friend_of", since="2020"`). * **Common Use Cases:** * **Social Networks:** Modeling user connections, recommendations, and influence. * **Knowledge Graphs:** Representing facts and relationships between entities for semantic search and reasoning. * **Recommendation Engines:** Suggesting products, content, or connections based on user behavior and relationships. * **Fraud Detection:** Identifying patterns of fraudulent activity by analyzing relationships between accounts, transactions, and devices. * **Identity and Access Management (IAM):** Managing user permissions and access control based on roles and relationships. * **Supply Chain Management:** Tracking products and materials through the supply chain. * **Popular Graph Database Technologies:** * **Neo4j:** A popular, mature, and widely used graph database. Supports Cypher query language. * **Amazon Neptune:** A fully managed graph database service from AWS. Supports Gremlin and SPARQL query languages. * **JanusGraph:** A distributed, scalable graph database that supports multiple storage backends (e.g., Cassandra, HBase, Bigtable). Supports Gremlin query language. * **Microsoft Azure Cosmos DB (with Gremlin API):** A globally distributed, multi-model database service that includes a graph database option. Supports Gremlin query language. * **Dgraph:** A distributed, horizontally scalable, and fast graph database. Supports GraphQL-like query language (GraphQL+-). * **Query Languages:** * **Cypher:** Neo4j's declarative query language, designed to be easy to read and write. * **Gremlin:** A graph traversal language that can be used with various graph databases (e.g., Neptune, JanusGraph, Cosmos DB). * **SPARQL:** A query language for RDF (Resource Description Framework) data, often used with semantic web technologies. * **GraphQL+- (Dgraph):** A GraphQL-like query language for Dgraph. **II. MCP (Metadata Computation Platform) Servers** * **What are they?** MCP Servers are systems designed to compute and manage metadata related to data assets. In the context of graph databases, they often focus on extracting, transforming, and loading (ETL) data into the graph, as well as managing the metadata *about* the graph itself (schema, data lineage, etc.). * **Purpose:** * **Data Ingestion:** Automating the process of loading data from various sources into the graph database. * **Metadata Management:** Tracking the structure, origin, and quality of data within the graph. * **Data Discovery:** Enabling users to easily find and understand the data available in the graph. * **Data Governance:** Enforcing policies and standards for data usage and access. * **Data Lineage:** Tracking the flow of data through the system, from source to destination. * **Schema Management:** Managing the schema of the graph database, including node and edge types, properties, and constraints. * **Key Functions:** * **Data Extraction:** Reading data from various sources (e.g., relational databases, APIs, files). * **Data Transformation:** Cleaning, transforming, and enriching data to fit the graph data model. * **Data Loading:** Writing data into the graph database. * **Metadata Extraction:** Extracting metadata from data sources and the graph database itself. * **Metadata Storage:** Storing metadata in a central repository. * **Metadata Querying:** Providing APIs and interfaces for querying metadata. * **Workflow Management:** Orchestrating the execution of data ingestion and metadata management tasks. * **Common Technologies and Concepts:** * **Apache Kafka:** A distributed streaming platform often used for data ingestion and event processing. * **Apache Spark:** A distributed computing framework used for data transformation and analysis. * **Apache Airflow:** A workflow management platform used to orchestrate data pipelines. * **Data Catalog:** A central repository for metadata, providing a single source of truth for data assets. * **Data Lineage Tools:** Tools that automatically track the flow of data through the system. * **ETL (Extract, Transform, Load) Tools:** Tools that automate the process of extracting, transforming, and loading data. * **GraphQL APIs:** APIs that allow users to query metadata in a flexible and efficient way. * **Example MCP Server Architecture (Conceptual):** ``` [Data Sources] --> [Data Extraction (Kafka Connect, Custom Scripts)] --> [Data Transformation (Spark, Custom Code)] --> [Graph Database (Neo4j, Neptune)] ^ | [Metadata Extraction (from Data Sources & Graph DB)] --> [Metadata Storage (Data Catalog)] --> [Metadata API (GraphQL)] ``` **III. LM Considerations for Graph DB Projects** * **Understanding the Data Model:** The LM needs to understand the graph data model, including the types of nodes, edges, and properties. This is crucial for generating relevant queries and interpreting results. * **Query Generation:** The LM can be used to generate graph queries (e.g., Cypher, Gremlin) based on natural language input. This requires training the LM on a dataset of natural language questions and corresponding graph queries. * **Data Enrichment:** The LM can be used to enrich the graph data by extracting information from unstructured text and adding it as properties to nodes or edges. * **Relationship Extraction:** The LM can be used to identify relationships between entities in unstructured text and create new edges in the graph. * **Knowledge Graph Completion:** The LM can be used to infer missing relationships or properties in the graph based on existing data. * **Data Validation:** The LM can be used to validate the data in the graph by checking for inconsistencies or errors. * **Explainability:** The LM can be used to explain the results of graph queries by providing natural language descriptions of the relationships and data involved. * **Security and Privacy:** The LM needs to be aware of security and privacy considerations when working with sensitive data in the graph. This includes masking or anonymizing data, and enforcing access control policies. **IV. Key Questions to Ask When Starting a Graph DB Project** * **What problem are we trying to solve with a graph database?** (Clearly define the use case) * **What data sources will be used to populate the graph?** * **What is the data model?** (Nodes, edges, properties) * **What query language will be used?** * **What are the performance requirements?** * **What are the security and privacy requirements?** * **What tools and technologies will be used for data ingestion, transformation, and metadata management (MCP)?** * **How will the graph database be integrated with other systems?** * **How will the LM be used in the project?** (Query generation, data enrichment, etc.) **V. LM Specific Considerations for Integration** * **API Access:** How will the LM access the graph database and MCP server? (e.g., REST APIs, GraphQL APIs, database drivers) * **Data Format:** What data format will be used for communication between the LM and the graph database/MCP server? (e.g., JSON, CSV, RDF) * **Training Data:** What training data is available for the LM? (e.g., natural language questions and corresponding graph queries, examples of data enrichment) * **Evaluation Metrics:** How will the performance of the LM be evaluated? (e.g., accuracy of query generation, quality of data enrichment) * **Scalability:** How will the LM scale to handle large volumes of data and queries? * **Monitoring and Logging:** How will the LM be monitored and logged? **VI. Example Scenario: Building a Knowledge Graph for Customer Support** * **Goal:** Improve customer support by providing agents with a knowledge graph that connects customers, products, issues, and solutions. * **Data Sources:** * CRM system (customer data) * Product catalog * Support tickets * Knowledge base articles * **Data Model:** * Nodes: `Customer`, `Product`, `Issue`, `Solution` * Edges: `PURCHASED`, `REPORTED`, `RELATED_TO`, `RESOLVED_BY` * **MCP Server:** Used to ingest data from the various sources, transform it into the graph data model, and load it into the graph database. Also used to extract metadata about the data sources and the graph itself. * **LM Use Cases:** * **Query Generation:** Allow support agents to ask natural language questions like "What are the common issues reported by customers who purchased product X?" and have the LM generate the corresponding Cypher query. * **Data Enrichment:** Use the LM to analyze support tickets and extract key information about the issue, such as the root cause and the steps to reproduce it. Add this information as properties to the `Issue` node. * **Relationship Extraction:** Use the LM to identify relationships between issues and solutions based on the content of support tickets and knowledge base articles. Create new `RELATED_TO` edges between `Issue` and `Solution` nodes. **VII. Conclusion** Graph databases offer a powerful way to model and query complex relationships between data. MCP servers are essential for managing the data ingestion, transformation, and metadata associated with graph databases. By understanding the key concepts and technologies involved, and by carefully considering the role of the LM in the project, you can successfully leverage graph databases to solve a wide range of problems. Remember to focus on clearly defining the use case, designing a well-defined data model, and choosing the right tools and technologies for the job. --- **Korean Translation:** ## 그래프 데이터베이스 및 MCP 서버: LM 온보딩을 위한 종합 노트 이 노트는 그래프 데이터베이스와 MCP (Metadata Computation Platform) 서버에 대한 종합적인 개요를 제공하며, 언어 모델 (LM)을 그래프 DB 프로젝트에 빠르게 온보딩하도록 설계되었습니다. **I. 그래프 데이터베이스: 전체 그림** * **정의:** 그래프 데이터베이스는 노드, 엣지 및 속성을 사용하여 데이터를 저장하고 표현하는 그래프 구조를 사용하는 NoSQL 데이터베이스입니다. 데이터 포인트 간의 관계를 관리하고 쿼리하는 데 탁월합니다. * **사용 이유:** * **관계 중심:** 관계가 데이터 자체만큼 중요한 데이터에 이상적입니다. * **성능:** 복잡한 관계를 효율적으로 탐색하여 많은 시나리오에서 관계형 데이터베이스보다 성능이 뛰어납니다. * **유연성:** 스키마가 없거나 스키마가 가벼워 데이터 모델을 쉽게 발전시킬 수 있습니다. * **직관적:** 그래프 데이터 모델은 실제 관계를 밀접하게 반영하여 이해하고 쿼리하기 쉽습니다. * **주요 구성 요소:** * **노드 (정점):** 엔터티 (예: 사람, 제품, 위치)를 나타냅니다. * **엣지 (관계):** 노드를 연결하고 노드 간의 관계를 나타냅니다 (예: "알고 있다", "구매했다", "위치한다"). 엣지는 방향성이 있거나 없을 수 있습니다. * **속성:** 노드 및 엣지의 속성을 저장하는 키-값 쌍 (예: 노드: `name="John Doe", age=30`; 엣지: `type="friend_of", since="2020"`). * **일반적인 사용 사례:** * **소셜 네트워크:** 사용자 연결, 추천 및 영향력 모델링. * **지식 그래프:** 시맨틱 검색 및 추론을 위해 엔터티 간의 사실 및 관계 표현. * **추천 엔진:** 사용자 행동 및 관계에 따라 제품, 콘텐츠 또는 연결 제안. * **사기 탐지:** 계정, 거래 및 장치 간의 관계를 분석하여 사기 행위 패턴 식별. * **ID 및 액세스 관리 (IAM):** 역할 및 관계에 따라 사용자 권한 및 액세스 제어 관리. * **공급망 관리:** 공급망을 통해 제품 및 자재 추적. * **인기 있는 그래프 데이터베이스 기술:** * **Neo4j:** 인기 있고 성숙하며 널리 사용되는 그래프 데이터베이스입니다. Cypher 쿼리 언어를 지원합니다. * **Amazon Neptune:** AWS의 완전 관리형 그래프 데이터베이스 서비스입니다. Gremlin 및 SPARQL 쿼리 언어를 지원합니다. * **JanusGraph:** 여러 스토리지 백엔드 (예: Cassandra, HBase, Bigtable)를 지원하는 분산형 확장 가능한 그래프 데이터베이스입니다. Gremlin 쿼리 언어를 지원합니다. * **Microsoft Azure Cosmos DB (Gremlin API 포함):** 그래프 데이터베이스 옵션을 포함하는 전역적으로 분산된 다중 모델 데이터베이스 서비스입니다. Gremlin 쿼리 언어를 지원합니다. * **Dgraph:** 분산형, 수평적으로 확장 가능하고 빠른 그래프 데이터베이스입니다. GraphQL과 유사한 쿼리 언어 (GraphQL+-)를 지원합니다. * **쿼리 언어:** * **Cypher:** Neo4j의 선언적 쿼리 언어로, 읽고 쓰기 쉽도록 설계되었습니다. * **Gremlin:** 다양한 그래프 데이터베이스 (예: Neptune, JanusGraph, Cosmos DB)와 함께 사용할 수 있는 그래프 탐색 언어입니다. * **SPARQL:** RDF (Resource Description Framework) 데이터에 대한 쿼리 언어로, 종종 시맨틱 웹 기술과 함께 사용됩니다. * **GraphQL+- (Dgraph):** Dgraph를 위한 GraphQL과 유사한 쿼리 언어입니다. **II. MCP (Metadata Computation Platform) 서버** * **정의:** MCP 서버는 데이터 자산과 관련된 메타데이터를 계산하고 관리하도록 설계된 시스템입니다. 그래프 데이터베이스의 맥락에서 그래프에 데이터를 추출, 변환 및 로드 (ETL)하는 데 중점을 둘 뿐만 아니라 그래프 자체에 대한 메타데이터 (스키마, 데이터 계보 등)를 관리하는 데 중점을 둡니다. * **목적:** * **데이터 수집:** 다양한 소스에서 그래프 데이터베이스로 데이터를 로드하는 프로세스를 자동화합니다. * **메타데이터 관리:** 그래프 내 데이터의 구조, 출처 및 품질을 추적합니다. * **데이터 검색:** 사용자가 그래프에서 사용 가능한 데이터를 쉽게 찾고 이해할 수 있도록 합니다. * **데이터 거버넌스:** 데이터 사용 및 액세스에 대한 정책 및 표준을 시행합니다. * **데이터 계보:** 소스에서 대상으로 시스템을 통해 데이터 흐름을 추적합니다. * **스키마 관리:** 노드 및 엣지 유형, 속성 및 제약 조건을 포함하여 그래프 데이터베이스의 스키마를 관리합니다. * **주요 기능:** * **데이터 추출:** 다양한 소스 (예: 관계형 데이터베이스, API, 파일)에서 데이터를 읽습니다. * **데이터 변환:** 그래프 데이터 모델에 맞게 데이터를 정리, 변환 및 보강합니다. * **데이터 로드:** 그래프 데이터베이스에 데이터를 씁니다. * **메타데이터 추출:** 데이터 소스 및 그래프 데이터베이스 자체에서 메타데이터를 추출합니다. * **메타데이터 저장:** 중앙 저장소에 메타데이터를 저장합니다. * **메타데이터 쿼리:** 메타데이터를 쿼리하기 위한 API 및 인터페이스를 제공합니다. * **워크플로 관리:** 데이터 수집 및 메타데이터 관리 작업의 실행을 오케스트레이션합니다. * **일반적인 기술 및 개념:** * **Apache Kafka:** 데이터 수집 및 이벤트 처리에 자주 사용되는 분산 스트리밍 플랫폼입니다. * **Apache Spark:** 데이터 변환 및 분석에 사용되는 분산 컴퓨팅 프레임워크입니다. * **Apache Airflow:** 데이터 파이프라인을 오케스트레이션하는 데 사용되는 워크플로 관리 플랫폼입니다. * **데이터 카탈로그:** 메타데이터에 대한 중앙 저장소로, 데이터 자산에 대한 단일 소스 진실을 제공합니다. * **데이터 계보 도구:** 시스템을 통해 데이터 흐름을 자동으로 추적하는 도구입니다. * **ETL (Extract, Transform, Load) 도구:** 데이터를 추출, 변환 및 로드하는 프로세스를 자동화하는 도구입니다. * **GraphQL API:** 사용자가 유연하고 효율적인 방식으로 메타데이터를 쿼리할 수 있도록 하는 API입니다. * **예제 MCP 서버 아키텍처 (개념적):** ``` [데이터 소스] --> [데이터 추출 (Kafka Connect, 사용자 정의 스크립트)] --> [데이터 변환 (Spark, 사용자 정의 코드)] --> [그래프 데이터베이스 (Neo4j, Neptune)] ^ | [메타데이터 추출 (데이터 소스 및 그래프 DB에서)] --> [메타데이터 저장 (데이터 카탈로그)] --> [메타데이터 API (GraphQL)] ``` **III. 그래프 DB 프로젝트를 위한 LM 고려 사항** * **데이터 모델 이해:** LM은 노드, 엣지 및 속성 유형을 포함하여 그래프 데이터 모델을 이해해야 합니다. 이는 관련 쿼리를 생성하고 결과를 해석하는 데 중요합니다. * **쿼리 생성:** LM을 사용하여 자연어 입력을 기반으로 그래프 쿼리 (예: Cypher, Gremlin)를 생성할 수 있습니다. 이를 위해서는 자연어 질문과 해당 그래프 쿼리 데이터 세트에서 LM을 훈련해야 합니다. * **데이터 보강:** LM을 사용하여 비정형 텍스트에서 정보를 추출하고 노드 또는 엣지에 속성으로 추가하여 그래프 데이터를 보강할 수 있습니다. * **관계 추출:** LM을 사용하여 비정형 텍스트에서 엔터티 간의 관계를 식별하고 그래프에 새 엣지를 만들 수 있습니다. * **지식 그래프 완성:** LM을 사용하여 기존 데이터를 기반으로 그래프에서 누락된 관계 또는 속성을 추론할 수 있습니다. * **데이터 유효성 검사:** LM을 사용하여 불일치 또는 오류를 확인하여 그래프의 데이터를 유효성 검사할 수 있습니다. * **설명 가능성:** LM을 사용하여 관계 및 관련 데이터에 대한 자연어 설명을 제공하여 그래프 쿼리 결과를 설명할 수 있습니다. * **보안 및 개인 정보 보호:** LM은 그래프에서 민감한 데이터를 사용할 때 보안 및 개인 정보 보호 고려 사항을 인식해야 합니다. 여기에는 데이터 마스킹 또는 익명화 및 액세스 제어 정책 시행이 포함됩니다. **IV. 그래프 DB 프로젝트를 시작할 때 물어봐야 할 주요 질문** * **그래프 데이터베이스로 해결하려는 문제는 무엇입니까?** (사용 사례를 명확하게 정의하십시오) * **그래프를 채우는 데 사용할 데이터 소스는 무엇입니까?** * **데이터 모델은 무엇입니까?** (노드, 엣지, 속성) * **사용할 쿼리 언어는 무엇입니까?** * **성능 요구 사항은 무엇입니까?** * **보안 및 개인 정보 보호 요구 사항은 무엇입니까?** * **데이터 수집, 변환 및 메타데이터 관리 (MCP)에 사용할 도구 및 기술은 무엇입니까?** * **그래프 데이터베이스를 다른 시스템과 어떻게 통합할 것입니까?** * **프로젝트에서 LM을 어떻게 사용할 것입니까?** (쿼리 생성, 데이터 보강 등) **V. 통합을 위한 LM 특정 고려 사항** * **API 액세스:** LM은 그래프 데이터베이스 및 MCP 서버에 어떻게 액세스합니까? (예: REST API, GraphQL API, 데이터베이스 드라이버) * **데이터 형식:** LM과 그래프 데이터베이스/MCP 서버 간의 통신에 사용할 데이터 형식은 무엇입니까? (예: JSON, CSV, RDF) * **훈련 데이터:** LM에 사용할 수 있는 훈련 데이터는 무엇입니까? (예: 자연어 질문과 해당 그래프 쿼리, 데이터 보강 예제) * **평가 지표:** LM의 성능을 어떻게 평가할 것입니까? (예: 쿼리 생성 정확도, 데이터 보강 품질) * **확장성:** LM은 대량의 데이터와 쿼리를 처리하도록 어떻게 확장됩니까? * **모니터링 및 로깅:** LM을 어떻게 모니터링하고 로깅합니까? **VI. 예제 시나리오: 고객 지원을 위한 지식 그래프 구축** * **목표:** 고객, 제품, 문제 및 솔루션을 연결하는 지식 그래프를 에이전트에게 제공하여 고객 지원을 개선합니다. * **데이터 소스:** * CRM 시스템 (고객 데이터) * 제품 카탈로그 * 지원 티켓 * 지식 베이스 기사 * **데이터 모델:** * 노드: `Customer`, `Product`, `Issue`, `Solution` * 엣지: `PURCHASED`, `REPORTED`, `RELATED_TO`, `RESOLVED_BY` * **MCP 서버:** 다양한 소스에서 데이터를 수집하고 그래프 데이터 모델로 변환하여 그래프 데이터베이스에 로드하는 데 사용됩니다. 또한 데이터 소스 및 그래프 자체에 대한 메타데이터를 추출하는 데 사용됩니다. * **LM 사용 사례:** * **쿼리 생성:** 지원 에이전트가 "제품 X를 구매한 고객이 보고한 일반적인 문제는 무엇입니까?"와 같은 자연어 질문을 하고 LM이 해당 Cypher 쿼리를 생성하도록 허용합니다. * **데이터 보강:** LM을 사용하여 지원 티켓을 분석하고 근본 원인 및 재현 단계와 같은 문제에 대한 주요 정보를 추출합니다. 이 정보를 `Issue` 노드에 속성으로 추가합니다. * **관계 추출:** LM을 사용하여 지원 티켓 및 지식 베이스 기사의 내용을 기반으로 문제와 솔루션 간의 관계를 식별합니다. `Issue` 및 `Solution` 노드 사이에 새 `RELATED_TO` 엣지를 만듭니다. **VII. 결론** 그래프 데이터베이스는 데이터 간의 복잡한 관계를 모델링하고 쿼리하는 강력한 방법을 제공합니다. MCP 서버는 그래프 데이터베이스와 관련된 데이터 수집, 변환 및 메타데이터를 관리하는 데 필수적입니다. 관련된 주요 개념 및 기술을 이해하고 프로젝트에서 LM의 역할을 신중하게 고려함으로써 그래프 데이터베이스를 성공적으로 활용하여 광범위한 문제를 해결할 수 있습니다. 사용 사례를 명확하게 정의하고, 잘 정의된 데이터 모델을 설계하고, 작업에 적합한 도구 및 기술을 선택하는 데 집중하십시오.

mcp-server-collector MCP server

mcp-server-collector MCP server

Mirror of

duckduckgo-web-search MCP Server

duckduckgo-web-search MCP Server

DuckDuckGo Web Search MCP Server - A simple web search implementation for Claude Desktop using DuckDuckGo API

Laravel Artisan MCP Server

Laravel Artisan MCP Server

Claude 및 다른 MCP 클라이언트를 통해 Laravel Artisan 명령을 안전하게 실행할 수 있도록 하는 모델 컨텍스트 프로토콜(MCP) 서버.

Setup

Setup

An MCP Server for Ableton Live

Awesome-Medical-MCP-Servers

Awesome-Medical-MCP-Servers

의료 MCP 서버 모음.

MCP TTS Say

MCP TTS Say

MCP Server Tool for Text To Speech

Letta MCP Server

Letta MCP Server

Mirror of

testmcpgithubdemo

testmcpgithubdemo

created from MCP server demo

Model Context Protocol Server

Model Context Protocol Server

FastAPI를 사용한 모델 컨텍스트 프로토콜 서버 구현

MCPE Alpha Server for Pterodactyl

MCPE Alpha Server for Pterodactyl

MCPE 알파 서버용 코어 (Pterodactyl 패널 사용)

Selector_MCP_Server

Selector_MCP_Server

Selector AI MCP Server

ezmcp

ezmcp

Easy-to-use MCP server framework specialized for SSE.

Financial Analysis MCP Server

Financial Analysis MCP Server

Anthropic 모델 컨텍스트 프로토콜 (MCP) 서버 (alphavantage.com 및 financialmodellingprep.com API 통합을 통한 금융 분석용)

MCP File Finder

MCP File Finder

MCP server on Python