From 31b5ea673c7d618e5818b86ad0cf4ea109b04799 Mon Sep 17 00:00:00 2001 From: Max Rydahl Andersen Date: Mon, 27 Jan 2025 20:31:26 +0100 Subject: [PATCH 001/189] add quarkus server framework and available mcp servers --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 054758bc..c2efff15 100644 --- a/README.md +++ b/README.md @@ -159,6 +159,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [hannesrudolph/sqlite-explorer-fastmcp-mcp-server](https://github.com/hannesrudolph/sqlite-explorer-fastmcp-mcp-server) 🐍 🏠 - An MCP server that provides safe, read-only access to SQLite databases through Model Context Protocol (MCP). This server is built with the FastMCP framework, which enables LLMs to explore and query SQLite databases with built-in safety features and query validation. - [sirmews/mcp-pinecone](https://github.com/sirmews/mcp-pinecone) 🐍 ☁ - Pinecone integration with vector search capabilities - [runekaagaard/mcp-alchemy](https://github.com/runekaagaard/mcp-alchemy) 🐍 🏠 - Universal SQLAlchemy-based database integration supporting PostgreSQL, MySQL, MariaDB, SQLite, Oracle, MS SQL Server and many more databases. Features schema and relationship inspection, and large dataset analysis capabilities. +- [mcp-server-jdbc](https://github.com/quarkiverse/quarkus-mcp-servers/tree/main/jdbc) ☕ 🏠 - Connect to any JDBC-compatible database and query, insert, update, delete, and more. ### 💻 Developer Tools @@ -193,6 +194,7 @@ Provides direct access to local file systems with configurable permissions. Enab - [mark3labs/mcp-filesystem-server](https://github.com/mark3labs/mcp-filesystem-server) 🏎 🏠 - Golang implementation for local file system access. - [mamertofabian/mcp-everything-search](https://github.com/mamertofabian/mcp-everything-search) 🐍 🏠 🪟 - Fast Windows file search using Everything SDK - [cyberchitta/llm-context.py](https://github.com/cyberchitta/llm-context.py) 🐍 🏠 - Share code context with LLMs via MCP or clipboard +- [filesystem@quarkiverse/quarkus-mcp-servers](https://github.com/quarkiverse/quarkus-mcp-servers/tree/main/filesystem) ☕ 🏠 - A filesystem allowing for browsing and editing files implemented in Java using Quarkus. Available as jar or native image. ### 💰 Finance & Fintech @@ -322,6 +324,7 @@ Interact with Git repositories and version control platforms. Enables repository - [@pskill9/hn-server](https://github.com/pskill9/hn-server) - 📇 ☁ Parses the HTML content from news.ycombinator.com (Hacker News) and provides structured data for different types of stories (top, new, ask, show, jobs). - [@mediar-ai/screenpipe](https://github.com/mediar-ai/screenpipe) - 🎖 🊀 🏠 🍎 Local-first system capturing screen/audio with timestamped indexing, SQL/embedding storage, semantic search, LLM-powered history analysis, and event-triggered actions - enables building context-aware AI agents through a NextJS plugin ecosystem. - [akseyh/bear-mcp-server](https://github.com/akseyh/bear-mcp-server) - Allows the AI to read from your Bear Notes (macOS only) +- [mcp-server-jfx](https://github.com/quarkiverse/quarkus-mcp-servers/tree/main/jfx) ☕ 🏠 - Draw on JavaFX canvas. ## Frameworks @@ -339,6 +342,7 @@ Interact with Git repositories and version control platforms. Enables repository - [salty-flower/ModelContextProtocol.NET](https://github.com/salty-flower/ModelContextProtocol.NET) #⃣ 🏠 - A C# SDK for building MCP servers on .NET 9 with NativeAOT compatibility ⚡ 🔌 - [spring-ai-mcp](https://github.com/spring-projects-experimental/spring-ai-mcp) ☕ 🌱 - Java SDK and Spring Framework integration for building MCP client and MCP servers with various, plugable, transport options. - [@marimo-team/codemirror-mcp](https://github.com/marimo-team/codemirror-mcp) - CodeMirror extension that implements the Model Context Protocol (MCP) for resource mentions and prompt commands. +- [quarkus-mcp-server](https://github.com/quarkiverse/quarkus-mcp-server) ☕ - Java SDK for building MCP servers using Quarkus. ## Utilities From 2043d34fafd57531ae8562d4d94816971136fb51 Mon Sep 17 00:00:00 2001 From: Sujay Jayakar Date: Wed, 5 Mar 2025 09:37:51 -0500 Subject: [PATCH 002/189] Add Convex MCP server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f80896b2..e89ad707 100644 --- a/README.md +++ b/README.md @@ -146,6 +146,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [LucasHild/mcp-server-bigquery](https://github.com/LucasHild/mcp-server-bigquery) 🐍 ☁ - BigQuery database integration with schema inspection and query capabilities - [ergut/mcp-bigquery-server](https://github.com/ergut/mcp-bigquery-server) 📇 ☁ - Server implementation for Google BigQuery integration that enables direct BigQuery database access and querying capabilities - [ClickHouse/mcp-clickhouse](https://github.com/ClickHouse/mcp-clickhouse) 🐍 ☁ - ClickHouse database integration with schema inspection and query capabilities +- [get-convex/convex-backend](https://stack.convex.dev/convex-mcp-server) 📇 ☁ - Convex database integration to introspect tables, functions, and run oneoff queries ([Source](https://github.com/get-convex/convex-backend/blob/main/npm-packages/convex/src/cli/mcp.ts)) - [@fireproof-storage/mcp-database-server](https://github.com/fireproof-storage/mcp-database-server) 📇 ☁ - Fireproof ledger database with multi-user sync - [designcomputer/mysql_mcp_server](https://github.com/designcomputer/mysql_mcp_server) 🐍 🏠 - MySQL database integration with configurable access controls, schema inspection, and comprehensive security guidelines - [f4ww4z/mcp-mysql-server](https://github.com/f4ww4z/mcp-mysql-server) 🐍 🏠 - Node.js-based MySQL database integration that provides secure MySQL database operations From 760d6700bdeddec7c5586c70aef361e25a61259b Mon Sep 17 00:00:00 2001 From: sykp241095 Date: Fri, 7 Mar 2025 13:54:44 +0800 Subject: [PATCH 003/189] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c2fdf9b0..be0fd9a7 100644 --- a/README.md +++ b/README.md @@ -144,6 +144,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [cr7258/elasticsearch-mcp-server](https://github.com/cr7258/elasticsearch-mcp-server) 🐍 🏠 - MCP Server implementation that provides Elasticsearch interaction - [domdomegg/airtable-mcp-server](https://github.com/domdomegg/airtable-mcp-server) 📇 🏠 - Airtable database integration with schema inspection, read and write capabilities - [LucasHild/mcp-server-bigquery](https://github.com/LucasHild/mcp-server-bigquery) 🐍 ☁ - BigQuery database integration with schema inspection and query capabilities +- [c4pt0r/mcp-server-tidb](https://github.com/c4pt0r/mcp-server-tidb) 🐍 ☁ - TiDB database integration with schema inspection and query capabilities - [ergut/mcp-bigquery-server](https://github.com/ergut/mcp-bigquery-server) 📇 ☁ - Server implementation for Google BigQuery integration that enables direct BigQuery database access and querying capabilities - [ClickHouse/mcp-clickhouse](https://github.com/ClickHouse/mcp-clickhouse) 🐍 ☁ - ClickHouse database integration with schema inspection and query capabilities - [@fireproof-storage/mcp-database-server](https://github.com/fireproof-storage/mcp-database-server) 📇 ☁ - Fireproof ledger database with multi-user sync From e631ef7dd0798d9b8971857392574d486686bfc2 Mon Sep 17 00:00:00 2001 From: sykp241095 Date: Fri, 7 Mar 2025 13:59:39 +0800 Subject: [PATCH 004/189] Update README-zh.md --- README-zh.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README-zh.md b/README-zh.md index 12b8d201..4be6015d 100644 --- a/README-zh.md +++ b/README-zh.md @@ -143,6 +143,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [cr7258/elasticsearch-mcp-server](https://github.com/cr7258/elasticsearch-mcp-server) 🐍 🏠 - 集成 Elasticsearch 的 MCP 服务噚实现 - [domdomegg/airtable-mcp-server](https://github.com/domdomegg/airtable-mcp-server) 📇 🏠 - Airtable 数据库集成具有架构检查、读写功胜 - [LucasHild/mcp-server-bigquery](https://github.com/LucasHild/mcp-server-bigquery) 🐍 ☁ - BigQuery 数据库集成了架构检查和查询功胜 +- [c4pt0r/mcp-server-tidb](https://github.com/c4pt0r/mcp-server-tidb) 🐍 ☁ - TiDB 数据库集成包括衚结构的建立 DDL 和 SQL 的执行 - [ergut/mcp-bigquery-server](https://github.com/ergut/mcp-bigquery-server) 📇 ☁ - Google BigQuery 集成的服务噚实现可实现盎接 BigQuery 数据库访问和查询功胜 - [ClickHouse/mcp-clickhouse](https://github.com/ClickHouse/mcp-clickhouse) 🐍 ☁ - ClickHouse 数据库集成支持数据库架构检查和查询功胜 - [@fireproof-storage/mcp-database-server](https://github.com/fireproof-storage/mcp-database-server) 📇 ☁ - Fireproof 分垃匏莊本数据库支持倚甚户数据同步 From 379a56a4800e9d05f148a80d25572eccd574713e Mon Sep 17 00:00:00 2001 From: sykp241095 Date: Fri, 7 Mar 2025 14:01:31 +0800 Subject: [PATCH 005/189] Update README-ja.md --- README-ja.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README-ja.md b/README-ja.md index 1d416291..7e99dd6b 100644 --- a/README-ja.md +++ b/README-ja.md @@ -94,6 +94,7 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [cr7258/elasticsearch-mcp-server](https://github.com/cr7258/elasticsearch-mcp-server) 🐍 🏠 - MCPサヌバヌの実装で、Elasticsearchずのむンタラクションを提䟛したす - [domdomegg/airtable-mcp-server](https://github.com/domdomegg/airtable-mcp-server) 📇 🏠 - スキヌマ怜査、読み取り/曞き蟌み機胜を備えた Airtable デヌタベヌス統合 - [LucasHild/mcp-server-bigquery](https://github.com/LucasHild/mcp-server-bigquery) 🐍 ☁ - スキヌマ怜査ずク゚リ機胜を備えたBigQueryデヌタベヌス統合 +- [c4pt0r/mcp-server-tidb](https://github.com/c4pt0r/mcp-server-tidb) 🐍 ☁ - TiDB デヌタベヌスの統合、テヌブル構造の䜜成DDLおよび SQL の実行 - [ergut/mcp-bigquery-server](https://github.com/ergut/mcp-bigquery-server) 📇 ☁ - Google BigQuery統合のためのサヌバヌ実装で、盎接的なBigQueryデヌタベヌスアクセスずク゚リ機胜を提䟛 - [designcomputer/mysql_mcp_server](https://github.com/designcomputer/mysql_mcp_server) 🐍 🏠 - 構成可胜なアクセス制埡、スキヌマ怜査、包括的なセキュリティガむドラむンを備えたMySQLデヌタベヌス統合 - [@modelcontextprotocol/server-postgres](https://github.com/modelcontextprotocol/servers/tree/main/src/postgres) 📇 🏠 - スキヌマ怜査ずク゚リ機胜を備えたPostgreSQLデヌタベヌス統合 From f5e858928d0fac8b5eb62e26573adccbf27cd0f6 Mon Sep 17 00:00:00 2001 From: Tim Wang Date: Fri, 7 Mar 2025 20:11:00 +1100 Subject: [PATCH 006/189] Add xcodebuild mcp server tool --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c2fdf9b0..5a59de73 100644 --- a/README.md +++ b/README.md @@ -184,6 +184,8 @@ Tools and integrations that enhance the development workflow and environment man - [@lamemind/mcp-server-multiverse](https://github.com/lamemind/mcp-server-multiverse) 📇 🏠 🛠 - A middleware server that enables multiple isolated instances of the same MCP servers to coexist independently with unique namespaces and configurations. - [@j4c0bs/mcp-server-sql-analyzer](https://github.com/j4c0bs/mcp-server-sql-analyzer) 🐍 - MCP server that provides SQL analysis, linting, and dialect conversion using [SQLGlot](https://github.com/tobymao/sqlglot) - [@haris-musa/excel-mcp-server](https://github.com/haris-musa/excel-mcp-server) 🐍 🏠 - An Excel manipulation server providing workbook creation, data operations, formatting, and advanced features (charts, pivot tables, formulae). +- [xcodebuild](https://github.com/ShenghaiWang/xcodebuild) 🍎 Build iOS Xcode workspace/project and feed back errors to llm. + ### 🧮 Data Science Tools From baf36fe783b5f9d6f33e055c2497272cceb8a5cc Mon Sep 17 00:00:00 2001 From: Boris Besemer Date: Fri, 7 Mar 2025 12:42:38 +0100 Subject: [PATCH 007/189] feat: add graphql mcp server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c2fdf9b0..cb3edad1 100644 --- a/README.md +++ b/README.md @@ -342,6 +342,7 @@ Interact with Git repositories and version control platforms. Enables repository - [ws-mcp](https://github.com/nick1udwig/ws-mcp) - Wrap MCP servers with a WebSocket (for use with [kitbitz](https://github.com/nick1udwig/kibitz)) - [AbdelStark/bitcoin-mcp](https://github.com/AbdelStark/bitcoin-mcp) - ₿ A Model Context Protocol (MCP) server that enables AI models to interact with Bitcoin, allowing them to generate keys, validate addresses, decode transactions, query the blockchain, and more. - [rember/rember-mcp](https://github.com/rember/rember-mcp) 📇 🏠 - Create spaced repetition flashcards in [Rember](https://rember.com) to remember anything you learn in your chats. +- [blurrah/mcp-graphql](https://github.com/blurrah/mcp-graphql) 📇 ☁ - Allows the AI to query GraphQL servers ## Frameworks From 5af0df6ef93c534239d6b3ede0c33dabf6863b18 Mon Sep 17 00:00:00 2001 From: nwiizo Date: Sun, 9 Mar 2025 00:30:45 +0900 Subject: [PATCH 008/189] Fix tfmcp description: change from Chinese to English --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c2fdf9b0..77a2c208 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,7 @@ Cloud platform service integration. Enables management and interaction with clou - [@flux159/mcp-server-kubernetes](https://github.com/Flux159/mcp-server-kubernetes) - 📇 ☁/🏠 Typescript implementation of Kubernetes cluster operations for pods, deployments, services. - [@manusa/Kubernetes MCP Server](https://github.com/manusa/kubernetes-mcp-server) - 🏎 🏠 A powerful Kubernetes MCP server with additional support for OpenShift. Besides providing CRUD operations for **any** Kubernetes resource, this server provides specialized tools to interact with your cluster. - [johnneerdael/netskope-mcp](https://github.com/johnneerdael/netskope-mcp) 🔒 ☁ - An MCP to give access to all Netskope Private Access components within a Netskope Private Access environments including detailed setup information and LLM examples on usage. +- [nwiizo/tfmcp](https://github.com/nwiizo/tfmcp) - 🊀 🏠 - A Terraform MCP server allowing AI assistants to manage and operate Terraform environments, enabling reading configurations, analyzing plans, applying configurations, and managing Terraform state. ### 🖥 Command Line From a90fc87fd9528413010da9ec321688b2193fd340 Mon Sep 17 00:00:00 2001 From: hiromitsusasaki Date: Sun, 9 Mar 2025 22:38:58 +0900 Subject: [PATCH 009/189] feat: add mcp to allow LLMs to manage bookmarks and collections at Raindrop.io --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index abc97f40..c475a964 100644 --- a/README.md +++ b/README.md @@ -349,6 +349,7 @@ Interact with Git repositories and version control platforms. Enables repository - [ws-mcp](https://github.com/nick1udwig/ws-mcp) - Wrap MCP servers with a WebSocket (for use with [kitbitz](https://github.com/nick1udwig/kibitz)) - [AbdelStark/bitcoin-mcp](https://github.com/AbdelStark/bitcoin-mcp) - ₿ A Model Context Protocol (MCP) server that enables AI models to interact with Bitcoin, allowing them to generate keys, validate addresses, decode transactions, query the blockchain, and more. - [rember/rember-mcp](https://github.com/rember/rember-mcp) 📇 🏠 - Create spaced repetition flashcards in [Rember](https://rember.com) to remember anything you learn in your chats. +- [hiromitsusasaki/raindrop-io-mcp-server](https://github.com/hiromitsusasaki/raindrop-io-mcp-server) 📇 ☁ - An integration that allows LLMs to interact with Raindrop.io bookmarks using the Model Context Protocol (MCP). ## Frameworks From 61a6d21ed52b300ec0cac97eee998f1b87f6959e Mon Sep 17 00:00:00 2001 From: Alex Strick van Linschoten Date: Mon, 10 Mar 2025 09:49:58 +0100 Subject: [PATCH 010/189] Add ZenML Added the ZenML MCP server. More context in [our blog post](https://www.zenml.io/blog/chat-with-your-ml-pipelines-introducing-the-zenml-mcp-server). --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index abc97f40..58f9b42e 100644 --- a/README.md +++ b/README.md @@ -198,6 +198,7 @@ Integrations and tools designed to simplify data exploration, analysis and enhan - [ChronulusAI/chronulus-mcp](https://github.com/ChronulusAI/chronulus-mcp) 🐍 ☁ - Predict anything with Chronulus AI forecasting and prediction agents. - [zcaceres/markdownify-mcp](https://github.com/zcaceres/markdownify-mcp) 📇 🏠 - An MCP server to convert almost any file or web content into Markdown - [@reading-plus-ai/mcp-server-data-exploration](https://github.com/reading-plus-ai/mcp-server-data-exploration) 🐍 ☁ - Enables autonomous data exploration on .csv-based datasets, providing intelligent insights with minimal effort. +- [zenml-io/mcp-zenml](https://github.com/zenml-io/mcp-zenml) | 📊 - An MCP server to connect with your [ZenML](https://www.zenml.io) MLOps and LLMOps pipelines ### 📂 File Systems From 570e145612afd16a43c0fc20ad64fa02721de902 Mon Sep 17 00:00:00 2001 From: pab1it0 Date: Mon, 10 Mar 2025 17:22:30 +0200 Subject: [PATCH 011/189] Add adx-mcp-server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index abc97f40..2d918dab 100644 --- a/README.md +++ b/README.md @@ -170,6 +170,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [hannesrudolph/sqlite-explorer-fastmcp-mcp-server](https://github.com/hannesrudolph/sqlite-explorer-fastmcp-mcp-server) 🐍 🏠 - An MCP server that provides safe, read-only access to SQLite databases through Model Context Protocol (MCP). This server is built with the FastMCP framework, which enables LLMs to explore and query SQLite databases with built-in safety features and query validation. - [sirmews/mcp-pinecone](https://github.com/sirmews/mcp-pinecone) 🐍 ☁ - Pinecone integration with vector search capabilities - [runekaagaard/mcp-alchemy](https://github.com/runekaagaard/mcp-alchemy) 🐍 🏠 - Universal SQLAlchemy-based database integration supporting PostgreSQL, MySQL, MariaDB, SQLite, Oracle, MS SQL Server and many more databases. Features schema and relationship inspection, and large dataset analysis capabilities. +- [pab1it0/adx-mcp-server](https://github.com/pab1it0/adx-mcp-server) 🐍 ☁ - Query and analyze Azure Data Explorer databases ### 💻 Developer Tools From 35d4b4c8661693ffdce212b0538f99b45053c9f3 Mon Sep 17 00:00:00 2001 From: Sriram Subramanian Date: Mon, 10 Mar 2025 12:40:09 -0700 Subject: [PATCH 012/189] Add Nile MCP server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index abc97f40..1b79f9dc 100644 --- a/README.md +++ b/README.md @@ -166,6 +166,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [kiliczsh/mcp-mongo-server](https://github.com/kiliczsh/mcp-mongo-server) 📇 🏠 - A Model Context Protocol Server for MongoDB - [KashiwaByte/vikingdb-mcp-server](https://github.com/KashiwaByte/vikingdb-mcp-server) 🐍 ☁ - VikingDB integration with collection and index introduction, vector store and search capabilities. - [neo4j-contrib/mcp-neo4j](https://github.com/neo4j-contrib/mcp-neo4j) 🐍 🏠 - Model Context Protocol with Neo4j +- [niledatabase/nile-mcp-server](https://github.com/niledatabase/nile-mcp-server) MCP server for Nile's Postgres platform - Manage and query Postgres databases, tenants, users, auth using LLMs - [isaacwasserman/mcp-snowflake-server](https://github.com/isaacwasserman/mcp-snowflake-server) 🐍 ☁ - Snowflake integration implementing read and (optional) write operations as well as insight tracking - [hannesrudolph/sqlite-explorer-fastmcp-mcp-server](https://github.com/hannesrudolph/sqlite-explorer-fastmcp-mcp-server) 🐍 🏠 - An MCP server that provides safe, read-only access to SQLite databases through Model Context Protocol (MCP). This server is built with the FastMCP framework, which enables LLMs to explore and query SQLite databases with built-in safety features and query validation. - [sirmews/mcp-pinecone](https://github.com/sirmews/mcp-pinecone) 🐍 ☁ - Pinecone integration with vector search capabilities From 1108ff006bb6e0950c22a53a73a621439cf44aaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Boschi?= Date: Tue, 11 Mar 2025 11:20:01 +0100 Subject: [PATCH 013/189] Add vectorize server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b5807c01..49652624 100644 --- a/README.md +++ b/README.md @@ -282,6 +282,7 @@ Access and analyze application monitoring data. Enables AI models to review erro - [devflowinc/trieve](https://github.com/devflowinc/trieve/tree/main/clients/mcp-server) 🎖📇☁🏠 - Crawl, embed, chunk, search, and retrieve information from datasets through [Trieve](https://trieve.ai) - [nickclyde/duckduckgo-mcp-server](https://github.com/nickclyde/duckduckgo-mcp-server) 🐍 ☁ - Web search using DuckDuckGo - [zhsama/duckduckgo-mcp-server](https://github.com/zhsama/duckduckgo-mpc-server/) 📇 🏠 ☁ - This is a TypeScript-based MCP server that provides DuckDuckGo search functionality. +- [vectorize-io/vectorize-mcp-server](https://github.com/vectorize-io/vectorize-mcp-server/) ☁ - [Vectorize](https://vectorize.io) MCP server for advanced retrieval, Private Deep Research, Anything-to-Markdown file extraction and text chunking. ### 🔒 Security From d0f85ad8081c3d65758816d66670c5344dfe5b98 Mon Sep 17 00:00:00 2001 From: QDS Date: Tue, 11 Mar 2025 18:14:19 +0100 Subject: [PATCH 014/189] Update README.md Added Bankless Onchain MCP --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b5807c01..bc5a3fc9 100644 --- a/README.md +++ b/README.md @@ -224,6 +224,7 @@ Financial data access and cryptocurrency market information. Enables querying re - [berlinbra/alpha-vantage-mcp](https://github.com/berlinbra/alpha-vantage-mcp) 🐍 ☁ - Alpha Vantage API integration to fetch both stock and crypto information - [ferdousbhai/tasty-agent](https://github.com/ferdousbhai/tasty-agent) 🐍 ☁ - Tastyworks API integration to handle trading activities on Tastytrade - [ferdousbhai/investor-agent](https://github.com/ferdousbhai/investor-agent) 🐍 ☁ - Yahoo Finance integration to fetch stock market data including options recommendations +- [bankless/onchain-mcp](https://github.com/Bankless/onchain-mcp/) 📇☁ - Bankless Onchain API to interact with smart contracts, query transaction and token information ### 🧠 Knowledge & Memory From 8ffbe44b8c0d5b291906942ef7337f09f8ca7209 Mon Sep 17 00:00:00 2001 From: vcart Date: Tue, 11 Mar 2025 23:16:14 -0400 Subject: [PATCH 015/189] Add EVM MCP Server to Finance & Fintech section --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b5807c01..ba761225 100644 --- a/README.md +++ b/README.md @@ -224,6 +224,7 @@ Financial data access and cryptocurrency market information. Enables querying re - [berlinbra/alpha-vantage-mcp](https://github.com/berlinbra/alpha-vantage-mcp) 🐍 ☁ - Alpha Vantage API integration to fetch both stock and crypto information - [ferdousbhai/tasty-agent](https://github.com/ferdousbhai/tasty-agent) 🐍 ☁ - Tastyworks API integration to handle trading activities on Tastytrade - [ferdousbhai/investor-agent](https://github.com/ferdousbhai/investor-agent) 🐍 ☁ - Yahoo Finance integration to fetch stock market data including options recommendations +- [mcpdotdirect/evm-mcp-server](https://github.com/mcpdotdirect/evm-mcp-server) 📇 ☁ - Comprehensive blockchain services for 30+ EVM networks, supporting native tokens, ERC20, NFTs, smart contracts, transactions, and ENS resolution. ### 🧠 Knowledge & Memory From c489ea7ab5ce3267bd2471e8c888d0794821c8c3 Mon Sep 17 00:00:00 2001 From: vcart Date: Tue, 11 Mar 2025 23:25:12 -0400 Subject: [PATCH 016/189] Add Template MCP Server to Frameworks section --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b5807c01..2d674449 100644 --- a/README.md +++ b/README.md @@ -378,6 +378,7 @@ Interact with Git repositories and version control platforms. Enables repository - [rectalogic/langchain-mcp](https://github.com/rectalogic/langchain-mcp) 🐍 - Provides MCP tool calling support in LangChain, allowing for the integration of MCP tools into LangChain workflows. - [salty-flower/ModelContextProtocol.NET](https://github.com/salty-flower/ModelContextProtocol.NET) #⃣ 🏠 - A C# SDK for building MCP servers on .NET 9 with NativeAOT compatibility ⚡ 🔌 - [spring-ai-mcp](https://github.com/spring-projects-experimental/spring-ai-mcp) ☕ 🌱 - Java SDK and Spring Framework integration for building MCP client and MCP servers with various, plugable, transport options. +- [Template MCP Server](https://github.com/mcpdotdirect/template-mcp-server) 📇 - A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure - [@marimo-team/codemirror-mcp](https://github.com/marimo-team/codemirror-mcp) - CodeMirror extension that implements the Model Context Protocol (MCP) for resource mentions and prompt commands. - [mcp-agent](https://github.com/lastmile-ai/mcp-agent) 🀖 🔌 - Build effective agents with MCP servers using simple, composable patterns. From 2807216ee99971d2754f7968b6c132837cb873bc Mon Sep 17 00:00:00 2001 From: Victor Kiselev Date: Wed, 12 Mar 2025 11:34:26 +0100 Subject: [PATCH 017/189] Update README.md added centralmind/gateway - MCP API generator --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b5807c01..7b6c3d1e 100644 --- a/README.md +++ b/README.md @@ -148,6 +148,7 @@ Provides access to customer profiles inside of customer data platforms Secure database access with schema inspection capabilities. Enables querying and analyzing data with configurable security controls including read-only access. +- [centralmind/gateway](https://github.com/centralmind/gateway) 🏎 🏠 🍎 🪟 - MCP and MCP SSE Server that automatically generate API based on database schema and data. Supports PostgreSQL, Clickhouse, MySQL, Snowflake, BigQuery, Supabase - [cr7258/elasticsearch-mcp-server](https://github.com/cr7258/elasticsearch-mcp-server) 🐍 🏠 - MCP Server implementation that provides Elasticsearch interaction - [domdomegg/airtable-mcp-server](https://github.com/domdomegg/airtable-mcp-server) 📇 🏠 - Airtable database integration with schema inspection, read and write capabilities - [LucasHild/mcp-server-bigquery](https://github.com/LucasHild/mcp-server-bigquery) 🐍 ☁ - BigQuery database integration with schema inspection and query capabilities From 554aad18c963ed99d979efad40442cc1022f2aea Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Thu, 13 Mar 2025 00:29:35 +1100 Subject: [PATCH 018/189] chore(docs): added opik --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b5807c01..abb6efda 100644 --- a/README.md +++ b/README.md @@ -178,6 +178,7 @@ Secure database access with schema inspection capabilities. Enables querying and Tools and integrations that enhance the development workflow and environment management. +- [Coment-ML/Opik-MCP](https://github.com/comet-ml/opik-mcp) 🎖 📇 ☁ 🏠 - Talk to your LLM observability, traces and monitoring captured by Opik using natural language. - [GLips/Figma-Context-MCP](https://github.com/GLips/Figma-Context-MCP) 📇 🏠 - Provide coding agents direct access to Figma data to help them one-shot design implementation. - [QuantGeekDev/docker-mcp](https://github.com/QuantGeekDev/docker-mcp) 🏎 🏠 - Docker container management and operations through MCP - [zcaceres/fetch-mcp](https://github.com/zcaceres/fetch-mcp) 📇 🏠 - An MCP server to flexibly fetch JSON, text, and HTML data From a40deded97008b7aee9ed874105b0161143c67c2 Mon Sep 17 00:00:00 2001 From: bright8192 Date: Thu, 13 Mar 2025 17:37:42 +0800 Subject: [PATCH 019/189] add-esxi-mcp-server --- README-zh.md | 2 ++ README.md | 1 + 2 files changed, 3 insertions(+) diff --git a/README-zh.md b/README-zh.md index c4bcff23..ed6c49a4 100644 --- a/README-zh.md +++ b/README-zh.md @@ -106,6 +106,8 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [Kubernetes MCP Server](https://github.com/strowk/mcp-k8s-go) - 🏎 ☁ 通过 MCP 操䜜 Kubernetes 集矀 - [@flux159/mcp-server-kubernetes](https://github.com/Flux159/mcp-server-kubernetes) - 📇 ☁/🏠 䜿甚 Typescript 实现 Kubernetes 集矀䞭针对 pod、郚眲、服务的操䜜。 - [johnneerdael/netskope-mcp](https://github.com/johnneerdael/netskope-mcp) 🔒 ☁ - 提䟛对 Netskope Private Access 环境䞭所有组件的访问权限包含诊细的讟眮信息和 LLM 䜿甚瀺䟋。 +- [bright8192/esxi-mcp-server](https://github.com/bright8192/esxi-mcp-server) 🐍 🔒 ☁ - 提䟛对 VMware ESXi/vCenter 管理服务噚提䟛简单的 REST API 接口来管理虚拟机。 + ### 🖥 Command Line diff --git a/README.md b/README.md index f6da4b6a..94cb9630 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,7 @@ Cloud platform service integration. Enables management and interaction with clou - [@flux159/mcp-server-kubernetes](https://github.com/Flux159/mcp-server-kubernetes) - 📇 ☁/🏠 Typescript implementation of Kubernetes cluster operations for pods, deployments, services. - [@manusa/Kubernetes MCP Server](https://github.com/manusa/kubernetes-mcp-server) - 🏎 🏠 A powerful Kubernetes MCP server with additional support for OpenShift. Besides providing CRUD operations for **any** Kubernetes resource, this server provides specialized tools to interact with your cluster. - [johnneerdael/netskope-mcp](https://github.com/johnneerdael/netskope-mcp) 🔒 ☁ - An MCP to give access to all Netskope Private Access components within a Netskope Private Access environments including detailed setup information and LLM examples on usage. +- [bright8192/esxi-mcp-server](https://github.com/bright8192/esxi-mcp-server) 🐍 🔒 ☁ - A VMware ESXi/vCenter management server based on MCP (Model Control Protocol), providing simple REST API interfaces for virtual machine management. ### 🖥 Command Line From 501fa0df9df323d029a5866fedb5e2bf50e96e93 Mon Sep 17 00:00:00 2001 From: Tianzhou Date: Thu, 13 Mar 2025 18:46:01 +0800 Subject: [PATCH 020/189] chore: add dhbub MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [bytebase/dhhub](https://github.com/bytebase/dbhub) 📇 🏠 – Universal database MCP server supporting mainstream databases. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f6da4b6a..d389145c 100644 --- a/README.md +++ b/README.md @@ -174,6 +174,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [sirmews/mcp-pinecone](https://github.com/sirmews/mcp-pinecone) 🐍 ☁ - Pinecone integration with vector search capabilities - [runekaagaard/mcp-alchemy](https://github.com/runekaagaard/mcp-alchemy) 🐍 🏠 - Universal SQLAlchemy-based database integration supporting PostgreSQL, MySQL, MariaDB, SQLite, Oracle, MS SQL Server and many more databases. Features schema and relationship inspection, and large dataset analysis capabilities. - [neondatabase/mcp-server-neon](https://github.com/neondatabase/mcp-server-neon) 📇 ☁ — An MCP Server for creating and managing Postgres databases using Neon Serverless Postgres +- [bytebase/dhhub](https://github.com/bytebase/dbhub) 📇 🏠 – Universal database MCP server supporting mainstream databases. ### 💻 Developer Tools From 4c2365bb43f74cb0480457e052f3a58ccf02ea78 Mon Sep 17 00:00:00 2001 From: Tianzhou Date: Thu, 13 Mar 2025 18:48:23 +0800 Subject: [PATCH 021/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d389145c..a0983681 100644 --- a/README.md +++ b/README.md @@ -174,7 +174,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [sirmews/mcp-pinecone](https://github.com/sirmews/mcp-pinecone) 🐍 ☁ - Pinecone integration with vector search capabilities - [runekaagaard/mcp-alchemy](https://github.com/runekaagaard/mcp-alchemy) 🐍 🏠 - Universal SQLAlchemy-based database integration supporting PostgreSQL, MySQL, MariaDB, SQLite, Oracle, MS SQL Server and many more databases. Features schema and relationship inspection, and large dataset analysis capabilities. - [neondatabase/mcp-server-neon](https://github.com/neondatabase/mcp-server-neon) 📇 ☁ — An MCP Server for creating and managing Postgres databases using Neon Serverless Postgres -- [bytebase/dhhub](https://github.com/bytebase/dbhub) 📇 🏠 – Universal database MCP server supporting mainstream databases. +- [bytebase/dbhub](https://github.com/bytebase/dbhub) 📇 🏠 – Universal database MCP server supporting mainstream databases. ### 💻 Developer Tools From 5589f5beebd97454736a43f7004e1fb6eb54e5df Mon Sep 17 00:00:00 2001 From: XGenerationLab Date: Thu, 13 Mar 2025 19:56:38 +0800 Subject: [PATCH 022/189] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f6da4b6a..b7300937 100644 --- a/README.md +++ b/README.md @@ -174,6 +174,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [sirmews/mcp-pinecone](https://github.com/sirmews/mcp-pinecone) 🐍 ☁ - Pinecone integration with vector search capabilities - [runekaagaard/mcp-alchemy](https://github.com/runekaagaard/mcp-alchemy) 🐍 🏠 - Universal SQLAlchemy-based database integration supporting PostgreSQL, MySQL, MariaDB, SQLite, Oracle, MS SQL Server and many more databases. Features schema and relationship inspection, and large dataset analysis capabilities. - [neondatabase/mcp-server-neon](https://github.com/neondatabase/mcp-server-neon) 📇 ☁ — An MCP Server for creating and managing Postgres databases using Neon Serverless Postgres +- [XGenerationLab/xiyan_mcp_server](https://github.com/XGenerationLab/xiyan_mcp_server) 📇 ☁ — An MCP server that supports fetching data from a database using natural language queries, powered by XiyanSQL as the text-to-SQL LLM. ### 💻 Developer Tools From 555773fe264bb866deacd56c82e9673ca2e7838f Mon Sep 17 00:00:00 2001 From: Simon <119116740+Seym0n@users.noreply.github.com> Date: Thu, 13 Mar 2025 13:41:32 +0100 Subject: [PATCH 023/189] feat: add tiktok-mcp --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f6da4b6a..5d4fd5fc 100644 --- a/README.md +++ b/README.md @@ -321,6 +321,7 @@ Interact with Git repositories and version control platforms. Enables repository - [MarkusPfundstein/mcp-obsidian](https://github.com/MarkusPfundstein/mcp-obsidian) 🐍 ☁ 🏠 - Interacting with Obsidian via REST API - [calclavia/mcp-obsidian](https://github.com/calclavia/mcp-obsidian) 📇 🏠 - This is a connector to allow Claude Desktop (or any MCP client) to read and search any directory containing Markdown notes (such as an Obsidian vault). - [anaisbetts/mcp-youtube](https://github.com/anaisbetts/mcp-youtube) 📇 ☁ - Fetch YouTube subtitles +- [Seym0n/tiktok-mcp](https://github.com/Seym0n/tiktok-mcp) 📇 ☁ - Interact with TikTok videos - [danhilse/notion_mcp](https://github.com/danhilse/notion_mcp) 🐍 ☁ - Integrates with Notion's API to manage personal todo lists - [rusiaaman/wcgw](https://github.com/rusiaaman/wcgw/blob/main/src/wcgw/client/mcp_server/Readme.md) 🐍 🏠 - Autonomous shell execution, computer control and coding agent. (Mac) - [reeeeemo/ancestry-mcp](https://github.com/reeeeemo/ancestry-mcp) 🐍 🏠 - Allows the AI to read .ged files and genetic data From 4b8f21be70317456e4721f9d0e3514416612ef95 Mon Sep 17 00:00:00 2001 From: kukapay Date: Fri, 14 Mar 2025 00:28:21 +0800 Subject: [PATCH 024/189] Update README.md Add whale-tracker-mcp server. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f6da4b6a..0cced956 100644 --- a/README.md +++ b/README.md @@ -226,6 +226,7 @@ Financial data access and cryptocurrency market information. Enables querying re - [ferdousbhai/tasty-agent](https://github.com/ferdousbhai/tasty-agent) 🐍 ☁ - Tastyworks API integration to handle trading activities on Tastytrade - [ferdousbhai/investor-agent](https://github.com/ferdousbhai/investor-agent) 🐍 ☁ - Yahoo Finance integration to fetch stock market data including options recommendations - [kukapay/cryptopanic-mcp-server](https://github.com/kukapay/cryptopanic-mcp-server) 🐍 ☁ - Providing latest cryptocurrency news to AI agents, powered by CryptoPanic. +- [kukapay/whale-tracker-mcp](https://github.com/kukapay/whale-tracker-mcp) 🐍 ☁ - A mcp server for tracking cryptocurrency whale transactions. ### 🧠 Knowledge & Memory From 5f5bdffa716a49b230fc40098b68c79254cb7c82 Mon Sep 17 00:00:00 2001 From: James Furey Date: Fri, 14 Mar 2025 04:48:22 +1100 Subject: [PATCH 025/189] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f6da4b6a..920e6c6d 100644 --- a/README.md +++ b/README.md @@ -164,9 +164,10 @@ Secure database access with schema inspection capabilities. Enables querying and - [@joshuarileydev/supabase-mcp-server](https://github.com/joshuarileydev/supabase) - Supabase MCP Server for managing and creating projects and organisations in Supabase - [@alexanderzuev/supabase-mcp-server](https://github.com/alexander-zuev/supabase-mcp-server) - Supabase MCP Server with support for SQL query execution and database exploration tools - [ktanaka101/mcp-server-duckdb](https://github.com/ktanaka101/mcp-server-duckdb) 🐍 🏠 - DuckDB database integration with schema inspection and query capabilities +- [furey/mongodb-lens](https://github.com/furey/mongodb-lens) 📇 🏠 - MongoDB Lens: Full Featured MCP Server for MongoDB Databases - [QuantGeekDev/mongo-mcp](https://github.com/QuantGeekDev/mongo-mcp) 📇 🏠 - MongoDB integration that enables LLMs to interact directly with databases. -- [tinybirdco/mcp-tinybird](https://github.com/tinybirdco/mcp-tinybird) 🐍 ☁ - Tinybird integration with query and API capabilities - [kiliczsh/mcp-mongo-server](https://github.com/kiliczsh/mcp-mongo-server) 📇 🏠 - A Model Context Protocol Server for MongoDB +- [tinybirdco/mcp-tinybird](https://github.com/tinybirdco/mcp-tinybird) 🐍 ☁ - Tinybird integration with query and API capabilities - [KashiwaByte/vikingdb-mcp-server](https://github.com/KashiwaByte/vikingdb-mcp-server) 🐍 ☁ - VikingDB integration with collection and index introduction, vector store and search capabilities. - [neo4j-contrib/mcp-neo4j](https://github.com/neo4j-contrib/mcp-neo4j) 🐍 🏠 - Model Context Protocol with Neo4j - [isaacwasserman/mcp-snowflake-server](https://github.com/isaacwasserman/mcp-snowflake-server) 🐍 ☁ - Snowflake integration implementing read and (optional) write operations as well as insight tracking From 15bcabc9953868971f01b1177d7bfcb202fd95e4 Mon Sep 17 00:00:00 2001 From: Carter LaSalle <50027436+carterlasalle@users.noreply.github.com> Date: Thu, 13 Mar 2025 11:27:34 -0700 Subject: [PATCH 026/189] Add mac_messages_mcp An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index eeb98ead..ec1630de 100644 --- a/README.md +++ b/README.md @@ -135,6 +135,7 @@ Integration with communication platforms for message management and channel oper - [adhikasp/mcp-twikit](https://github.com/adhikasp/mcp-twikit) 🐍 ☁ - Interact with Twitter search and timeline - [gotoolkits/wecombot](https://github.com/gotoolkits/mcp-wecombot-server.git) - 🚀 ☁ - An MCP server application that sends various types of messages to the WeCom group robot. - [AbdelStark/nostr-mcp](https://github.com/AbdelStark/nostr-mcp) - 🌐 ☁ - A Nostr MCP server that allows to interact with Nostr, enabling posting notes, and more. +- [carterlasalle/mac_messages_mcp](https://github.com/carterlasalle/mac_messages_mcp_) 🏠 🍎 🚀 - An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages. ### 👀 Customer Data Platforms From ac67a7824e2fd215bc9a234dc1edfd62307e222d Mon Sep 17 00:00:00 2001 From: Ning Sun Date: Thu, 13 Mar 2025 12:38:38 -0700 Subject: [PATCH 027/189] docs: add greptimedb mcp --- README-ja.md | 1 + README-zh.md | 1 + README.md | 1 + 3 files changed, 3 insertions(+) diff --git a/README-ja.md b/README-ja.md index ee389301..fa28c3b9 100644 --- a/README-ja.md +++ b/README-ja.md @@ -107,6 +107,7 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [kiliczsh/mcp-mongo-server](https://github.com/kiliczsh/mcp-mongo-server) 📇 🏠 - MongoDBのためのモデルコンテキストプロトコルサヌバヌ - [KashiwaByte/vikingdb-mcp-server](https://github.com/KashiwaByte/vikingdb-mcp-server) 🐍 ☁ - コレクションずむンデックスの玹介、ベクトルストアず怜玢機胜を備えたVikingDB統合。 - [runekaagaard/mcp-alchemy](https://github.com/runekaagaard/mcp-alchemy) 🐍 🏠 - PostgreSQL、MySQL、MariaDB、SQLite、Oracle、MS SQL Serverなど倚数のデヌタベヌスをサポヌトするSQLAlchemyベヌスの汎甚デヌタベヌス統合。スキヌマず関係の怜査、倧芏暡デヌタセット分析機胜を備えおいたす。 +- [GreptimeTeam/greptimedb-mcp-server](https://github.com/GreptimeTeam/greptimedb-mcp-server) 🐍 🏠 - GreptimeDBのMCPサヌビスにク゚リを実行する。 ### 💻 開発者ツヌル diff --git a/README-zh.md b/README-zh.md index c4bcff23..b6ea98f5 100644 --- a/README-zh.md +++ b/README-zh.md @@ -164,6 +164,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [hannesrudolph/sqlite-explorer-fastmcp-mcp-server](https://github.com/hannesrudolph/sqlite-explorer-fastmcp-mcp-server) 🐍 🏠 - 䞀䞪 MCP 服务噚通过暡型䞊䞋文协议 MCP 提䟛对 SQLite 数据库的安党只读访问。该服务噚是䜿甚 FastMCP 框架构建的它䜿 LLM 胜借探玢和查询具有内眮安党功胜和查询验证的 SQLite 数据库。 - [sirmews/mcp-pinecone](https://github.com/sirmews/mcp-pinecone) 🐍 ☁ - Pinecone 䞎矢量搜玢功胜的集成 - [runekaagaard/mcp-alchemy](https://github.com/runekaagaard/mcp-alchemy) 🐍 🏠 - 基于SQLAlchemy的通甚数据库集成支持PostgreSQL、MySQL、MariaDB、SQLite、Oracle、MS SQL Server等䌗倚数据库。具有架构和关系检查以及倧型数据集分析功胜。 +- [GreptimeTeam/greptimedb-mcp-server](https://github.com/GreptimeTeam/greptimedb-mcp-server) 🐍 🏠 - 查询 GreptimeDB 的 MCP 服务。 ### 💻 匀发者工具 diff --git a/README.md b/README.md index eeb98ead..a11bf572 100644 --- a/README.md +++ b/README.md @@ -178,6 +178,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [pab1it0/adx-mcp-server](https://github.com/pab1it0/adx-mcp-server) 🐍 ☁ - Query and analyze Azure Data Explorer databases - [neondatabase/mcp-server-neon](https://github.com/neondatabase/mcp-server-neon) 📇 ☁ — An MCP Server for creating and managing Postgres databases using Neon Serverless Postgres - [bytebase/dbhub](https://github.com/bytebase/dbhub) 📇 🏠 – Universal database MCP server supporting mainstream databases. +- [GreptimeTeam/greptimedb-mcp-server](https://github.com/GreptimeTeam/greptimedb-mcp-server) 🐍 🏠 - MCP Server for querying GreptimeDB. ### 💻 Developer Tools From f8ce93f2ceff2704589800c9fe208033e7ca6201 Mon Sep 17 00:00:00 2001 From: biegehydra Date: Thu, 13 Mar 2025 15:55:34 -0400 Subject: [PATCH 028/189] Add vscode devtools --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b5807c01..a7f703de 100644 --- a/README.md +++ b/README.md @@ -184,6 +184,7 @@ Tools and integrations that enhance the development workflow and environment man - [r-huijts/xcode-mcp-server](https://github.com/r-huijts/xcode-mcp-server) 📇 🏠 🍎 - Xcode integration for project management, file operations, and build automation - [snaggle-ai/openapi-mcp-server](https://github.com/snaggle-ai/openapi-mcp-server) 🏎 🏠 - Connect any HTTP/REST API server using an Open API spec (v3) - [jetbrains/mcpProxy](https://github.com/JetBrains/mcpProxy) 🎖 📇 🏠 - Connect to JetBrains IDE +- [VSCode Devtools](https://github.com/biegehydra/BifrostMCP) 📇🛠 - Connect to VSCode ide and use semantic tools like `find_usages` - [tumf/mcp-text-editor](https://github.com/tumf/mcp-text-editor) 🐍 🏠 - A line-oriented text file editor. Optimized for LLM tools with efficient partial file access to minimize token usage. - [@joshuarileydev/simulator-mcp-server](https://github.com/JoshuaRileyDev/simulator-mcp-server) 📇 🏠 - An MCP server to control iOS Simulators - [@joshuarileydev/app-store-connect-mcp-server](https://github.com/JoshuaRileyDev/app-store-connect-mcp-server) 📇 🏠 - An MCP server to communicate with the App Store Connect API for iOS Developers From 4a2bab72620eaf8d62c3bb731241a7875d0c2259 Mon Sep 17 00:00:00 2001 From: Kirk Marple Date: Thu, 13 Mar 2025 16:24:43 -0700 Subject: [PATCH 029/189] Added Graphlt MCP Server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index eeb98ead..d9c09d08 100644 --- a/README.md +++ b/README.md @@ -242,6 +242,7 @@ Persistent memory storage using knowledge graph structures. Enables AI models to - [@hannesrudolph/mcp-ragdocs](https://github.com/hannesrudolph/mcp-ragdocs) 🐍 🏠 - An MCP server implementation that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context - [@kaliaboi/mcp-zotero](https://github.com/kaliaboi/mcp-zotero) 📇 ☁ - A connector for LLMs to work with collections and sources on your Zotero Cloud - [mcp-summarizer](https://github.com/0xshellming/mcp-summarizer) 📕 ☁ - AI Summarization MCP Server, Support for multiple content types: Plain text, Web pages, PDF documents, EPUB books, HTML content +- [graphlit-mcp-server](https://github.com/graphlit/graphlit-mcp-server) 📇 ☁ - Ingest anything from Slack, Discord, websites, Google Drive, Linear or GitHub into a Graphlit project - and then search and retrieve relevant knowledge within an MCP client like Cursor, Windsurf or Cline. ### 🗺 Location Services From 55353236e8629630302f51298304c63053bccb8b Mon Sep 17 00:00:00 2001 From: Elie Steinbock <3090527+elie222@users.noreply.github.com> Date: Fri, 14 Mar 2025 12:49:57 +0200 Subject: [PATCH 030/189] Add Inbox Zero MCP --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index eeb98ead..1792586d 100644 --- a/README.md +++ b/README.md @@ -135,6 +135,7 @@ Integration with communication platforms for message management and channel oper - [adhikasp/mcp-twikit](https://github.com/adhikasp/mcp-twikit) 🐍 ☁ - Interact with Twitter search and timeline - [gotoolkits/wecombot](https://github.com/gotoolkits/mcp-wecombot-server.git) - 🚀 ☁ - An MCP server application that sends various types of messages to the WeCom group robot. - [AbdelStark/nostr-mcp](https://github.com/AbdelStark/nostr-mcp) - 🌐 ☁ - A Nostr MCP server that allows to interact with Nostr, enabling posting notes, and more. +- [elie222/inbox-zero](https://github.com/elie222/inbox-zero/tree/main/apps/mcp-server) - 🐍 ☁ - An MCP server for Inbox Zero. Adds functionality on top of Gmail like finding out which emails you need to reply to or need to follow up on. ### 👀 Customer Data Platforms From b1a1cd8fc2ad3c6b7c2044c9c137b3b764a999e8 Mon Sep 17 00:00:00 2001 From: Jktfe Date: Fri, 14 Mar 2025 12:13:02 +0000 Subject: [PATCH 031/189] Update README.md with secure API MCP service A personal MCP (Model Context Protocol) server for securely storing and accessing API keys across projects using the macOS Keychain. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index eeb98ead..a1e3c4f9 100644 --- a/README.md +++ b/README.md @@ -201,6 +201,7 @@ Tools and integrations that enhance the development workflow and environment man - [@j4c0bs/mcp-server-sql-analyzer](https://github.com/j4c0bs/mcp-server-sql-analyzer) 🐍 - MCP server that provides SQL analysis, linting, and dialect conversion using [SQLGlot](https://github.com/tobymao/sqlglot) - [@haris-musa/excel-mcp-server](https://github.com/haris-musa/excel-mcp-server) 🐍 🏠 - An Excel manipulation server providing workbook creation, data operations, formatting, and advanced features (charts, pivot tables, formulae). - [@jasonjmcghee/claude-debugs-for-you](https://github.com/jasonjmcghee/claude-debugs-for-you) 📇 🏠 - An MCP Server and VS Code Extension which enables (language agnostic) automatic debugging via breakpoints and expression evaluation. +- [@Jktfe/serveMyAPI](https://github.com/Jktfe/serveMyAPI) 🍎 - A personal MCP (Model Context Protocol) server for securely storing and accessing API keys across projects using the macOS Keychain. ### 🧮 Data Science Tools From 006abc7fbee7b4b384431097876a124c1ed4c2f5 Mon Sep 17 00:00:00 2001 From: fakepixels Date: Fri, 14 Mar 2025 10:06:38 -0400 Subject: [PATCH 032/189] Add Base MCP server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index eeb98ead..99a10bf8 100644 --- a/README.md +++ b/README.md @@ -225,6 +225,7 @@ Provides direct access to local file systems with configurable permissions. Enab Financial data access and cryptocurrency market information. Enables querying real-time market data, crypto prices, and financial analytics. +- [@base/base-mcp](https://github.com/base/base-mcp) 🎖 📇 ☁ - Base Network integration for onchain tools, allowing interaction with Base Network and Coinbase API for wallet management, fund transfers, smart contracts, and DeFi operations - [QuantGeekDev/coincap-mcp](https://github.com/QuantGeekDev/coincap-mcp) 📇 ☁ - Real-time cryptocurrency market data integration using CoinCap's public API, providing access to crypto prices and market information without API keys - [anjor/coinmarket-mcp-server](https://github.com/anjor/coinmarket-mcp-server) 🐍 ☁ - Coinmarket API integration to fetch cryptocurrency listings and quotes - [berlinbra/alpha-vantage-mcp](https://github.com/berlinbra/alpha-vantage-mcp) 🐍 ☁ - Alpha Vantage API integration to fetch both stock and crypto information From b316f75c8f7d1035e6348975901a9f4a7ddcc8c9 Mon Sep 17 00:00:00 2001 From: Yaroslav Boiko Date: Fri, 14 Mar 2025 19:43:41 +0100 Subject: [PATCH 033/189] add Replicate API MCP server --- README-ja.md | 1 + README-zh.md | 1 + README.md | 1 + 3 files changed, 3 insertions(+) diff --git a/README-ja.md b/README-ja.md index ee389301..5bc96bdd 100644 --- a/README-ja.md +++ b/README-ja.md @@ -222,6 +222,7 @@ Gitリポゞトリおよびバヌゞョン管理プラットフォヌムずの - [sparfenyuk/mcp-proxy](https://github.com/sparfenyuk/mcp-proxy) 🐍 MCP stdioからSSEぞのトランスポヌトゲヌトりェむ。 - [NON906/omniparser-autogui-mcp](https://github.com/NON906/omniparser-autogui-mcp) 🐍 - 画面䞊のGUIの自動操䜜 - [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ [Kibela](https://kibe.la/)ずの連携 +- [@awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - Replicate APIを通じお画像を生成する機胜を提䟛したす。 ## フレヌムワヌク diff --git a/README-zh.md b/README-zh.md index c4bcff23..22391d62 100644 --- a/README-zh.md +++ b/README-zh.md @@ -337,6 +337,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [ws-mcp](https://github.com/nick1udwig/ws-mcp) - 䜿甚 WebSocket 包装 MCP 服务噚甚于 [kitbitz](https://github.com/nick1udwig/kibitz) - [AbdelStark/bitcoin-mcp](https://github.com/AbdelStark/bitcoin-mcp) - ₿ 䞀䞪暡型䞊䞋文协议MCP服务噚䜿 AI 暡型胜借䞎比特垁亀互允讞它们生成密钥、验证地址、解码亀易、查询区块铟等 - [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ [Kibela](https://kibe.la/) 侎 MCP 的集成 +- [@awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - 通过Replicate API提䟛囟像生成功胜。 ## 框架 - [FastMCP](https://github.com/jlowin/fastmcp) 🐍 - 甚于圚 Python 䞭构建 MCP 服务噚的高级框架 diff --git a/README.md b/README.md index eeb98ead..140abd6a 100644 --- a/README.md +++ b/README.md @@ -371,6 +371,7 @@ Interact with Git repositories and version control platforms. Enables repository - [@makehq/mcp-server](https://github.com/integromat/make-mcp-server) 🎖 📇 🏠 - Turn your [Make](https://www.make.com/) scenarios into callable tools for AI assistants. - [NON906/omniparser-autogui-mcp](https://github.com/NON906/omniparser-autogui-mcp) - 🐍 Automatic operation of on-screen GUI. - [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ Allows AI models to interact with [Kibela](https://kibe.la/) +- [@awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - Provides the ability to generate images via Replicate's API. ## Frameworks From 4a1a85d2dbeb3c45e88a4a34e7c258083aaa9945 Mon Sep 17 00:00:00 2001 From: Carter LaSalle <50027436+carterlasalle@users.noreply.github.com> Date: Fri, 14 Mar 2025 20:04:30 -0700 Subject: [PATCH 034/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ec1630de..add274dd 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ Integration with communication platforms for message management and channel oper - [adhikasp/mcp-twikit](https://github.com/adhikasp/mcp-twikit) 🐍 ☁ - Interact with Twitter search and timeline - [gotoolkits/wecombot](https://github.com/gotoolkits/mcp-wecombot-server.git) - 🚀 ☁ - An MCP server application that sends various types of messages to the WeCom group robot. - [AbdelStark/nostr-mcp](https://github.com/AbdelStark/nostr-mcp) - 🌐 ☁ - A Nostr MCP server that allows to interact with Nostr, enabling posting notes, and more. -- [carterlasalle/mac_messages_mcp](https://github.com/carterlasalle/mac_messages_mcp_) 🏠 🍎 🚀 - An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages. +- [carterlasalle/mac_messages_mcp](https://github.com/carterlasalle/mac_messages_mcp) 🏠 🍎 🚀 - An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages. ### 👀 Customer Data Platforms From 3d97c57f976c3c6ec2668077e55965fd87308391 Mon Sep 17 00:00:00 2001 From: Mahesh P Chandran Date: Sat, 15 Mar 2025 07:42:58 +0000 Subject: [PATCH 035/189] Adding trino MCP server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index add274dd..3bf495e1 100644 --- a/README.md +++ b/README.md @@ -165,6 +165,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [@joshuarileydev/supabase-mcp-server](https://github.com/joshuarileydev/supabase) - Supabase MCP Server for managing and creating projects and organisations in Supabase - [@alexanderzuev/supabase-mcp-server](https://github.com/alexander-zuev/supabase-mcp-server) - Supabase MCP Server with support for SQL query execution and database exploration tools - [ktanaka101/mcp-server-duckdb](https://github.com/ktanaka101/mcp-server-duckdb) 🐍 🏠 - DuckDB database integration with schema inspection and query capabilities +- [Dataring-engineering/mcp-server-trino](https://github.com/Dataring-engineering/mcp-server-trino) 🐍 ☁ - Trino MCP Server to query and access data from Trino Clusters. - [furey/mongodb-lens](https://github.com/furey/mongodb-lens) 📇 🏠 - MongoDB Lens: Full Featured MCP Server for MongoDB Databases - [QuantGeekDev/mongo-mcp](https://github.com/QuantGeekDev/mongo-mcp) 📇 🏠 - MongoDB integration that enables LLMs to interact directly with databases. - [kiliczsh/mcp-mongo-server](https://github.com/kiliczsh/mcp-mongo-server) 📇 🏠 - A Model Context Protocol Server for MongoDB From 45636ccf1f62882428f8db6d8eae5ae32918fd2b Mon Sep 17 00:00:00 2001 From: Sergey Bunas Date: Sat, 15 Mar 2025 18:19:09 +0800 Subject: [PATCH 036/189] add: magic mcp --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index add274dd..04499262 100644 --- a/README.md +++ b/README.md @@ -184,6 +184,7 @@ Secure database access with schema inspection capabilities. Enables querying and Tools and integrations that enhance the development workflow and environment management. +- [21st-dev/Magic-MCP](https://github.com/21st-dev/magic-mcp) - Create crafted UI components inspired by the best 21st.dev design engineers. - [Coment-ML/Opik-MCP](https://github.com/comet-ml/opik-mcp) 🎖 📇 ☁ 🏠 - Talk to your LLM observability, traces and monitoring captured by Opik using natural language. - [GLips/Figma-Context-MCP](https://github.com/GLips/Figma-Context-MCP) 📇 🏠 - Provide coding agents direct access to Figma data to help them one-shot design implementation. - [QuantGeekDev/docker-mcp](https://github.com/QuantGeekDev/docker-mcp) 🏎 🏠 - Docker container management and operations through MCP From 4bf5b18bd544b3bc58c5dc28c0a48fae33902aa3 Mon Sep 17 00:00:00 2001 From: kukapay Date: Sat, 15 Mar 2025 20:35:19 +0800 Subject: [PATCH 037/189] Update README.md Add crypto-feargreed-mcp. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index add274dd..364ae50a 100644 --- a/README.md +++ b/README.md @@ -233,6 +233,7 @@ Financial data access and cryptocurrency market information. Enables querying re - [ferdousbhai/investor-agent](https://github.com/ferdousbhai/investor-agent) 🐍 ☁ - Yahoo Finance integration to fetch stock market data including options recommendations - [kukapay/cryptopanic-mcp-server](https://github.com/kukapay/cryptopanic-mcp-server) 🐍 ☁ - Providing latest cryptocurrency news to AI agents, powered by CryptoPanic. - [kukapay/whale-tracker-mcp](https://github.com/kukapay/whale-tracker-mcp) 🐍 ☁ - A mcp server for tracking cryptocurrency whale transactions. +- [kukapay/crypto-feargreed-mcp](https://github.com/kukapay/crypto-feargreed-mcp) 🐍 ☁ - Providing real-time and historical Crypto Fear & Greed Index data. ### 🧠 Knowledge & Memory From 7da08f87ce7c8011b1779a87536316020c47dfbc Mon Sep 17 00:00:00 2001 From: Rashid Azarang <76001184+rashidazarang@users.noreply.github.com> Date: Sat, 15 Mar 2025 06:45:40 -0600 Subject: [PATCH 038/189] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index add274dd..9c423dba 100644 --- a/README.md +++ b/README.md @@ -152,6 +152,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [cr7258/elasticsearch-mcp-server](https://github.com/cr7258/elasticsearch-mcp-server) 🐍 🏠 - MCP Server implementation that provides Elasticsearch interaction - [domdomegg/airtable-mcp-server](https://github.com/domdomegg/airtable-mcp-server) 📇 🏠 - Airtable database integration with schema inspection, read and write capabilities +- [rashidazarang/airtable-mcp](https://github.com/rashidazarang/airtable-mcp) 🐍 ☁ - Connect AI tools directly to Airtable. Query, create, update, and delete records using natural language. Features include base management, table operations, schema manipulation, record filtering, and data migration through a standardized MCP interface. Available on [Smithery](https://smithery.ai/server/@rashidazarang/airtable-mcp/tools). - [LucasHild/mcp-server-bigquery](https://github.com/LucasHild/mcp-server-bigquery) 🐍 ☁ - BigQuery database integration with schema inspection and query capabilities - [ergut/mcp-bigquery-server](https://github.com/ergut/mcp-bigquery-server) 📇 ☁ - Server implementation for Google BigQuery integration that enables direct BigQuery database access and querying capabilities - [ClickHouse/mcp-clickhouse](https://github.com/ClickHouse/mcp-clickhouse) 🐍 ☁ - ClickHouse database integration with schema inspection and query capabilities From 2583990e0f27bf49413ba29206a1509ac2f48cf4 Mon Sep 17 00:00:00 2001 From: sawa-zen Date: Sat, 15 Mar 2025 21:57:20 +0900 Subject: [PATCH 039/189] Add sawa-zen/vrchat-mcp --- README-ja.md | 1 + README-zh.md | 1 + README.md | 1 + 3 files changed, 3 insertions(+) diff --git a/README-ja.md b/README-ja.md index ee389301..6ae1a007 100644 --- a/README-ja.md +++ b/README-ja.md @@ -82,6 +82,7 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [@modelcontextprotocol/server-bluesky](https://github.com/keturiosakys/bluesky-context-server) 📇 ☁ - ク゚リずむンタラクションのためのBlueskyむンスタンス統合 - [MarkusPfundstein/mcp-gsuite](https://github.com/MarkusPfundstein/mcp-gsuite) - 🐍 ☁ - GmailずGoogleカレンダヌずの統合。 - [gotoolkits/wecombot](https://github.com/gotoolkits/mcp-wecombot-server.git) - 🚀 ☁ - MCPサヌバヌアプリケヌションは、WeComグルヌプロボットにさたざたなタむプのメッセヌゞを送信したす。 +- [sawa-zen/vrchat-mcp](https://github.com/sawa-zen/vrchat-mcp) - 📇 🏠 VRChat APIず察話するためのMCPサヌバヌです。VRChatのフレンドやワヌルド、アバタヌなどの情報を取埗するこずができたす。 ### 👀 顧客デヌタプラットフォヌム diff --git a/README-zh.md b/README-zh.md index c4bcff23..f97ba691 100644 --- a/README-zh.md +++ b/README-zh.md @@ -128,6 +128,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [adhikasp/mcp-twikit](https://github.com/adhikasp/mcp-twikit) 🐍 ☁ - 侎 Twitter 搜玢和时闎线进行亀互 - [gotoolkits/wecombot](https://github.com/gotoolkits/mcp-wecombot-server.git) - 🚀 ☁ - MCP服务噚 Tools 应甚皋序甚于向䌁䞚埮信矀机噚人发送各种类型的消息。 - [AbdelStark/nostr-mcp](https://github.com/AbdelStark/nostr-mcp) - 🌐 ☁ - Nostr MCP 服务噚支持䞎 Nostr 亀互可发垃笔记等功胜。 +- [sawa-zen/vrchat-mcp](https://github.com/sawa-zen/vrchat-mcp) - 📇 🏠 这是䞀䞪䞎VRChat API亀互的MCP服务噚。悚可以获取VRChat的奜友、䞖界、化身等信息。 ### 👀 数据平台 diff --git a/README.md b/README.md index add274dd..5117bcbf 100644 --- a/README.md +++ b/README.md @@ -136,6 +136,7 @@ Integration with communication platforms for message management and channel oper - [gotoolkits/wecombot](https://github.com/gotoolkits/mcp-wecombot-server.git) - 🚀 ☁ - An MCP server application that sends various types of messages to the WeCom group robot. - [AbdelStark/nostr-mcp](https://github.com/AbdelStark/nostr-mcp) - 🌐 ☁ - A Nostr MCP server that allows to interact with Nostr, enabling posting notes, and more. - [carterlasalle/mac_messages_mcp](https://github.com/carterlasalle/mac_messages_mcp) 🏠 🍎 🚀 - An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages. +- [sawa-zen/vrchat-mcp](https://github.com/sawa-zen/vrchat-mcp) - 📇 🏠 This is an MCP server for interacting with the VRChat API. You can retrieve information about friends, worlds, avatars, and more in VRChat. ### 👀 Customer Data Platforms From 7f960bf26e80cfb93a565c8206ded1d6bc11043b Mon Sep 17 00:00:00 2001 From: Juan Santos Ochoa Date: Sat, 15 Mar 2025 23:55:02 -0600 Subject: [PATCH 040/189] docs: add QGIS MCP server QGIS MCP connects QGIS to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control QGIS. This integration enables prompt assisted project creation, layer loading, code execution and more. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index add274dd..8a7b8ca6 100644 --- a/README.md +++ b/README.md @@ -252,6 +252,7 @@ Geographic and location-based services integration. Enables access to mapping da - [SecretiveShell/MCP-timeserver](https://github.com/SecretiveShell/MCP-timeserver) 🐍 🏠 - Access the time in any timezone and get the current local time - [webcoderz/MCP-Geo](https://github.com/webcoderz/MCP-Geo) 🐍 🏠 - Geocoding MCP server for nominatim, ArcGIS, Bing - [@briandconnelly/mcp-server-ipinfo](https://github.com/briandconnelly/mcp-server-ipinfo) 🐍 ☁ - IP address geolocation and network information using IPInfo API +- [QGIS MCP](https://github.com/jjsantos01/qgis_mcp) - connects QGIS Desktop to Claude AI through the MCP. This integration enables prompt-assisted project creation, layer loading, code execution, and more. ### 🎯 Marketing From 8ff58629ed0b354a8265152efe7949372ff8981d Mon Sep 17 00:00:00 2001 From: LeftX <53989315+xzq-xu@users.noreply.github.com> Date: Sun, 16 Mar 2025 18:41:09 +0800 Subject: [PATCH 041/189] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index add274dd..1c798d5c 100644 --- a/README.md +++ b/README.md @@ -202,6 +202,7 @@ Tools and integrations that enhance the development workflow and environment man - [@j4c0bs/mcp-server-sql-analyzer](https://github.com/j4c0bs/mcp-server-sql-analyzer) 🐍 - MCP server that provides SQL analysis, linting, and dialect conversion using [SQLGlot](https://github.com/tobymao/sqlglot) - [@haris-musa/excel-mcp-server](https://github.com/haris-musa/excel-mcp-server) 🐍 🏠 - An Excel manipulation server providing workbook creation, data operations, formatting, and advanced features (charts, pivot tables, formulae). - [@jasonjmcghee/claude-debugs-for-you](https://github.com/jasonjmcghee/claude-debugs-for-you) 📇 🏠 - An MCP Server and VS Code Extension which enables (language agnostic) automatic debugging via breakpoints and expression evaluation. +- [xzq.xu/jvm-mcp-server](https://github.com/xzq-xu/jvm-mcp-server) 📇 🏠 - An implementation project of a JVM-based MCP (Model Context Protocol) server. ### 🧮 Data Science Tools From 94c465540067525e3ad652eb54e9ee2c88b22dcd Mon Sep 17 00:00:00 2001 From: LeftX <53989315+xzq-xu@users.noreply.github.com> Date: Sun, 16 Mar 2025 18:42:51 +0800 Subject: [PATCH 042/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1c798d5c..fa57ed7b 100644 --- a/README.md +++ b/README.md @@ -202,7 +202,7 @@ Tools and integrations that enhance the development workflow and environment man - [@j4c0bs/mcp-server-sql-analyzer](https://github.com/j4c0bs/mcp-server-sql-analyzer) 🐍 - MCP server that provides SQL analysis, linting, and dialect conversion using [SQLGlot](https://github.com/tobymao/sqlglot) - [@haris-musa/excel-mcp-server](https://github.com/haris-musa/excel-mcp-server) 🐍 🏠 - An Excel manipulation server providing workbook creation, data operations, formatting, and advanced features (charts, pivot tables, formulae). - [@jasonjmcghee/claude-debugs-for-you](https://github.com/jasonjmcghee/claude-debugs-for-you) 📇 🏠 - An MCP Server and VS Code Extension which enables (language agnostic) automatic debugging via breakpoints and expression evaluation. -- [xzq.xu/jvm-mcp-server](https://github.com/xzq-xu/jvm-mcp-server) 📇 🏠 - An implementation project of a JVM-based MCP (Model Context Protocol) server. +- [@xzq.xu/jvm-mcp-server](https://github.com/xzq-xu/jvm-mcp-server) 📇 🏠 - An implementation project of a JVM-based MCP (Model Context Protocol) server. ### 🧮 Data Science Tools From 16843f5c0529a55e9bbc89745b91901bbc7d68e2 Mon Sep 17 00:00:00 2001 From: Gyeongmo Nathan Yang Date: Mon, 17 Mar 2025 00:55:06 +0900 Subject: [PATCH 043/189] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index add274dd..df7d37db 100644 --- a/README.md +++ b/README.md @@ -202,6 +202,7 @@ Tools and integrations that enhance the development workflow and environment man - [@j4c0bs/mcp-server-sql-analyzer](https://github.com/j4c0bs/mcp-server-sql-analyzer) 🐍 - MCP server that provides SQL analysis, linting, and dialect conversion using [SQLGlot](https://github.com/tobymao/sqlglot) - [@haris-musa/excel-mcp-server](https://github.com/haris-musa/excel-mcp-server) 🐍 🏠 - An Excel manipulation server providing workbook creation, data operations, formatting, and advanced features (charts, pivot tables, formulae). - [@jasonjmcghee/claude-debugs-for-you](https://github.com/jasonjmcghee/claude-debugs-for-you) 📇 🏠 - An MCP Server and VS Code Extension which enables (language agnostic) automatic debugging via breakpoints and expression evaluation. +- [@yangkyeongmo@/mcp-server-apache-airflow](https://github.com/yangkyeongmo/mcp-server-apache-airflow) 🐍 🏠 - MCP server that connects to [Apache Airflow](https://airflow.apache.org/) using official client. ### 🧮 Data Science Tools From 7b14ec78e27cd6c0c42e7dbf065cfdcf5cde4df9 Mon Sep 17 00:00:00 2001 From: Rishi Jatia Date: Sun, 16 Mar 2025 14:32:43 -0400 Subject: [PATCH 044/189] Add Fantasy PL Community MCP Server Gives your agent direct access to up-to date Fantasy Premier League (FPL) data. ## Description ## Server Details - Server: `fantasy-pl-mcp-server` - Provides tools to analyze Fantasy PL players and fixtures - Provides customized advice to FPL managers based on latest API information ## Motivation and Context I wanted to be able to ask Claude for advice on my Fantasy Premier League team, analyze players, fixtures and get transfer suggestions but it never had the upto date data and specific Fantasy relevant data (like points scored, price, etc) so I created an MCP server to give Claude direct access via the FPL API. This MCP server lets Claude users: - Give Claude direct access to live Fantasy Premier League data - Use Claude as an FPL AI Assistant - Ask for personalized advice on their FPL teams - Get recommendations on players - Get recommendations on fixtures and teams ## How Has This Been Tested? Tested with Claude Desktop after doing an installation via pip. I was able to run tools and conduct analysis. I verified that the analysis makes sense. I also have some basic testing in my project code. I also tested it out on common questions from the Fantasy PL community and it seems to be well received (see screenshots for reference) ## Breaking Changes No ## Types of changes - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [x] Documentation update ## Checklist - [x] I have read the [MCP Protocol Documentation](https://modelcontextprotocol.io) - [x] My changes follows MCP security best practices - [x] I have updated the server's README accordingly - [x] I have tested this with an LLM client - [x] My code follows the repository's style guidelines - [x] New and existing tests pass locally - [x] I have added appropriate error handling - [x] I have documented all environment variables and configuration options ## Additional context Fantasy Premier League (FPL) is a massively popular game with over 9 million players worldwide, making it the largest fantasy sports platform in the world. The passionate community includes dedicated followers who analyze every match, player statistic, and team selection, creating a thriving ecosystem of blogs, podcasts, and tools to gain a competitive edge in their mini-leagues and overall rankings. ![IMG_3922](https://github.com/user-attachments/assets/585187ea-7b5d-4cc9-874e-d2628cabaf01) ![IMG_3923](https://github.com/user-attachments/assets/03ae7223-6942-453e-a2e7-364cc273037d) ![IMG_3924](https://github.com/user-attachments/assets/853106d5-3de5-4012-a15e-ed83f39d5da2) --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index add274dd..53d05602 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,7 @@ Checkout [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) * 🛠 - [Developer Tools](#developer-tools) * 📂 - [File Systems](#file-systems) * 💰 - [Finance & Fintech](#finance--fintech) +* 🎮 - [Gaming](#gaming) * 🧠 - [Knowledge & Memory](#knowledge--memory) * 🗺 - [Location Services](#location-services) * 🎯 - [Marketing](#marketing) @@ -234,6 +235,12 @@ Financial data access and cryptocurrency market information. Enables querying re - [kukapay/cryptopanic-mcp-server](https://github.com/kukapay/cryptopanic-mcp-server) 🐍 ☁ - Providing latest cryptocurrency news to AI agents, powered by CryptoPanic. - [kukapay/whale-tracker-mcp](https://github.com/kukapay/whale-tracker-mcp) 🐍 ☁ - A mcp server for tracking cryptocurrency whale transactions. +### 🎮 Gaming + +Integration with gaming related data, and services + +- [rishijatia/fantasy-pl-mcp](https://github.com/rishijatia/fantasy-pl-mcp/) 🐍 ☁ - An MCP server for real-time Fantasy Premier League data and analysis tools. + ### 🧠 Knowledge & Memory Persistent memory storage using knowledge graph structures. Enables AI models to maintain and query structured information across sessions. From 6f16e7859664f6a4842aa6cd1d6a793e6f67b9ca Mon Sep 17 00:00:00 2001 From: Altmatter <159511657+altmatter@users.noreply.github.com> Date: Sun, 16 Mar 2025 14:15:29 -0700 Subject: [PATCH 045/189] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index add274dd..b2b009d8 100644 --- a/README.md +++ b/README.md @@ -305,6 +305,7 @@ Access and analyze application monitoring data. Enables AI models to review erro Access to travel and transportation information. Enables querying schedules, routes, and real-time travel data. +- [Airbnb MCP Server](https://github.com/openbnb-org/mcp-server-airbnb) 📇 ☁ - Provides tools to search Airbnb and get listing details. - [NS Travel Information MCP Server](https://github.com/r-huijts/ns-mcp-server) 📇 ☁ - Access Dutch Railways (NS) travel information, schedules, and real-time updates ### 🔄 Version Control From d345f11e86d3bf8de68dd1f88eb281fdcfd23292 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Sun, 16 Mar 2025 22:24:13 -0600 Subject: [PATCH 046/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9c423dba..e9190fbb 100644 --- a/README.md +++ b/README.md @@ -152,7 +152,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [cr7258/elasticsearch-mcp-server](https://github.com/cr7258/elasticsearch-mcp-server) 🐍 🏠 - MCP Server implementation that provides Elasticsearch interaction - [domdomegg/airtable-mcp-server](https://github.com/domdomegg/airtable-mcp-server) 📇 🏠 - Airtable database integration with schema inspection, read and write capabilities -- [rashidazarang/airtable-mcp](https://github.com/rashidazarang/airtable-mcp) 🐍 ☁ - Connect AI tools directly to Airtable. Query, create, update, and delete records using natural language. Features include base management, table operations, schema manipulation, record filtering, and data migration through a standardized MCP interface. Available on [Smithery](https://smithery.ai/server/@rashidazarang/airtable-mcp/tools). +- [rashidazarang/airtable-mcp](https://github.com/rashidazarang/airtable-mcp) 🐍 ☁ - Connect AI tools directly to Airtable. Query, create, update, and delete records using natural language. Features include base management, table operations, schema manipulation, record filtering, and data migration through a standardized MCP interface. - [LucasHild/mcp-server-bigquery](https://github.com/LucasHild/mcp-server-bigquery) 🐍 ☁ - BigQuery database integration with schema inspection and query capabilities - [ergut/mcp-bigquery-server](https://github.com/ergut/mcp-bigquery-server) 📇 ☁ - Server implementation for Google BigQuery integration that enables direct BigQuery database access and querying capabilities - [ClickHouse/mcp-clickhouse](https://github.com/ClickHouse/mcp-clickhouse) 🐍 ☁ - ClickHouse database integration with schema inspection and query capabilities From aae296eea4bb4a3b4f9a574690642d032cef4858 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Sun, 16 Mar 2025 22:32:17 -0600 Subject: [PATCH 047/189] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 49652624..c4a26c26 100644 --- a/README.md +++ b/README.md @@ -279,10 +279,10 @@ Access and analyze application monitoring data. Enables AI models to review erro - [Ihor-Sokoliuk/MCP-SearXNG](https://github.com/ihor-sokoliuk/mcp-searxng) 📇 🏠/☁ - A Model Context Protocol Server for [SearXNG](https://docs.searxng.org) - [erithwik/mcp-hn](https://github.com/erithwik/mcp-hn) 🐍 ☁ - An MCP server to search Hacker News, get top stories, and more. - [chanmeng/google-news-mcp-server](https://github.com/ChanMeng666/server-google-news) 📇 ☁ - Google News integration with automatic topic categorization, multi-language support, and comprehensive search capabilities including headlines, stories, and related topics through [SerpAPI](https://serpapi.com/). -- [devflowinc/trieve](https://github.com/devflowinc/trieve/tree/main/clients/mcp-server) 🎖📇☁🏠 - Crawl, embed, chunk, search, and retrieve information from datasets through [Trieve](https://trieve.ai) +- [devflowinc/trieve](https://github.com/devflowinc/trieve/tree/main/clients/mcp-server) 🎖 📇 ☁ 🏠 - Crawl, embed, chunk, search, and retrieve information from datasets through [Trieve](https://trieve.ai) - [nickclyde/duckduckgo-mcp-server](https://github.com/nickclyde/duckduckgo-mcp-server) 🐍 ☁ - Web search using DuckDuckGo - [zhsama/duckduckgo-mcp-server](https://github.com/zhsama/duckduckgo-mpc-server/) 📇 🏠 ☁ - This is a TypeScript-based MCP server that provides DuckDuckGo search functionality. -- [vectorize-io/vectorize-mcp-server](https://github.com/vectorize-io/vectorize-mcp-server/) ☁ - [Vectorize](https://vectorize.io) MCP server for advanced retrieval, Private Deep Research, Anything-to-Markdown file extraction and text chunking. +- [vectorize-io/vectorize-mcp-server](https://github.com/vectorize-io/vectorize-mcp-server/) ☁ 📇 - [Vectorize](https://vectorize.io) MCP server for advanced retrieval, Private Deep Research, Anything-to-Markdown file extraction and text chunking. ### 🔒 Security From 8b04090774c03084c08f8a3f56c4869f4db5179c Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Sun, 16 Mar 2025 22:32:51 -0600 Subject: [PATCH 048/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc5a3fc9..47a2472f 100644 --- a/README.md +++ b/README.md @@ -224,7 +224,7 @@ Financial data access and cryptocurrency market information. Enables querying re - [berlinbra/alpha-vantage-mcp](https://github.com/berlinbra/alpha-vantage-mcp) 🐍 ☁ - Alpha Vantage API integration to fetch both stock and crypto information - [ferdousbhai/tasty-agent](https://github.com/ferdousbhai/tasty-agent) 🐍 ☁ - Tastyworks API integration to handle trading activities on Tastytrade - [ferdousbhai/investor-agent](https://github.com/ferdousbhai/investor-agent) 🐍 ☁ - Yahoo Finance integration to fetch stock market data including options recommendations -- [bankless/onchain-mcp](https://github.com/Bankless/onchain-mcp/) 📇☁ - Bankless Onchain API to interact with smart contracts, query transaction and token information +- [bankless/onchain-mcp](https://github.com/Bankless/onchain-mcp/) 📇 ☁ - Bankless Onchain API to interact with smart contracts, query transaction and token information ### 🧠 Knowledge & Memory From a0563c238fb337bde947529e6baebf368dfeb0b6 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Sun, 16 Mar 2025 22:43:33 -0600 Subject: [PATCH 049/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a1e3c4f9..e62d0dfc 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,7 @@ Tools and integrations that enhance the development workflow and environment man - [@j4c0bs/mcp-server-sql-analyzer](https://github.com/j4c0bs/mcp-server-sql-analyzer) 🐍 - MCP server that provides SQL analysis, linting, and dialect conversion using [SQLGlot](https://github.com/tobymao/sqlglot) - [@haris-musa/excel-mcp-server](https://github.com/haris-musa/excel-mcp-server) 🐍 🏠 - An Excel manipulation server providing workbook creation, data operations, formatting, and advanced features (charts, pivot tables, formulae). - [@jasonjmcghee/claude-debugs-for-you](https://github.com/jasonjmcghee/claude-debugs-for-you) 📇 🏠 - An MCP Server and VS Code Extension which enables (language agnostic) automatic debugging via breakpoints and expression evaluation. -- [@Jktfe/serveMyAPI](https://github.com/Jktfe/serveMyAPI) 🍎 - A personal MCP (Model Context Protocol) server for securely storing and accessing API keys across projects using the macOS Keychain. +- [@Jktfe/serveMyAPI](https://github.com/Jktfe/serveMyAPI) 📇 🏠 🍎 - A personal MCP (Model Context Protocol) server for securely storing and accessing API keys across projects using the macOS Keychain. ### 🧮 Data Science Tools From 03fb933013fb081f1f9f1bd5fa7e7a90f88b1d11 Mon Sep 17 00:00:00 2001 From: kukapay Date: Mon, 17 Mar 2025 13:46:44 +0800 Subject: [PATCH 050/189] Add 5 mcp servers. - whoami-mcp - whereami-mcp - whattimeisit-mcp - nearby-search-mcp - dune-analytics-mcp --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 76fb3475..263cf17f 100644 --- a/README.md +++ b/README.md @@ -254,6 +254,7 @@ Financial data access and cryptocurrency market information. Enables querying re - [kukapay/cryptopanic-mcp-server](https://github.com/kukapay/cryptopanic-mcp-server) 🐍 ☁ - Providing latest cryptocurrency news to AI agents, powered by CryptoPanic. - [kukapay/whale-tracker-mcp](https://github.com/kukapay/whale-tracker-mcp) 🐍 ☁ - A mcp server for tracking cryptocurrency whale transactions. - [kukapay/crypto-feargreed-mcp](https://github.com/kukapay/crypto-feargreed-mcp) 🐍 ☁ - Providing real-time and historical Crypto Fear & Greed Index data. +- [kukapay/dune-analytics-mcp](https://github.com/kukapay/dune-analytics-mcp) 🐍 ☁ - A mcp server that bridges Dune Analytics data to AI agents. ### 🎮 Gaming @@ -281,6 +282,7 @@ Geographic and location-based services integration. Enables access to mapping da - [webcoderz/MCP-Geo](https://github.com/webcoderz/MCP-Geo) 🐍 🏠 - Geocoding MCP server for nominatim, ArcGIS, Bing - [@briandconnelly/mcp-server-ipinfo](https://github.com/briandconnelly/mcp-server-ipinfo) 🐍 ☁ - IP address geolocation and network information using IPInfo API - [QGIS MCP](https://github.com/jjsantos01/qgis_mcp) - connects QGIS Desktop to Claude AI through the MCP. This integration enables prompt-assisted project creation, layer loading, code execution, and more. +- [kukapay/nearby-search-mcp](https://github.com/kukapay/nearby-search-mcp) 🐍 ☁ - An MCP server for nearby place searches with IP-based location detection. ### 🎯 Marketing @@ -437,6 +439,10 @@ Interact with Git repositories and version control platforms. Enables repository - [SecretiveShell/MCP-Bridge](https://github.com/SecretiveShell/MCP-Bridge) 🐍 – an openAI middleware proxy to use mcp in any existing openAI compatible client - [sparfenyuk/mcp-proxy](https://github.com/sparfenyuk/mcp-proxy) 🐍 – An MCP stdio to SSE transport gateawy. - [upsonic/gpt-computer-assistant](https://github.com/Upsonic/gpt-computer-assistant) 🐍 – framework to build vertical AI agent +- [kukapay/whereami-mcp](https://github.com/kukapay/whereami-mcp) 🐍 ☁ - A lightweight mcp server that tells you exactly where you are based on your current IP. +- [kukapay/whattimeisit-mcp](https://github.com/kukapay/whattimeisit-mcp) 🐍 ☁ - A lightweight mcp server that tells you exactly what time is it. +- [kukapay/whoami-mcp](https://github.com/kukapay/whoami-mcp) 🐍 🏠 - A lightweight MCP server that tells you exactly who you are. + ## Tips and Tricks From b51f6f38d57a96311cfb6c0a35ff19ef3d09e21c Mon Sep 17 00:00:00 2001 From: Alex Strick van Linschoten Date: Mon, 17 Mar 2025 07:27:21 +0100 Subject: [PATCH 051/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 58f9b42e..6ecf521c 100644 --- a/README.md +++ b/README.md @@ -198,7 +198,7 @@ Integrations and tools designed to simplify data exploration, analysis and enhan - [ChronulusAI/chronulus-mcp](https://github.com/ChronulusAI/chronulus-mcp) 🐍 ☁ - Predict anything with Chronulus AI forecasting and prediction agents. - [zcaceres/markdownify-mcp](https://github.com/zcaceres/markdownify-mcp) 📇 🏠 - An MCP server to convert almost any file or web content into Markdown - [@reading-plus-ai/mcp-server-data-exploration](https://github.com/reading-plus-ai/mcp-server-data-exploration) 🐍 ☁ - Enables autonomous data exploration on .csv-based datasets, providing intelligent insights with minimal effort. -- [zenml-io/mcp-zenml](https://github.com/zenml-io/mcp-zenml) | 📊 - An MCP server to connect with your [ZenML](https://www.zenml.io) MLOps and LLMOps pipelines +- [zenml-io/mcp-zenml](https://github.com/zenml-io/mcp-zenml) | 🐍 🏠 ☁ - An MCP server to connect with your [ZenML](https://www.zenml.io) MLOps and LLMOps pipelines ### 📂 File Systems From a14d76e0a316a17dff9f6d902843ffc5e0201a87 Mon Sep 17 00:00:00 2001 From: HJJ <54270760+JJ-H@users.noreply.github.com> Date: Tue, 18 Mar 2025 13:52:37 +0800 Subject: [PATCH 052/189] Add Gitee MCP to README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 263cf17f..cca8430d 100644 --- a/README.md +++ b/README.md @@ -346,6 +346,7 @@ Interact with Git repositories and version control platforms. Enables repository - [@modelcontextprotocol/server-github](https://github.com/modelcontextprotocol/servers/tree/main/src/github) 📇 ☁ - GitHub API integration for repository management, PRs, issues, and more - [@modelcontextprotocol/server-gitlab](https://github.com/modelcontextprotocol/servers/tree/main/src/gitlab) 📇 ☁ 🏠 - GitLab platform integration for project management and CI/CD operations +- [@oschina/mcp-gitee](https://github.com/oschina/gitee) 🏎 ☁ 🏠 - Gitee API integration, repository, issue, and pull request management, and more. - [@modelcontextprotocol/server-git](https://github.com/modelcontextprotocol/servers/tree/main/src/git) 🐍 🏠 - Direct Git repository operations including reading, searching, and analyzing local repositories - [adhikasp/mcp-git-ingest](https://github.com/adhikasp/mcp-git-ingest) 🐍 🏠 - Read and analyze GitHub repositories with your LLM From 6b4ca23c87cbfeb1ef71b8c1fcb310c58b08f28a Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Tue, 18 Mar 2025 13:24:37 +0100 Subject: [PATCH 053/189] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 263cf17f..bc7f96f4 100644 --- a/README.md +++ b/README.md @@ -298,6 +298,7 @@ Access and analyze application monitoring data. Enables AI models to review erro - [@modelcontextprotocol/server-raygun](https://github.com/MindscapeHQ/mcp-server-raygun) 📇 ☁ - Raygun API V3 integration for crash reporting and real user monitoring - [metoro-io/metoro-mcp-server](https://github.com/metoro-io/metoro-mcp-server) 🎖 🏎 ☁ - Query and interact with kubernetes environments monitored by Metoro - [grafana/mcp-grafana](https://github.com/grafana/mcp-grafana) 🎖 🐍 🏠 ☁ - Search dashboards, investigate incidents and query datasources in your Grafana instance +- [pydantic/logfire-mcp](https://github.com/pydantic/logfire-mcp) 🎖 🐍 ☁ - Provides access to OpenTelemetry traces and metrics through Logfire ### 🔎 Search From 48844a035af668b2d39affa54f9852dd0e3fb1de Mon Sep 17 00:00:00 2001 From: Arpit Batra Date: Tue, 18 Mar 2025 22:57:54 +0530 Subject: [PATCH 054/189] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 263cf17f..153237dd 100644 --- a/README.md +++ b/README.md @@ -140,6 +140,7 @@ Integration with communication platforms for message management and channel oper - [elie222/inbox-zero](https://github.com/elie222/inbox-zero/tree/main/apps/mcp-server) - 🐍 ☁ - An MCP server for Inbox Zero. Adds functionality on top of Gmail like finding out which emails you need to reply to or need to follow up on. - [carterlasalle/mac_messages_mcp](https://github.com/carterlasalle/mac_messages_mcp) 🏠 🍎 🚀 - An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages. - [sawa-zen/vrchat-mcp](https://github.com/sawa-zen/vrchat-mcp) - 📇 🏠 This is an MCP server for interacting with the VRChat API. You can retrieve information about friends, worlds, avatars, and more in VRChat. +[arpitbatra123/mcp-googletasks](https://github.com/arpitbatra123/mcp-googletasks) - 📇 ☁ - An MCP server to interface with the Google Tasks API ### 👀 Customer Data Platforms From 774c98f0abe96e698b851eea523795329aaff7e7 Mon Sep 17 00:00:00 2001 From: Thomas Katwan Date: Tue, 18 Mar 2025 10:42:24 -0700 Subject: [PATCH 055/189] add brwserbase mcp server --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 263cf17f..2fef8355 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,9 @@ Checkout [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) ### 📂 Browser Automation Web content access and automation capabilities. Enables searching, scraping, and processing web content in AI-friendly formats. + + +- [@browserbase/mcp-server-browserbase](https://github.com/browserbase/mcp-server-browserbase) 🅱 - Automate browser interactions in the cloud (e.g. web navigation, data extraction, form filling, and more) - [@blackwhite084/playwright-plus-python-mcp](https://github.com/blackwhite084/playwright-plus-python-mcp) 🌐 - An MCP python server using Playwright for browser automation,more suitable for llm - [@executeautomation/playwright-mcp-server](https://github.com/executeautomation/mcp-playwright) 🌐⚡ - An MCP server using Playwright for browser automation and webscrapping - [@automatalabs/mcp-server-playwright](https://github.com/Automata-Labs-team/MCP-Server-Playwright) 🌐 🖱 - An MCP server for browser automation using Playwright From c8ddedf9002945453f559e42747c118080e44128 Mon Sep 17 00:00:00 2001 From: Frank Date: Tue, 18 Mar 2025 12:48:31 -0700 Subject: [PATCH 056/189] feat:add heurist-mesh-mcp-server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 263cf17f..751a3a23 100644 --- a/README.md +++ b/README.md @@ -243,6 +243,7 @@ Provides direct access to local file systems with configurable permissions. Enab Financial data access and cryptocurrency market information. Enables querying real-time market data, crypto prices, and financial analytics. +- [heurist-network/heurist-mesh-mcp-server](https://github.com/heurist-network/heurist-mesh-mcp-server) ⛅ 🎖 🐍 📇 - Access specialized web3 AI agents for blockchain analysis, smart contract security auditing, token metrics evaluation, and on-chain interactions through the Heurist Mesh network. Provides comprehensive tools for DeFi analysis, NFT valuation, and transaction monitoring across multiple blockchains - [@base/base-mcp](https://github.com/base/base-mcp) 🎖 📇 ☁ - Base Network integration for onchain tools, allowing interaction with Base Network and Coinbase API for wallet management, fund transfers, smart contracts, and DeFi operations - [QuantGeekDev/coincap-mcp](https://github.com/QuantGeekDev/coincap-mcp) 📇 ☁ - Real-time cryptocurrency market data integration using CoinCap's public API, providing access to crypto prices and market information without API keys - [anjor/coinmarket-mcp-server](https://github.com/anjor/coinmarket-mcp-server) 🐍 ☁ - Coinmarket API integration to fetch cryptocurrency listings and quotes From 7cab09a69b82ddfd50f2bd3cb57324f8a1211ace Mon Sep 17 00:00:00 2001 From: Frank Date: Tue, 18 Mar 2025 12:54:41 -0700 Subject: [PATCH 057/189] change the order of legends --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 751a3a23..84723408 100644 --- a/README.md +++ b/README.md @@ -243,7 +243,7 @@ Provides direct access to local file systems with configurable permissions. Enab Financial data access and cryptocurrency market information. Enables querying real-time market data, crypto prices, and financial analytics. -- [heurist-network/heurist-mesh-mcp-server](https://github.com/heurist-network/heurist-mesh-mcp-server) ⛅ 🎖 🐍 📇 - Access specialized web3 AI agents for blockchain analysis, smart contract security auditing, token metrics evaluation, and on-chain interactions through the Heurist Mesh network. Provides comprehensive tools for DeFi analysis, NFT valuation, and transaction monitoring across multiple blockchains +- [heurist-network/heurist-mesh-mcp-server](https://github.com/heurist-network/heurist-mesh-mcp-server) 🎖 ⛅ 📇 🐍 - Access specialized web3 AI agents for blockchain analysis, smart contract security auditing, token metrics evaluation, and on-chain interactions through the Heurist Mesh network. Provides comprehensive tools for DeFi analysis, NFT valuation, and transaction monitoring across multiple blockchains - [@base/base-mcp](https://github.com/base/base-mcp) 🎖 📇 ☁ - Base Network integration for onchain tools, allowing interaction with Base Network and Coinbase API for wallet management, fund transfers, smart contracts, and DeFi operations - [QuantGeekDev/coincap-mcp](https://github.com/QuantGeekDev/coincap-mcp) 📇 ☁ - Real-time cryptocurrency market data integration using CoinCap's public API, providing access to crypto prices and market information without API keys - [anjor/coinmarket-mcp-server](https://github.com/anjor/coinmarket-mcp-server) 🐍 ☁ - Coinmarket API integration to fetch cryptocurrency listings and quotes From 9e5e7b13a4da2847727d9a10e1551fbb2ac970bd Mon Sep 17 00:00:00 2001 From: Frank Date: Tue, 18 Mar 2025 12:56:28 -0700 Subject: [PATCH 058/189] add Local Service emoji --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 84723408..2e7127a4 100644 --- a/README.md +++ b/README.md @@ -243,7 +243,7 @@ Provides direct access to local file systems with configurable permissions. Enab Financial data access and cryptocurrency market information. Enables querying real-time market data, crypto prices, and financial analytics. -- [heurist-network/heurist-mesh-mcp-server](https://github.com/heurist-network/heurist-mesh-mcp-server) 🎖 ⛅ 📇 🐍 - Access specialized web3 AI agents for blockchain analysis, smart contract security auditing, token metrics evaluation, and on-chain interactions through the Heurist Mesh network. Provides comprehensive tools for DeFi analysis, NFT valuation, and transaction monitoring across multiple blockchains +- [heurist-network/heurist-mesh-mcp-server](https://github.com/heurist-network/heurist-mesh-mcp-server) 🎖 ⛅ 🏠 🐍 - Access specialized web3 AI agents for blockchain analysis, smart contract security auditing, token metrics evaluation, and on-chain interactions through the Heurist Mesh network. Provides comprehensive tools for DeFi analysis, NFT valuation, and transaction monitoring across multiple blockchains - [@base/base-mcp](https://github.com/base/base-mcp) 🎖 📇 ☁ - Base Network integration for onchain tools, allowing interaction with Base Network and Coinbase API for wallet management, fund transfers, smart contracts, and DeFi operations - [QuantGeekDev/coincap-mcp](https://github.com/QuantGeekDev/coincap-mcp) 📇 ☁ - Real-time cryptocurrency market data integration using CoinCap's public API, providing access to crypto prices and market information without API keys - [anjor/coinmarket-mcp-server](https://github.com/anjor/coinmarket-mcp-server) 🐍 ☁ - Coinmarket API integration to fetch cryptocurrency listings and quotes From 8e33261e1627e60ac1f4f960bb343f03b9e0f303 Mon Sep 17 00:00:00 2001 From: Sam Coward Date: Tue, 18 Mar 2025 19:14:37 -0400 Subject: [PATCH 059/189] Add an influxdb mcp server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 263cf17f..76b9d0c4 100644 --- a/README.md +++ b/README.md @@ -190,6 +190,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [XGenerationLab/xiyan_mcp_server](https://github.com/XGenerationLab/xiyan_mcp_server) 📇 ☁ — An MCP server that supports fetching data from a database using natural language queries, powered by XiyanSQL as the text-to-SQL LLM. - [bytebase/dbhub](https://github.com/bytebase/dbhub) 📇 🏠 – Universal database MCP server supporting mainstream databases. - [GreptimeTeam/greptimedb-mcp-server](https://github.com/GreptimeTeam/greptimedb-mcp-server) 🐍 🏠 - MCP Server for querying GreptimeDB. +- **[idoru/influxdb-mcp-server](https://github.com/idoru/influxdb-mcp-server)** 📇 ☁ 🏠 - Run queries against InfluxDB OSS API v2. ### 💻 Developer Tools From deb28482c96d515dbc868a8ad902daa04b10ab51 Mon Sep 17 00:00:00 2001 From: Ken Liao Date: Tue, 18 Mar 2025 22:53:09 -0700 Subject: [PATCH 060/189] Add MCP server for RabbitMQ --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 263cf17f..7517243f 100644 --- a/README.md +++ b/README.md @@ -409,7 +409,7 @@ Interact with Git repositories and version control platforms. Enables repository - [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ Allows AI models to interact with [Kibela](https://kibe.la/) - [blurrah/mcp-graphql](https://github.com/blurrah/mcp-graphql) 📇 ☁ - Allows the AI to query GraphQL servers - [@awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - Provides the ability to generate images via Replicate's API. - +- [kenliao94/mcp-server-rabbitmq](https://github.com/kenliao94/mcp-server-rabbitmq) 🎖🐍 🏠 - Enable interaction (admin operation, message enqueue/dequeue) with RabbitMQ ## Frameworks - [FastMCP](https://github.com/jlowin/fastmcp) 🐍 - A high-level framework for building MCP servers in Python From 6061db9d6e9b464064145a408ddeb32e296a064f Mon Sep 17 00:00:00 2001 From: seekrays Date: Wed, 19 Mar 2025 15:22:40 +0800 Subject: [PATCH 061/189] add mco-monitor --- README-zh.md | 2 +- README.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README-zh.md b/README-zh.md index 51e56f8d..2063bd30 100644 --- a/README-zh.md +++ b/README-zh.md @@ -247,7 +247,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [@modelcontextprotocol/server-raygun](https://github.com/MindscapeHQ/mcp-server-raygun) 📇 ☁ - Raygun API V3 集成甚于厩溃报告和真实甚户监控 - [metoro-io/metoro-mcp-server](https://github.com/metoro-io/metoro-mcp-server) 🎖 🏎 ☁ - 查询并䞎 Metoro 监控的 kubernetes 环境亀互 - [grafana/mcp-grafana](https://github.com/grafana/mcp-grafana) 🎖 🐍 🏠 ☁ - 圚 Grafana 实䟋䞭搜玢仪衚盘、调查事件并查询数据源 - +- [seekrays/mcp-monitor](https://github.com/seekrays/mcp-monitor) 🏎 🏠 - 监控系统CPU、Memory、Disk、Network、Host、Process等信息并于llm进行亀付 ### 🔎 搜玢 - [@modelcontextprotocol/server-brave-search](https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search) 📇 ☁ - 䜿甚 Brave 的搜玢 API 实现眑页搜玢功胜 diff --git a/README.md b/README.md index 263cf17f..123103a5 100644 --- a/README.md +++ b/README.md @@ -298,6 +298,8 @@ Access and analyze application monitoring data. Enables AI models to review erro - [@modelcontextprotocol/server-raygun](https://github.com/MindscapeHQ/mcp-server-raygun) 📇 ☁ - Raygun API V3 integration for crash reporting and real user monitoring - [metoro-io/metoro-mcp-server](https://github.com/metoro-io/metoro-mcp-server) 🎖 🏎 ☁ - Query and interact with kubernetes environments monitored by Metoro - [grafana/mcp-grafana](https://github.com/grafana/mcp-grafana) 🎖 🐍 🏠 ☁ - Search dashboards, investigate incidents and query datasources in your Grafana instance +- [seekrays/mcp-monitor](https://github.com/seekrays/mcp-monitor) 🏎 🏠 - A system monitoring tool that exposes system metrics via the Model Context Protocol (MCP). This tool allows LLMs to retrieve real-time system information through an MCP-compatible interface.support CPU、Memory、Disk、Network、Host、Process + ### 🔎 Search From 71cdd0a845e0d6e168f6fd54b2c3425f498db7ba Mon Sep 17 00:00:00 2001 From: seekrays-bot Date: Wed, 19 Mar 2025 15:46:16 +0800 Subject: [PATCH 062/189] Update README-zh.md Co-authored-by: Se7en --- README-zh.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README-zh.md b/README-zh.md index 2063bd30..ecda8097 100644 --- a/README-zh.md +++ b/README-zh.md @@ -247,7 +247,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [@modelcontextprotocol/server-raygun](https://github.com/MindscapeHQ/mcp-server-raygun) 📇 ☁ - Raygun API V3 集成甚于厩溃报告和真实甚户监控 - [metoro-io/metoro-mcp-server](https://github.com/metoro-io/metoro-mcp-server) 🎖 🏎 ☁ - 查询并䞎 Metoro 监控的 kubernetes 环境亀互 - [grafana/mcp-grafana](https://github.com/grafana/mcp-grafana) 🎖 🐍 🏠 ☁ - 圚 Grafana 实䟋䞭搜玢仪衚盘、调查事件并查询数据源 -- [seekrays/mcp-monitor](https://github.com/seekrays/mcp-monitor) 🏎 🏠 - 监控系统CPU、Memory、Disk、Network、Host、Process等信息并于llm进行亀付 +- [seekrays/mcp-monitor](https://github.com/seekrays/mcp-monitor) 🏎 🏠 - 监控系统 CPU、Memory、Disk、Network、Host、Process 等信息并䞎 LLM 进行亀互 ### 🔎 搜玢 - [@modelcontextprotocol/server-brave-search](https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search) 📇 ☁ - 䜿甚 Brave 的搜玢 API 实现眑页搜玢功胜 From f9078161bfa4397fefa70f5f6b1c5a8c519bc620 Mon Sep 17 00:00:00 2001 From: marcelmarais Date: Wed, 19 Mar 2025 16:06:59 +0100 Subject: [PATCH 063/189] Add new Spotify MCP server --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 263cf17f..17e6bf53 100644 --- a/README.md +++ b/README.md @@ -409,6 +409,8 @@ Interact with Git repositories and version control platforms. Enables repository - [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ Allows AI models to interact with [Kibela](https://kibe.la/) - [blurrah/mcp-graphql](https://github.com/blurrah/mcp-graphql) 📇 ☁ - Allows the AI to query GraphQL servers - [@awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - Provides the ability to generate images via Replicate's API. +- [Spotify](https://github.com/marcelmarais/spotify-mcp-server) - 📇🏠 Control Spotify playback and manage playlists. + ## Frameworks From 3f3e313b794dd76dec033a51fd79196ff8d0b02f Mon Sep 17 00:00:00 2001 From: Stefanie Jane Date: Wed, 19 Mar 2025 10:12:49 -0700 Subject: [PATCH 064/189] Add DroidMind and Lucidity MCP servers * DroidMind is an MCP server to manage and control Android devices via MCP * Lucidity is an MCP that can analyze your current changeset for common issues encountered when using coding assistants --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 263cf17f..bf15c011 100644 --- a/README.md +++ b/README.md @@ -218,6 +218,7 @@ Tools and integrations that enhance the development workflow and environment man - [@Jktfe/serveMyAPI](https://github.com/Jktfe/serveMyAPI) 📇 🏠 🍎 - A personal MCP (Model Context Protocol) server for securely storing and accessing API keys across projects using the macOS Keychain. - [@xzq.xu/jvm-mcp-server](https://github.com/xzq-xu/jvm-mcp-server) 📇 🏠 - An implementation project of a JVM-based MCP (Model Context Protocol) server. - [@yangkyeongmo@/mcp-server-apache-airflow](https://github.com/yangkyeongmo/mcp-server-apache-airflow) 🐍 🏠 - MCP server that connects to [Apache Airflow](https://airflow.apache.org/) using official client. +- [hyperb1iss/droidmind](https://github.com/hyperb1iss/droidmind) 🐍 🏠 - Control Android devices with AI through MCP, enabling device control, debugging, system analysis, and UI automation with a comprehensive security framework. ### 🧮 Data Science Tools @@ -298,6 +299,7 @@ Access and analyze application monitoring data. Enables AI models to review erro - [@modelcontextprotocol/server-raygun](https://github.com/MindscapeHQ/mcp-server-raygun) 📇 ☁ - Raygun API V3 integration for crash reporting and real user monitoring - [metoro-io/metoro-mcp-server](https://github.com/metoro-io/metoro-mcp-server) 🎖 🏎 ☁ - Query and interact with kubernetes environments monitored by Metoro - [grafana/mcp-grafana](https://github.com/grafana/mcp-grafana) 🎖 🐍 🏠 ☁ - Search dashboards, investigate incidents and query datasources in your Grafana instance +- [hyperb1iss/lucidity-mcp](https://github.com/hyperb1iss/lucidity-mcp) 🐍 🏠 - Enhance AI-generated code quality through intelligent, prompt-based analysis across 10 critical dimensions from complexity to security vulnerabilities ### 🔎 Search From f5d03193ca35eff96ea00d29ff2b4cc451f3ee81 Mon Sep 17 00:00:00 2001 From: CoderGamester Date: Wed, 19 Mar 2025 20:37:19 +0200 Subject: [PATCH 065/189] Add Gaming section for japanese and chinese readme files add Unity3d MCP server --- README-ja.md | 8 ++++++++ README-zh.md | 8 ++++++++ README.md | 1 + 3 files changed, 17 insertions(+) diff --git a/README-ja.md b/README-ja.md index 2e932ea1..13269915 100644 --- a/README-ja.md +++ b/README-ja.md @@ -49,6 +49,7 @@ * 🗄 - [デヌタベヌス](#databases) * 🛠 - [開発者ツヌル](#developer-tools) * 📂 - [ファむルシステム](#file-systems) +* 🎮 - [ ゲヌミング](#gaming) * 🧠 - [知識ず蚘憶](#knowledge--memory) * 🗺 - [䜍眮情報サヌビス](#location-services) * 📊 - [監芖](#monitoring) @@ -132,6 +133,13 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [mark3labs/mcp-filesystem-server](https://github.com/mark3labs/mcp-filesystem-server) 🏎 🏠 - ロヌカルファむルシステムアクセスのためのGolang実装。 - [Xuanwo/mcp-server-opendal](https://github.com/Xuanwo/mcp-server-opendal) 🐍 🏠 ☁ - Apache OpenDAL™ でどのストレヌゞにもアクセスできたす +### 🎮 ゲヌミング + +ゲヌミングに関連するデヌタずサヌビスずの統合 + +- [rishijatia/fantasy-pl-mcp](https://github.com/rishijatia/fantasy-pl-mcp/) 🐍 ☁ - 実際のFantasy Premier Leagueデヌタず分析ツヌルのためのMCPサヌバヌ +- [CoderGamester/mcp-unity](https://github.com/CoderGamester/mcp-unity) 📇 #⃣ 🏠 - Unity3dゲヌム゚ンゞン統合によるゲヌム開発甚MCPサヌバヌ + ### 🧠 知識ず蚘憶 知識グラフ構造を䜿甚した氞続的なメモリストレヌゞ。セッション間で構造化情報を維持およびク゚リするこずができたす。 diff --git a/README-zh.md b/README-zh.md index 51e56f8d..6c5e62ea 100644 --- a/README-zh.md +++ b/README-zh.md @@ -69,6 +69,7 @@ * 🛠 - [匀发者工具](#developer-tools) * 📂 - [文件系统](#file-systems) * 💰 - [Finance & Fintech](#finance--fintech) +* 🎮 - [枞戏](#gaming) * 🧠 - [知识䞎记忆](#knowledge--memory) * 🗺 - [䜍眮服务](#location-services) * 🎯 - [营销](#marketing) @@ -214,6 +215,13 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [berlinbra/alpha-vantage-mcp](https://github.com/berlinbra/alpha-vantage-mcp) 🐍 ☁ - Alpha Vantage API 集成甚于获取股祚和加密莧垁信息 - [ferdousbhai/tasty-agent](https://github.com/ferdousbhai/tasty-agent) 🐍 ☁ - Tastyworks API 集成甚于管理 Tastytrade 平台的亀易掻劚 +### 🎮 枞戏 + +枞戏盞关数据和服务集成 + +- [rishijatia/fantasy-pl-mcp](https://github.com/rishijatia/fantasy-pl-mcp/) 🐍 ☁ - 甚于实时 Fantasy Premier League 数据和分析工具的 MCP 服务噚。 +- [CoderGamester/mcp-unity](https://github.com/CoderGamester/mcp-unity) 📇 #⃣ 🏠 - Unity3d 枞戏匕擎集成 MCP 服务噚 + ### 🧠 知识䞎记忆 䜿甚知识囟谱结构的持久内存存傚。䜿 AI 暡型胜借跚䌚话绎技和查询结构化信息。 diff --git a/README.md b/README.md index 263cf17f..6dd416d4 100644 --- a/README.md +++ b/README.md @@ -261,6 +261,7 @@ Financial data access and cryptocurrency market information. Enables querying re Integration with gaming related data, and services - [rishijatia/fantasy-pl-mcp](https://github.com/rishijatia/fantasy-pl-mcp/) 🐍 ☁ - An MCP server for real-time Fantasy Premier League data and analysis tools. +- [CoderGamester/mcp-unity](https://github.com/CoderGamester/mcp-unity) 📇 #⃣ 🏠 - MCP Server for Unity3d Game Engine integration for game development ### 🧠 Knowledge & Memory From 7a5cbfba4475309c6f954c013031f90810a8dfd4 Mon Sep 17 00:00:00 2001 From: Sylvain Kalache Date: Wed, 19 Mar 2025 14:55:03 -0400 Subject: [PATCH 066/189] Update README.md Adding Rootly MCP server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 263cf17f..37951cd4 100644 --- a/README.md +++ b/README.md @@ -218,6 +218,7 @@ Tools and integrations that enhance the development workflow and environment man - [@Jktfe/serveMyAPI](https://github.com/Jktfe/serveMyAPI) 📇 🏠 🍎 - A personal MCP (Model Context Protocol) server for securely storing and accessing API keys across projects using the macOS Keychain. - [@xzq.xu/jvm-mcp-server](https://github.com/xzq-xu/jvm-mcp-server) 📇 🏠 - An implementation project of a JVM-based MCP (Model Context Protocol) server. - [@yangkyeongmo@/mcp-server-apache-airflow](https://github.com/yangkyeongmo/mcp-server-apache-airflow) 🐍 🏠 - MCP server that connects to [Apache Airflow](https://airflow.apache.org/) using official client. +- [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - MCP server for the incident management platform [Rootly](https://rootly.com/). ### 🧮 Data Science Tools From e891164398450b5fca559a62e7ad589aae613fe1 Mon Sep 17 00:00:00 2001 From: Sylvain Kalache Date: Wed, 19 Mar 2025 15:06:17 -0400 Subject: [PATCH 067/189] Update README-ja.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit RootlyのMCPサヌバヌを远加䞭 --- README-ja.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README-ja.md b/README-ja.md index 2e932ea1..1dd967da 100644 --- a/README-ja.md +++ b/README-ja.md @@ -122,6 +122,7 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [@joshuarileydev/terminal-mcp-server](https://www.npmjs.com/package/@joshuarileydev/terminal-mcp-server) 📇 🏠 - 任意のシェルタヌミナルコマンドを実行するためのMCPサヌバヌ - [tumf/mcp-text-editor](https://github.com/tumf/mcp-text-editor) - ラむン゚ディタ 行単䜍の取埗ず線集ができるので、特に倧きなファむルの䞀郚曞き換えを効率的に行う - [ferrislucas/iterm-mcp](https://github.com/ferrislucas/iterm-mcp) 🖥 🛠 💬 - iTermぞのアクセスを提䟛するモデルコンテキストプロトコルサヌバヌ。コマンドを実行し、iTermタヌミナルで芋た内容に぀いお質問するこずができたす。 +- [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - むンシデント管理プラットフォヌム[Rootly](https://rootly.com/)向けのMCPサヌバヌ ### 📂 ファむルシステム From 51c0ec337ab1593fa39ce66b0688f3bc283dbf79 Mon Sep 17 00:00:00 2001 From: Sylvain Kalache Date: Wed, 19 Mar 2025 15:07:53 -0400 Subject: [PATCH 068/189] Update README-zh.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 甚于事件管理平台 Rootly 的 MCP 服务噚 --- README-zh.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README-zh.md b/README-zh.md index 51e56f8d..d3881b9d 100644 --- a/README-zh.md +++ b/README-zh.md @@ -185,6 +185,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [vivekVells/mcp-pandoc](https://github.com/vivekVells/mcp-pandoc) 🗄 🚀 - 基于 Pandoc 的 MCP 服务噚支持 Markdown、HTML、PDF、DOCX.docx、csv 等栌匏之闎的无猝蜬换 - [pskill9/website-downloader](https://github.com/pskill9/website-downloader) 🗄 🚀 - 这䞪 MCP 服务噚提䟛了䜿甚 wget 䞋蜜完敎眑站的工具可保留眑站结构并蜬换铟接以支持本地访问 - [j4c0bs/mcp-server-sql-analyzer](https://github.com/j4c0bs/mcp-server-sql-analyzer) 🐍 - 基于 [SQLGlot](https://github.com/tobymao/sqlglot) 的 MCP 服务噚提䟛 SQL 分析、代码检查和方蚀蜬换功胜 +- - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - 甚于事件管理平台 Rootly](https://rootly.com/) 的 MCP 服务噚 ### 🧮 数据科孊工具 From 7839b97e86b6bb5d9013ada2bdaf68b0a74fefb9 Mon Sep 17 00:00:00 2001 From: YuChenSSR Date: Thu, 20 Mar 2025 04:04:44 +0800 Subject: [PATCH 069/189] Add the link and description of mindmap-mcp-server. --- README-ja.md | 2 ++ README-zh.md | 2 ++ README.md | 2 ++ 3 files changed, 6 insertions(+) diff --git a/README-ja.md b/README-ja.md index 2e932ea1..87648802 100644 --- a/README-ja.md +++ b/README-ja.md @@ -123,6 +123,8 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [tumf/mcp-text-editor](https://github.com/tumf/mcp-text-editor) - ラむン゚ディタ 行単䜍の取埗ず線集ができるので、特に倧きなファむルの䞀郚曞き換えを効率的に行う - [ferrislucas/iterm-mcp](https://github.com/ferrislucas/iterm-mcp) 🖥 🛠 💬 - iTermぞのアクセスを提䟛するモデルコンテキストプロトコルサヌバヌ。コマンドを実行し、iTermタヌミナルで芋た内容に぀いお質問するこずができたす。 +- [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - きれいなむンタラクティブなマむンドマップを生成するためのモデルコンテキストプロトコルMCPサヌバ。 + ### 📂 ファむルシステム 構成可胜な暩限を備えたロヌカルファむルシステムぞの盎接アクセスを提䟛したす。指定されたディレクトリ内のファむルを読み取り、曞き蟌み、管理するこずができたす。 diff --git a/README-zh.md b/README-zh.md index 51e56f8d..c134cef7 100644 --- a/README-zh.md +++ b/README-zh.md @@ -186,6 +186,8 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [pskill9/website-downloader](https://github.com/pskill9/website-downloader) 🗄 🚀 - 这䞪 MCP 服务噚提䟛了䜿甚 wget 䞋蜜完敎眑站的工具可保留眑站结构并蜬换铟接以支持本地访问 - [j4c0bs/mcp-server-sql-analyzer](https://github.com/j4c0bs/mcp-server-sql-analyzer) 🐍 - 基于 [SQLGlot](https://github.com/tobymao/sqlglot) 的 MCP 服务噚提䟛 SQL 分析、代码检查和方蚀蜬换功胜 +- [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - 甚于生成挂亮亀互匏思绎富囟mindmap的暡型䞊䞋文协议MCP服务噚。 + ### 🧮 数据科孊工具 旚圚简化数据探玢、分析和增区数据科孊工䜜流皋的集成和工具。 diff --git a/README.md b/README.md index 263cf17f..269c7a05 100644 --- a/README.md +++ b/README.md @@ -219,6 +219,8 @@ Tools and integrations that enhance the development workflow and environment man - [@xzq.xu/jvm-mcp-server](https://github.com/xzq-xu/jvm-mcp-server) 📇 🏠 - An implementation project of a JVM-based MCP (Model Context Protocol) server. - [@yangkyeongmo@/mcp-server-apache-airflow](https://github.com/yangkyeongmo/mcp-server-apache-airflow) 🐍 🏠 - MCP server that connects to [Apache Airflow](https://airflow.apache.org/) using official client. +- [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - A Model Context Protocol (MCP) server for generating a beautiful interactive mindmap. + ### 🧮 Data Science Tools Integrations and tools designed to simplify data exploration, analysis and enhance data science workflows. From 5f74198b3dd79e0ec2f6b9b40a1b95bacb830c7f Mon Sep 17 00:00:00 2001 From: Solomon Elias <60202842+Coding-Solo@users.noreply.github.com> Date: Wed, 19 Mar 2025 18:30:30 -0400 Subject: [PATCH 070/189] add godot-mcp --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 263cf17f..9fc83b68 100644 --- a/README.md +++ b/README.md @@ -258,9 +258,10 @@ Financial data access and cryptocurrency market information. Enables querying re ### 🎮 Gaming -Integration with gaming related data, and services +Integration with gaming related data, game engines, and services - [rishijatia/fantasy-pl-mcp](https://github.com/rishijatia/fantasy-pl-mcp/) 🐍 ☁ - An MCP server for real-time Fantasy Premier League data and analysis tools. +- [Coding-Solo/godot-mcp](https://github.com/Coding-Solo/godot-mcp) 📇 🏠 - A MCP server for interacting with the Godot game engine, providing tools for editing, running, debugging, and managing scenes in Godot projects. ### 🧠 Knowledge & Memory From 5bdcb37f7d1cb624386cce21008d9a59a74065ff Mon Sep 17 00:00:00 2001 From: YuChenSSR <55662670+YuChenSSR@users.noreply.github.com> Date: Thu, 20 Mar 2025 06:32:17 +0800 Subject: [PATCH 071/189] update README-ja.md --- README-ja.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README-ja.md b/README-ja.md index 87648802..e04573a7 100644 --- a/README-ja.md +++ b/README-ja.md @@ -122,7 +122,6 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [@joshuarileydev/terminal-mcp-server](https://www.npmjs.com/package/@joshuarileydev/terminal-mcp-server) 📇 🏠 - 任意のシェルタヌミナルコマンドを実行するためのMCPサヌバヌ - [tumf/mcp-text-editor](https://github.com/tumf/mcp-text-editor) - ラむン゚ディタ 行単䜍の取埗ず線集ができるので、特に倧きなファむルの䞀郚曞き換えを効率的に行う - [ferrislucas/iterm-mcp](https://github.com/ferrislucas/iterm-mcp) 🖥 🛠 💬 - iTermぞのアクセスを提䟛するモデルコンテキストプロトコルサヌバヌ。コマンドを実行し、iTermタヌミナルで芋た内容に぀いお質問するこずができたす。 - - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - きれいなむンタラクティブなマむンドマップを生成するためのモデルコンテキストプロトコルMCPサヌバ。 ### 📂 ファむルシステム From 017e7bf485827d436a8326f90e1b4dc3cee7d5db Mon Sep 17 00:00:00 2001 From: YuChenSSR <55662670+YuChenSSR@users.noreply.github.com> Date: Thu, 20 Mar 2025 06:33:16 +0800 Subject: [PATCH 072/189] update README-zh.md --- README-zh.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README-zh.md b/README-zh.md index c134cef7..a56fbd69 100644 --- a/README-zh.md +++ b/README-zh.md @@ -185,7 +185,6 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [vivekVells/mcp-pandoc](https://github.com/vivekVells/mcp-pandoc) 🗄 🚀 - 基于 Pandoc 的 MCP 服务噚支持 Markdown、HTML、PDF、DOCX.docx、csv 等栌匏之闎的无猝蜬换 - [pskill9/website-downloader](https://github.com/pskill9/website-downloader) 🗄 🚀 - 这䞪 MCP 服务噚提䟛了䜿甚 wget 䞋蜜完敎眑站的工具可保留眑站结构并蜬换铟接以支持本地访问 - [j4c0bs/mcp-server-sql-analyzer](https://github.com/j4c0bs/mcp-server-sql-analyzer) 🐍 - 基于 [SQLGlot](https://github.com/tobymao/sqlglot) 的 MCP 服务噚提䟛 SQL 分析、代码检查和方蚀蜬换功胜 - - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - 甚于生成挂亮亀互匏思绎富囟mindmap的暡型䞊䞋文协议MCP服务噚。 ### 🧮 数据科孊工具 From 89535bc8719c2f7dd8cf99e2b184220b6a9bed4f Mon Sep 17 00:00:00 2001 From: YuChenSSR <55662670+YuChenSSR@users.noreply.github.com> Date: Thu, 20 Mar 2025 06:34:05 +0800 Subject: [PATCH 073/189] update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 269c7a05..cd2ff0c0 100644 --- a/README.md +++ b/README.md @@ -218,7 +218,6 @@ Tools and integrations that enhance the development workflow and environment man - [@Jktfe/serveMyAPI](https://github.com/Jktfe/serveMyAPI) 📇 🏠 🍎 - A personal MCP (Model Context Protocol) server for securely storing and accessing API keys across projects using the macOS Keychain. - [@xzq.xu/jvm-mcp-server](https://github.com/xzq-xu/jvm-mcp-server) 📇 🏠 - An implementation project of a JVM-based MCP (Model Context Protocol) server. - [@yangkyeongmo@/mcp-server-apache-airflow](https://github.com/yangkyeongmo/mcp-server-apache-airflow) 🐍 🏠 - MCP server that connects to [Apache Airflow](https://airflow.apache.org/) using official client. - - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - A Model Context Protocol (MCP) server for generating a beautiful interactive mindmap. ### 🧮 Data Science Tools From 61844386f1bf97b3ce563bef761de89be4b9a456 Mon Sep 17 00:00:00 2001 From: Solomon Elias <60202842+Coding-Solo@users.noreply.github.com> Date: Wed, 19 Mar 2025 18:35:24 -0400 Subject: [PATCH 074/189] fix alphabetical order --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9fc83b68..7c5fafd6 100644 --- a/README.md +++ b/README.md @@ -260,8 +260,8 @@ Financial data access and cryptocurrency market information. Enables querying re Integration with gaming related data, game engines, and services -- [rishijatia/fantasy-pl-mcp](https://github.com/rishijatia/fantasy-pl-mcp/) 🐍 ☁ - An MCP server for real-time Fantasy Premier League data and analysis tools. - [Coding-Solo/godot-mcp](https://github.com/Coding-Solo/godot-mcp) 📇 🏠 - A MCP server for interacting with the Godot game engine, providing tools for editing, running, debugging, and managing scenes in Godot projects. +- [rishijatia/fantasy-pl-mcp](https://github.com/rishijatia/fantasy-pl-mcp/) 🐍 ☁ - An MCP server for real-time Fantasy Premier League data and analysis tools. ### 🧠 Knowledge & Memory From 9ea13c08e0f7cba1e97300dbb029a5a861ee652a Mon Sep 17 00:00:00 2001 From: Muller Helen Date: Thu, 20 Mar 2025 08:49:47 +0800 Subject: [PATCH 075/189] Update README.md add scala mcp --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 263cf17f..ea62d69c 100644 --- a/README.md +++ b/README.md @@ -428,7 +428,8 @@ Interact with Git repositories and version control platforms. Enables repository - [@marimo-team/codemirror-mcp](https://github.com/marimo-team/codemirror-mcp) - CodeMirror extension that implements the Model Context Protocol (MCP) for resource mentions and prompt commands. - [quarkus-mcp-server](https://github.com/quarkiverse/quarkus-mcp-server) ☕ - Java SDK for building MCP servers using Quarkus. - [mcp-agent](https://github.com/lastmile-ai/mcp-agent) 🀖 🔌 - Build effective agents with MCP servers using simple, composable patterns. - +- [sakura-mcp](https://github.com/mullerhai/sakura-mcp) 🌞 🔌 - Scala MCP Framework for Build effective agents with MCP servers and MCP clients shade from modelcontextprotocol.io.🏒🏒 + ## Utilities - [boilingdata/mcp-server-and-gw](https://github.com/boilingdata/mcp-server-and-gw) 📇 - An MCP stdio to HTTP SSE transport gateway with example server and MCP client. From c3d23c9622b3c5cb4653bf3b95c8131c29eb5d89 Mon Sep 17 00:00:00 2001 From: Muller Helen Date: Thu, 20 Mar 2025 08:54:25 +0800 Subject: [PATCH 076/189] Update README-zh.md --- README-zh.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README-zh.md b/README-zh.md index 51e56f8d..fca26472 100644 --- a/README-zh.md +++ b/README-zh.md @@ -357,7 +357,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [salty-flower/ModelContextProtocol.NET](https://github.com/salty-flower/ModelContextProtocol.NET) #⃣🏠 - 基于 .NET 9 的 C# MCP 服务噚 SDK 支持 NativeAOT ⚡ 🔌 - [spring-ai-mcp](https://github.com/spring-projects-experimental/spring-ai-mcp) ☕ 🌱 - 甚于构建 MCP 客户端和服务噚的 Java SDK 和 Spring Framework 集成支持倚种可插拔的䌠蟓选项 - [@marimo-team/codemirror-mcp](https://github.com/marimo-team/codemirror-mcp) - CodeMirror 扩展实现了甚于资源提及和提瀺呜什的暡型䞊䞋文协议 (MCP) - +- [sakura-mcp](https://github.com/mullerhai/sakura-mcp) 🌞 🔌 - Scala MCP 框架 构建䌁䞚级MCP客户端和服务端 shade from modelcontextprotocol.io.🏒🏒 ## 实甚工具 - [boilingdata/mcp-server-and-gw](https://github.com/boilingdata/mcp-server-and-gw) 📇 - 垊有瀺䟋服务噚和 MCP 客户端的 MCP stdio 到 HTTP SSE 䌠蟓眑关 From cc28e9173c4e755686801605ff2b30cbf00731f4 Mon Sep 17 00:00:00 2001 From: Suyog Sonwalkar Date: Wed, 19 Mar 2025 19:41:12 -0700 Subject: [PATCH 077/189] Add mcp-chat as utility Hi, I wrote [mcp-chat](https://github.com/Flux159/mcp-chat) in order to quickly test & iterate with prompts for my kubernetes mcp server. Thought the utility would be helpful for other MCP server developers so decided to add it here --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index fbb5ed67..1f392fe7 100644 --- a/README.md +++ b/README.md @@ -444,6 +444,7 @@ Interact with Git repositories and version control platforms. Enables repository - [kukapay/whereami-mcp](https://github.com/kukapay/whereami-mcp) 🐍 ☁ - A lightweight mcp server that tells you exactly where you are based on your current IP. - [kukapay/whattimeisit-mcp](https://github.com/kukapay/whattimeisit-mcp) 🐍 ☁ - A lightweight mcp server that tells you exactly what time is it. - [kukapay/whoami-mcp](https://github.com/kukapay/whoami-mcp) 🐍 🏠 - A lightweight MCP server that tells you exactly who you are. +- [flux159/mcp-chat](https://github.com/flux159/mcp-chat) 📇🖥 - A CLI based client to chat and connect with any MCP server. Useful during development & testing of MCP servers. ## Tips and Tricks From ed95b78092f088b1c8bba0c8a7df92cd53211df2 Mon Sep 17 00:00:00 2001 From: wenhuwang Date: Thu, 20 Mar 2025 13:41:43 +0800 Subject: [PATCH 078/189] docs: add mcp-k8s-eye Signed-off-by: wenhuwang --- README-ja.md | 1 + README-zh.md | 1 + README.md | 1 + 3 files changed, 3 insertions(+) diff --git a/README-ja.md b/README-ja.md index 4baccde8..3bf80f88 100644 --- a/README-ja.md +++ b/README-ja.md @@ -73,6 +73,7 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [Cloudflare MCP Server](https://github.com/cloudflare/mcp-server-cloudflare) 🎖 📇 ☁ - Workers、KV、R2、D1を含むCloudflareサヌビスずの統合 - [Kubernetes MCP Server](https://github.com/strowk/mcp-k8s-go) - 🏎 ☁ MCPを通じたKubernetesクラスタヌ操䜜 +- [wenhuwang/mcp-k8s-eye](https://github.com/wenhuwang/mcp-k8s-eye) 🏎 ☁/🏠 Kubernetes クラスタヌのリ゜ヌス管理ず、クラスタヌずアプリケヌションの健党性ステヌタスの詳现な分析を提䟛したす。 ### 💬 コミュニケヌション diff --git a/README-zh.md b/README-zh.md index 64d954be..fa6cc685 100644 --- a/README-zh.md +++ b/README-zh.md @@ -105,6 +105,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [Cloudflare MCP Server](https://github.com/cloudflare/mcp-server-cloudflare) 🎖 📇 ☁ - 侎 Cloudflare 服务集成包括 Workers、KV、R2 和 D1 - [Kubernetes MCP Server](https://github.com/strowk/mcp-k8s-go) - 🏎 ☁ 通过 MCP 操䜜 Kubernetes 集矀 - [@flux159/mcp-server-kubernetes](https://github.com/Flux159/mcp-server-kubernetes) - 📇 ☁/🏠 䜿甚 Typescript 实现 Kubernetes 集矀䞭针对 pod、郚眲、服务的操䜜。 +- [wenhuwang/mcp-k8s-eye](https://github.com/wenhuwang/mcp-k8s-eye) 🏎 ☁/🏠 提䟛 Kubernetes 集矀资源管理, 深床分析集矀和应甚的健康状态 - [johnneerdael/netskope-mcp](https://github.com/johnneerdael/netskope-mcp) 🔒 ☁ - 提䟛对 Netskope Private Access 环境䞭所有组件的访问权限包含诊细的讟眮信息和 LLM 䜿甚瀺䟋。 ### 🖥 Command Line diff --git a/README.md b/README.md index fbb5ed67..d2b4b37a 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,7 @@ Cloud platform service integration. Enables management and interaction with clou - [Kubernetes MCP Server](https://github.com/strowk/mcp-k8s-go) - 🏎 ☁/🏠 Kubernetes cluster operations through MCP - [@flux159/mcp-server-kubernetes](https://github.com/Flux159/mcp-server-kubernetes) - 📇 ☁/🏠 Typescript implementation of Kubernetes cluster operations for pods, deployments, services. - [@manusa/Kubernetes MCP Server](https://github.com/manusa/kubernetes-mcp-server) - 🏎 🏠 A powerful Kubernetes MCP server with additional support for OpenShift. Besides providing CRUD operations for **any** Kubernetes resource, this server provides specialized tools to interact with your cluster. +- [wenhuwang/mcp-k8s-eye](https://github.com/wenhuwang/mcp-k8s-eye) 🏎 ☁/🏠 MCP Server for kubernetes management, and analyze your cluster, application health - [johnneerdael/netskope-mcp](https://github.com/johnneerdael/netskope-mcp) 🔒 ☁ - An MCP to give access to all Netskope Private Access components within a Netskope Private Access environments including detailed setup information and LLM examples on usage. - [nwiizo/tfmcp](https://github.com/nwiizo/tfmcp) - 🊀 🏠 - A Terraform MCP server allowing AI assistants to manage and operate Terraform environments, enabling reading configurations, analyzing plans, applying configurations, and managing Terraform state. From 5e027a622020201d9a7a8f032f82f235d9d4e29e Mon Sep 17 00:00:00 2001 From: Jaeger Date: Thu, 20 Mar 2025 18:46:11 +0800 Subject: [PATCH 079/189] add Fetcher MCP --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index fbb5ed67..5d90fc95 100644 --- a/README.md +++ b/README.md @@ -325,6 +325,7 @@ Access and analyze application monitoring data. Enables AI models to review erro - [nickclyde/duckduckgo-mcp-server](https://github.com/nickclyde/duckduckgo-mcp-server) 🐍 ☁ - Web search using DuckDuckGo - [zhsama/duckduckgo-mcp-server](https://github.com/zhsama/duckduckgo-mpc-server/) 📇 🏠 ☁ - This is a TypeScript-based MCP server that provides DuckDuckGo search functionality. - [vectorize-io/vectorize-mcp-server](https://github.com/vectorize-io/vectorize-mcp-server/) ☁ 📇 - [Vectorize](https://vectorize.io) MCP server for advanced retrieval, Private Deep Research, Anything-to-Markdown file extraction and text chunking. +- [jae-jae/fetcher-mcp](https://github.com/jae-jae/fetcher-mcp) 📇 🏠 - MCP server for fetching web page content using Playwright headless browser, supporting Javascript rendering and intelligent content extraction, and outputting Markdown or HTML format. ### 🔒 Security From 0e1ead2990ade608a808c2a319d4b944741cb46e Mon Sep 17 00:00:00 2001 From: kukapay Date: Mon, 17 Mar 2025 14:41:29 +0800 Subject: [PATCH 080/189] add 3 crypto mcp servers: pancakeswap, uniswap and token-minter --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 263cf17f..62612491 100644 --- a/README.md +++ b/README.md @@ -255,7 +255,10 @@ Financial data access and cryptocurrency market information. Enables querying re - [kukapay/whale-tracker-mcp](https://github.com/kukapay/whale-tracker-mcp) 🐍 ☁ - A mcp server for tracking cryptocurrency whale transactions. - [kukapay/crypto-feargreed-mcp](https://github.com/kukapay/crypto-feargreed-mcp) 🐍 ☁ - Providing real-time and historical Crypto Fear & Greed Index data. - [kukapay/dune-analytics-mcp](https://github.com/kukapay/dune-analytics-mcp) 🐍 ☁ - A mcp server that bridges Dune Analytics data to AI agents. - +- [kukapay/pancakeswap-poolspy-mcp](https://github.com/kukapay/pancakeswap-poolspy-mcp) 🐍 ☁ - An MCP server that tracks newly created pools on Pancake Swap. +- [kukapay/uniswap-poolspy-mcp](https://github.com/kukapay/uniswap-poolspy-mcp) 🐍 ☁ - An MCP server that tracks newly created liquidity pools on Uniswap across multiple blockchains. +- [kukapay/token-minter-mcp](https://github.com/kukapay/token-minter-mcp) 🐍 ☁ - An MCP server providing tools for AI agents to mint ERC-20 tokens across multiple blockchains. + ### 🎮 Gaming Integration with gaming related data, and services From 14b9f957b847e9f9835810d8eae046b4f83a6c6d Mon Sep 17 00:00:00 2001 From: pab1it0 Date: Thu, 20 Mar 2025 16:13:21 +0200 Subject: [PATCH 081/189] Add Prometheus config --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index fbb5ed67..b94caed2 100644 --- a/README.md +++ b/README.md @@ -186,6 +186,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [runekaagaard/mcp-alchemy](https://github.com/runekaagaard/mcp-alchemy) 🐍 🏠 - Universal SQLAlchemy-based database integration supporting PostgreSQL, MySQL, MariaDB, SQLite, Oracle, MS SQL Server and many more databases. Features schema and relationship inspection, and large dataset analysis capabilities. - [mcp-server-jdbc](https://github.com/quarkiverse/quarkus-mcp-servers/tree/main/jdbc) ☕ 🏠 - Connect to any JDBC-compatible database and query, insert, update, delete, and more. - [pab1it0/adx-mcp-server](https://github.com/pab1it0/adx-mcp-server) 🐍 ☁ - Query and analyze Azure Data Explorer databases +- [pab1it0/prometheus-mcp-server](https://github.com/pab1it0/prometheus-mcp-server) 🐍 ☁ - Query and analyze Prometheus, open-source monitoring system. - [neondatabase/mcp-server-neon](https://github.com/neondatabase/mcp-server-neon) 📇 ☁ — An MCP Server for creating and managing Postgres databases using Neon Serverless Postgres - [XGenerationLab/xiyan_mcp_server](https://github.com/XGenerationLab/xiyan_mcp_server) 📇 ☁ — An MCP server that supports fetching data from a database using natural language queries, powered by XiyanSQL as the text-to-SQL LLM. - [bytebase/dbhub](https://github.com/bytebase/dbhub) 📇 🏠 – Universal database MCP server supporting mainstream databases. From dbf1c19bcd520394c7f5b3a7cb6e86abacf97b2d Mon Sep 17 00:00:00 2001 From: NakaokaRei Date: Thu, 20 Mar 2025 23:58:00 +0900 Subject: [PATCH 082/189] add swift-mcp-gui --- README-ja.md | 1 + README-zh.md | 1 + README.md | 1 + 3 files changed, 3 insertions(+) diff --git a/README-ja.md b/README-ja.md index 4baccde8..5dd1199c 100644 --- a/README-ja.md +++ b/README-ja.md @@ -228,6 +228,7 @@ Gitリポゞトリおよびバヌゞョン管理プラットフォヌムずの - [NON906/omniparser-autogui-mcp](https://github.com/NON906/omniparser-autogui-mcp) 🐍 - 画面䞊のGUIの自動操䜜 - [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ [Kibela](https://kibe.la/)ずの連携 - [@awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - Replicate APIを通じお画像を生成する機胜を提䟛したす。 +- [NakaokaRei/swift-mcp-gui](https://github.com/NakaokaRei/swift-mcp-gui.git) 🏠 🍏 - キヌボヌド入力やマりス移動などのコマンドが実行できるMCPサヌバヌ ## フレヌムワヌク diff --git a/README-zh.md b/README-zh.md index 64d954be..378bad68 100644 --- a/README-zh.md +++ b/README-zh.md @@ -343,6 +343,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [AbdelStark/bitcoin-mcp](https://github.com/AbdelStark/bitcoin-mcp) - ₿ 䞀䞪暡型䞊䞋文协议MCP服务噚䜿 AI 暡型胜借䞎比特垁亀互允讞它们生成密钥、验证地址、解码亀易、查询区块铟等 - [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ [Kibela](https://kibe.la/) 侎 MCP 的集成 - [@awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - 通过Replicate API提䟛囟像生成功胜。 +- [NakaokaRei/swift-mcp-gui](https://github.com/NakaokaRei/swift-mcp-gui.git) 🏠 🍏 - MCP服务噚可以执行键盘蟓入、錠标移劚等呜什 ## 框架 - [FastMCP](https://github.com/jlowin/fastmcp) 🐍 - 甚于圚 Python 䞭构建 MCP 服务噚的高级框架 diff --git a/README.md b/README.md index fbb5ed67..dffaaf9a 100644 --- a/README.md +++ b/README.md @@ -411,6 +411,7 @@ Interact with Git repositories and version control platforms. Enables repository - [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ Allows AI models to interact with [Kibela](https://kibe.la/) - [blurrah/mcp-graphql](https://github.com/blurrah/mcp-graphql) 📇 ☁ - Allows the AI to query GraphQL servers - [@awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - Provides the ability to generate images via Replicate's API. +- [NakaokaRei/swift-mcp-gui](https://github.com/NakaokaRei/swift-mcp-gui.git) 🏠 🍏 - MCP server that can execute commands such as keyboard input and mouse movement ## Frameworks From bfd5a91ddf19ad2c663ff4677cd972967be7b342 Mon Sep 17 00:00:00 2001 From: Brock Wilcox Date: Thu, 20 Mar 2025 11:53:33 -0400 Subject: [PATCH 083/189] Add taskwarrior Also adds a Linux emoji because why not --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index fbb5ed67..080bf559 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,7 @@ Checkout [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) * operating system * 🍎 – For macOS * 🪟 – For Windows + * 🐧 - For Linux > [!NOTE] > Confused about Local 🏠 vs Cloud ☁? @@ -411,6 +412,7 @@ Interact with Git repositories and version control platforms. Enables repository - [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ Allows AI models to interact with [Kibela](https://kibe.la/) - [blurrah/mcp-graphql](https://github.com/blurrah/mcp-graphql) 📇 ☁ - Allows the AI to query GraphQL servers - [@awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - Provides the ability to generate images via Replicate's API. +- [](https://github.com/awwaiid/mcp-server-taskwarrior) 🏠 📇 - An MCP server for basic local taskwarrior usage (add, update, remove tasks) ## Frameworks From d0222a9027ab59f87164d076c72bba1ce184d46c Mon Sep 17 00:00:00 2001 From: Alexei Ledenev Date: Thu, 20 Mar 2025 18:12:45 +0200 Subject: [PATCH 084/189] Add new AWS MCP server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index fbb5ed67..669bca7e 100644 --- a/README.md +++ b/README.md @@ -110,6 +110,7 @@ Access and explore art collections, cultural heritage, and museum databases. Ena Cloud platform service integration. Enables management and interaction with cloud infrastructure and services. - [Cloudflare MCP Server](https://github.com/cloudflare/mcp-server-cloudflare) 🎖 📇 ☁ - Integration with Cloudflare services including Workers, KV, R2, and D1 +- [alexei-led/aws-mcp-server](https://github.com/alexei-led/aws-mcp-server) 🐍 ☁ - A lightweight but powerful server that enables AI assistants to execute AWS CLI commands, use Unix pipes, and apply prompt templates for common AWS tasks in a safe Docker environment with multi-architecture support - [Kubernetes MCP Server](https://github.com/strowk/mcp-k8s-go) - 🏎 ☁/🏠 Kubernetes cluster operations through MCP - [@flux159/mcp-server-kubernetes](https://github.com/Flux159/mcp-server-kubernetes) - 📇 ☁/🏠 Typescript implementation of Kubernetes cluster operations for pods, deployments, services. - [@manusa/Kubernetes MCP Server](https://github.com/manusa/kubernetes-mcp-server) - 🏎 🏠 A powerful Kubernetes MCP server with additional support for OpenShift. Besides providing CRUD operations for **any** Kubernetes resource, this server provides specialized tools to interact with your cluster. From 38f8c7626b5bc79d8984a13b3da7578c34790e11 Mon Sep 17 00:00:00 2001 From: KyrieTangSheng Date: Thu, 20 Mar 2025 13:32:20 -0700 Subject: [PATCH 085/189] add new server -- mcp-server-nationalparks --- README-ja.md | 1 + README-zh.md | 1 + README.md | 1 + 3 files changed, 3 insertions(+) diff --git a/README-ja.md b/README-ja.md index 4baccde8..b3f73f1a 100644 --- a/README-ja.md +++ b/README-ja.md @@ -181,6 +181,7 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb 旅行および亀通情報ぞのアクセス。スケゞュヌル、ルヌト、およびリアルタむムの旅行デヌタをク゚リするこずができたす。 - [NS Travel Information MCP Server](https://github.com/r-huijts/ns-mcp-server) 📇 ☁ - オランダ鉄道NSの旅行情報、スケゞュヌル、およびリアルタむムの曎新にアクセス +- [KyrieTangSheng/mcp-server-nationalparks](https://github.com/KyrieTangSheng/mcp-server-nationalparks) 📇 ☁ - 米囜囜立公園局APIの統合で、米囜囜立公園の詳现情報、譊報、ビゞタヌセンタヌ、キャンプ堎、むベントの最新情報を提䟛 ### 🔄 バヌゞョン管理 diff --git a/README-zh.md b/README-zh.md index 64d954be..ddffe921 100644 --- a/README-zh.md +++ b/README-zh.md @@ -286,6 +286,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 访问旅行和亀通信息。可以查询时刻衚、路线和实时旅行数据。 - [NS Travel Information MCP Server](https://github.com/r-huijts/ns-mcp-server) 📇 ☁ - 了解荷兰铁路 (NS) 的旅行信息、时刻衚和实时曎新 +- [KyrieTangSheng/mcp-server-nationalparks](https://github.com/KyrieTangSheng/mcp-server-nationalparks) 📇 ☁ - 矎囜囜家公园管理局 API 集成提䟛矎囜囜家公园的诊细信息、譊报、枞客䞭心、露营地和掻劚的最新信息 ### 🔄 版本控制 diff --git a/README.md b/README.md index fbb5ed67..5f19ae0b 100644 --- a/README.md +++ b/README.md @@ -341,6 +341,7 @@ Access to travel and transportation information. Enables querying schedules, rou - [Airbnb MCP Server](https://github.com/openbnb-org/mcp-server-airbnb) 📇 ☁ - Provides tools to search Airbnb and get listing details. - [NS Travel Information MCP Server](https://github.com/r-huijts/ns-mcp-server) 📇 ☁ - Access Dutch Railways (NS) travel information, schedules, and real-time updates +- [KyrieTangSheng/mcp-server-nationalparks](https://github.com/KyrieTangSheng/mcp-server-nationalparks) 📇 ☁ - National Park Service API integration providing latest information of park details, alerts, visitor centers, campgrounds, and events for U.S. National Parks ### 🔄 Version Control From 3c62aae683f536117f71372b50310279509abc92 Mon Sep 17 00:00:00 2001 From: Shane Savoie Date: Thu, 20 Mar 2025 16:12:46 -0700 Subject: [PATCH 086/189] fix: swap the description for jira-mcp-server and confluence-mcp-server --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fbb5ed67..e8ed60a1 100644 --- a/README.md +++ b/README.md @@ -372,8 +372,8 @@ Interact with Git repositories and version control platforms. Enables repository - [suekou/mcp-notion-server](https://github.com/suekou/mcp-notion-server) 📇 🏠 - Interacting with Notion API - [amidabuddha/unichat-mcp-server](https://github.com/amidabuddha/unichat-mcp-server) 🐍/📇 ☁ - Send requests to OpenAI, MistralAI, Anthropic, xAI, Google AI or DeepSeek using MCP protocol via tool or predefined prompts. Vendor API key required - [evalstate/mcp-miro](https://github.com/evalstate/mcp-miro) 📇 ☁ - Access MIRO whiteboards, bulk create and read items. Requires OAUTH key for REST API. -- [KS-GEN-AI/jira-mcp-server](https://github.com/KS-GEN-AI/jira-mcp-server) 📇 ☁ 🍎 🪟 - Get Confluence data via CQL and read pages. -- [KS-GEN-AI/confluence-mcp-server](https://github.com/KS-GEN-AI/confluence-mcp-server) 📇 ☁ 🍎 🪟 - Read jira data via JQL and api and execute requests to create and edit tickets. +- [KS-GEN-AI/jira-mcp-server](https://github.com/KS-GEN-AI/jira-mcp-server) 📇 ☁ 🍎 🪟 - Read jira data via JQL and api and execute requests to create and edit tickets. +- [KS-GEN-AI/confluence-mcp-server](https://github.com/KS-GEN-AI/confluence-mcp-server) 📇 ☁ 🍎 🪟 - Get Confluence data via CQL and read pages. - [sooperset/mcp-atlassian](https://github.com/sooperset/mcp-atlassian) 🐍 ☁ - MCP server for Atlassian products (Confluence and Jira). Supports Confluence Cloud, Jira Cloud, and Jira Server/Data Center. Provides comprehensive tools for searching, reading, creating, and managing content across Atlassian workspaces. - [pyroprompts/any-chat-completions-mcp](https://github.com/pyroprompts/any-chat-completions-mcp) - Chat with any other OpenAI SDK Compatible Chat Completions API, like Perplexity, Groq, xAI and more - [anaisbetts/mcp-installer](https://github.com/anaisbetts/mcp-installer) 🐍 🏠 - An MCP server that installs other MCP servers for you. From 85a6caf50cbdbbd071a0f171758de9e5382c3e38 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Thu, 20 Mar 2025 19:32:34 -0600 Subject: [PATCH 087/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 080bf559..5d82eb1a 100644 --- a/README.md +++ b/README.md @@ -412,7 +412,7 @@ Interact with Git repositories and version control platforms. Enables repository - [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ Allows AI models to interact with [Kibela](https://kibe.la/) - [blurrah/mcp-graphql](https://github.com/blurrah/mcp-graphql) 📇 ☁ - Allows the AI to query GraphQL servers - [@awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - Provides the ability to generate images via Replicate's API. -- [](https://github.com/awwaiid/mcp-server-taskwarrior) 🏠 📇 - An MCP server for basic local taskwarrior usage (add, update, remove tasks) +- [awwaiid/mcp-server-taskwarrior](https://github.com/awwaiid/mcp-server-taskwarrior) 🏠 📇 - An MCP server for basic local taskwarrior usage (add, update, remove tasks) ## Frameworks From 617b8f2233cf234279d397a22a8ba6c6ab2e7745 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Thu, 20 Mar 2025 20:21:00 -0600 Subject: [PATCH 088/189] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7517243f..b2210dfd 100644 --- a/README.md +++ b/README.md @@ -409,7 +409,8 @@ Interact with Git repositories and version control platforms. Enables repository - [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ Allows AI models to interact with [Kibela](https://kibe.la/) - [blurrah/mcp-graphql](https://github.com/blurrah/mcp-graphql) 📇 ☁ - Allows the AI to query GraphQL servers - [@awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - Provides the ability to generate images via Replicate's API. -- [kenliao94/mcp-server-rabbitmq](https://github.com/kenliao94/mcp-server-rabbitmq) 🎖🐍 🏠 - Enable interaction (admin operation, message enqueue/dequeue) with RabbitMQ +- [kenliao94/mcp-server-rabbitmq](https://github.com/kenliao94/mcp-server-rabbitmq) 🐍 🏠 - Enable interaction (admin operation, message enqueue/dequeue) with RabbitMQ + ## Frameworks - [FastMCP](https://github.com/jlowin/fastmcp) 🐍 - A high-level framework for building MCP servers in Python From b20ffb3b22698ad3bd294bc1e9dee531363ef765 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Thu, 20 Mar 2025 20:22:00 -0600 Subject: [PATCH 089/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 76b9d0c4..c9cd7e9c 100644 --- a/README.md +++ b/README.md @@ -190,7 +190,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [XGenerationLab/xiyan_mcp_server](https://github.com/XGenerationLab/xiyan_mcp_server) 📇 ☁ — An MCP server that supports fetching data from a database using natural language queries, powered by XiyanSQL as the text-to-SQL LLM. - [bytebase/dbhub](https://github.com/bytebase/dbhub) 📇 🏠 – Universal database MCP server supporting mainstream databases. - [GreptimeTeam/greptimedb-mcp-server](https://github.com/GreptimeTeam/greptimedb-mcp-server) 🐍 🏠 - MCP Server for querying GreptimeDB. -- **[idoru/influxdb-mcp-server](https://github.com/idoru/influxdb-mcp-server)** 📇 ☁ 🏠 - Run queries against InfluxDB OSS API v2. +- [idoru/influxdb-mcp-server](https://github.com/idoru/influxdb-mcp-server) 📇 ☁ 🏠 - Run queries against InfluxDB OSS API v2. ### 💻 Developer Tools From 0731a748fd5e574b31fd80f7de0d269bc6976462 Mon Sep 17 00:00:00 2001 From: Muller Helen Date: Fri, 21 Mar 2025 10:47:20 +0800 Subject: [PATCH 090/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ea62d69c..85872d93 100644 --- a/README.md +++ b/README.md @@ -428,7 +428,7 @@ Interact with Git repositories and version control platforms. Enables repository - [@marimo-team/codemirror-mcp](https://github.com/marimo-team/codemirror-mcp) - CodeMirror extension that implements the Model Context Protocol (MCP) for resource mentions and prompt commands. - [quarkus-mcp-server](https://github.com/quarkiverse/quarkus-mcp-server) ☕ - Java SDK for building MCP servers using Quarkus. - [mcp-agent](https://github.com/lastmile-ai/mcp-agent) 🀖 🔌 - Build effective agents with MCP servers using simple, composable patterns. -- [sakura-mcp](https://github.com/mullerhai/sakura-mcp) 🌞 🔌 - Scala MCP Framework for Build effective agents with MCP servers and MCP clients shade from modelcontextprotocol.io.🏒🏒 +- [sakura-mcp](https://github.com/mullerhai/sakura-mcp) 🊀 ☕ - Scala MCP Framework for Build effective agents with MCP servers and MCP clients shade from modelcontextprotocol.io. ## Utilities From d4113ef6e4313fa67cf1149932e4928e3de1f369 Mon Sep 17 00:00:00 2001 From: Muller Helen Date: Fri, 21 Mar 2025 10:48:17 +0800 Subject: [PATCH 091/189] Update README-zh.md --- README-zh.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README-zh.md b/README-zh.md index fca26472..d0221c55 100644 --- a/README-zh.md +++ b/README-zh.md @@ -357,7 +357,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [salty-flower/ModelContextProtocol.NET](https://github.com/salty-flower/ModelContextProtocol.NET) #⃣🏠 - 基于 .NET 9 的 C# MCP 服务噚 SDK 支持 NativeAOT ⚡ 🔌 - [spring-ai-mcp](https://github.com/spring-projects-experimental/spring-ai-mcp) ☕ 🌱 - 甚于构建 MCP 客户端和服务噚的 Java SDK 和 Spring Framework 集成支持倚种可插拔的䌠蟓选项 - [@marimo-team/codemirror-mcp](https://github.com/marimo-team/codemirror-mcp) - CodeMirror 扩展实现了甚于资源提及和提瀺呜什的暡型䞊䞋文协议 (MCP) -- [sakura-mcp](https://github.com/mullerhai/sakura-mcp) 🌞 🔌 - Scala MCP 框架 构建䌁䞚级MCP客户端和服务端 shade from modelcontextprotocol.io.🏒🏒 +- [sakura-mcp](https://github.com/mullerhai/sakura-mcp) 🊀☕ 🔌 - Scala MCP 框架 构建䌁䞚级MCP客户端和服务端 shade from modelcontextprotocol.io. ## 实甚工具 - [boilingdata/mcp-server-and-gw](https://github.com/boilingdata/mcp-server-and-gw) 📇 - 垊有瀺䟋服务噚和 MCP 客户端的 MCP stdio 到 HTTP SSE 䌠蟓眑关 From 6653b636481986c0383fa37b53b8a52dc5da42e2 Mon Sep 17 00:00:00 2001 From: ScriptShi Date: Fri, 21 Mar 2025 15:32:50 +0800 Subject: [PATCH 092/189] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 83a4844f..37af00e8 100644 --- a/README.md +++ b/README.md @@ -157,6 +157,7 @@ Provides access to customer profiles inside of customer data platforms Secure database access with schema inspection capabilities. Enables querying and analyzing data with configurable security controls including read-only access. +- [aliyun/alibabacloud-tablestore-mcp-server](https://github.com/aliyun/alibabacloud-tablestore-mcp-server) ☕ 🐍 ☁ - MCP service for Tablestore, features include adding documents, semantic search for documents based on vectors and scalars, RAG-friendly, and serverless. - [cr7258/elasticsearch-mcp-server](https://github.com/cr7258/elasticsearch-mcp-server) 🐍 🏠 - MCP Server implementation that provides Elasticsearch interaction - [domdomegg/airtable-mcp-server](https://github.com/domdomegg/airtable-mcp-server) 📇 🏠 - Airtable database integration with schema inspection, read and write capabilities - [rashidazarang/airtable-mcp](https://github.com/rashidazarang/airtable-mcp) 🐍 ☁ - Connect AI tools directly to Airtable. Query, create, update, and delete records using natural language. Features include base management, table operations, schema manipulation, record filtering, and data migration through a standardized MCP interface. From 41355a2f74c008c41cd3b60d5abde2cae7e1f72e Mon Sep 17 00:00:00 2001 From: ScriptShi Date: Fri, 21 Mar 2025 15:37:05 +0800 Subject: [PATCH 093/189] Update README-zh.md 1 --- README-zh.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README-zh.md b/README-zh.md index e3ad8c31..0a958496 100644 --- a/README-zh.md +++ b/README-zh.md @@ -145,6 +145,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 具有暡匏检查功胜的安党数据库访问。支持䜿甚可配眮的安党控制包括只读访问查询和分析数据。 +- [aliyun/alibabacloud-tablestore-mcp-server](https://github.com/aliyun/alibabacloud-tablestore-mcp-server) ☕ 🐍 ☁ - 阿里云衚栌存傚(Tablestore)的 MCP 服务噚实现特性包括添加文档、基于向量和标量进行语义搜玢、RAG友奜。 - [cr7258/elasticsearch-mcp-server](https://github.com/cr7258/elasticsearch-mcp-server) 🐍 🏠 - 集成 Elasticsearch 的 MCP 服务噚实现 - [domdomegg/airtable-mcp-server](https://github.com/domdomegg/airtable-mcp-server) 📇 🏠 - Airtable 数据库集成具有架构检查、读写功胜 - [LucasHild/mcp-server-bigquery](https://github.com/LucasHild/mcp-server-bigquery) 🐍 ☁ - BigQuery 数据库集成了架构检查和查询功胜 From 358d690d97f8f13c47e0a102e9e008dfc4730a19 Mon Sep 17 00:00:00 2001 From: ScriptShi Date: Fri, 21 Mar 2025 15:39:02 +0800 Subject: [PATCH 094/189] Update README-ja.md --- README-ja.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README-ja.md b/README-ja.md index 2c3f06b6..c4fd62e2 100644 --- a/README-ja.md +++ b/README-ja.md @@ -96,6 +96,8 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb スキヌマ怜査機胜を備えた安党なデヌタベヌスアクセス。読み取り専甚アクセスを含む構成可胜なセキュリティ制埡を䜿甚しおデヌタをク゚リおよび分析するこずができたす。 +- [aliyun/alibabacloud-tablestore-mcp-server](https://github.com/aliyun/alibabacloud-tablestore-mcp-server) ☕ 🐍 ☁ - テヌブル ストア甚の MC P サヌビスには、ドキュメントの远加、ドキュメント ベヌスのセマンティック怜玢、ドン ベクトル サンド スカラヌがラグ フレンドリヌでサヌバヌ レスなどの機胜がありたす。 +aliyun/alibabacloud-tablestore-mcp-server ☕ 🐍 ☁ - 阿里云衚栌存傚(Tablestore)的 MCP 服务噚实现特性包括添加文档、基于向量和标量进行语义搜玢、RAG友奜。 - [cr7258/elasticsearch-mcp-server](https://github.com/cr7258/elasticsearch-mcp-server) 🐍 🏠 - MCPサヌバヌの実装で、Elasticsearchずのむンタラクションを提䟛したす - [domdomegg/airtable-mcp-server](https://github.com/domdomegg/airtable-mcp-server) 📇 🏠 - スキヌマ怜査、読み取り/曞き蟌み機胜を備えた Airtable デヌタベヌス統合 - [LucasHild/mcp-server-bigquery](https://github.com/LucasHild/mcp-server-bigquery) 🐍 ☁ - スキヌマ怜査ずク゚リ機胜を備えたBigQueryデヌタベヌス統合 From 1a9952bb69ac7865b03e84217872d146ae84e276 Mon Sep 17 00:00:00 2001 From: YongGit <1013588891@qq.com> Date: Fri, 21 Mar 2025 16:20:22 +0800 Subject: [PATCH 095/189] docs: add InhiblabCore/mcp-image-compression mcp --- README-ja.md | 1 + README-zh.md | 1 + README.md | 1 + 3 files changed, 3 insertions(+) diff --git a/README-ja.md b/README-ja.md index 2c3f06b6..bf893073 100644 --- a/README-ja.md +++ b/README-ja.md @@ -126,6 +126,7 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [ferrislucas/iterm-mcp](https://github.com/ferrislucas/iterm-mcp) 🖥 🛠 💬 - iTermぞのアクセスを提䟛するモデルコンテキストプロトコルサヌバヌ。コマンドを実行し、iTermタヌミナルで芋た内容に぀いお質問するこずができたす。 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - むンシデント管理プラットフォヌム[Rootly](https://rootly.com/)向けのMCPサヌバヌ - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - きれいなむンタラクティブなマむンドマップを生成するためのモデルコンテキストプロトコルMCPサヌバ。 +- [InhiblabCore/mcp-image-compression](https://github.com/InhiblabCore/mcp-image-compression) 🌄 ⬇ - 様々な画像フォヌマットのロヌカル圧瞮のためのMCPサヌバヌ。 ### 📂 ファむルシステム diff --git a/README-zh.md b/README-zh.md index e3ad8c31..456b6bd1 100644 --- a/README-zh.md +++ b/README-zh.md @@ -189,6 +189,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [j4c0bs/mcp-server-sql-analyzer](https://github.com/j4c0bs/mcp-server-sql-analyzer) 🐍 - 基于 [SQLGlot](https://github.com/tobymao/sqlglot) 的 MCP 服务噚提䟛 SQL 分析、代码检查和方蚀蜬换功胜 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - 甚于事件管理平台 Rootly](https://rootly.com/) 的 MCP 服务噚 - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - 甚于生成挂亮亀互匏思绎富囟mindmap的暡型䞊䞋文协议MCP服务噚。 +- [InhiblabCore/mcp-image-compression](https://github.com/InhiblabCore/mcp-image-compression) 🌄 ⬇ - 甚于本地压猩各种囟片栌匏的 MCP 服务噚。 ### 🧮 数据科孊工具 diff --git a/README.md b/README.md index 83a4844f..aa8bf5b2 100644 --- a/README.md +++ b/README.md @@ -226,6 +226,7 @@ Tools and integrations that enhance the development workflow and environment man - [hyperb1iss/droidmind](https://github.com/hyperb1iss/droidmind) 🐍 🏠 - Control Android devices with AI through MCP, enabling device control, debugging, system analysis, and UI automation with a comprehensive security framework. - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - MCP server for the incident management platform [Rootly](https://rootly.com/). - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - A Model Context Protocol (MCP) server for generating a beautiful interactive mindmap. +- [InhiblabCore/mcp-image-compression](https://github.com/InhiblabCore/mcp-image-compression) 🌄 ⬇ - MCP server for local compression of various image formats. ### 🧮 Data Science Tools From df748136117ce99e959a8c9de6572d23add87ec4 Mon Sep 17 00:00:00 2001 From: Martin Garcia Date: Fri, 21 Mar 2025 09:59:37 +0100 Subject: [PATCH 096/189] Add Giphy MCP server to Other Tools and Integrations --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2879a597..53f1ceab 100644 --- a/README.md +++ b/README.md @@ -393,6 +393,7 @@ Interact with Git repositories and version control platforms. Enables repository - [isaacwasserman/mcp-vegalite-server](https://github.com/isaacwasserman/mcp-vegalite-server) 🐍 🏠 - Generate visualizations from fetched data using the VegaLite format and renderer. - [tevonsb/homeassistant-mcp](https://github.com/tevonsb/homeassistant-mcp) 📇 🏠 - Access Home Assistant data and control devices (lights, switches, thermostats, etc). - [allenporter/mcp-server-home-assistant](https://github.com/allenporter/mcp-server-home-assistant) 🐍 🏠 - Expose all Home Assistant voice intents through a Model Context Protocol Server allowing home control. +- [@magarcia/mcp-server-giphy](https://github.com/magarcia/mcp-server-giphy) 📇 ☁ - Search and retrieve GIFs from Giphy's vast library through the Giphy API. - [nguyenvanduocit/all-in-one-model-context-protocol](https://github.com/nguyenvanduocit/all-in-one-model-context-protocol) 🏎 🏠 - Some useful tools for developer, almost everything an engineer need: confluence, Jira, Youtube, run script, knowledge base RAG, fetch URL, Manage youtube channel, emails, calendar, gitlab - [@joshuarileydev/mac-apps-launcher-mcp-server](https://github.com/JoshuaRileyDev/mac-apps-launcher) 📇 🏠 - An MCP server to list and launch applications on MacOS - [ZeparHyfar/mcp-datetime](https://github.com/ZeparHyfar/mcp-datetime) - MCP server providing date and time functions in various formats From c45cc3be9fe3ad85b4a1099a7aa909790dfa9a5a Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Fri, 21 Mar 2025 09:51:52 -0600 Subject: [PATCH 097/189] Update README-zh.md --- README-zh.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README-zh.md b/README-zh.md index f5f03051..b636bc58 100644 --- a/README-zh.md +++ b/README-zh.md @@ -370,7 +370,8 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [salty-flower/ModelContextProtocol.NET](https://github.com/salty-flower/ModelContextProtocol.NET) #⃣🏠 - 基于 .NET 9 的 C# MCP 服务噚 SDK 支持 NativeAOT ⚡ 🔌 - [spring-ai-mcp](https://github.com/spring-projects-experimental/spring-ai-mcp) ☕ 🌱 - 甚于构建 MCP 客户端和服务噚的 Java SDK 和 Spring Framework 集成支持倚种可插拔的䌠蟓选项 - [@marimo-team/codemirror-mcp](https://github.com/marimo-team/codemirror-mcp) - CodeMirror 扩展实现了甚于资源提及和提瀺呜什的暡型䞊䞋文协议 (MCP) -- [sakura-mcp](https://github.com/mullerhai/sakura-mcp) 🊀☕ 🔌 - Scala MCP 框架 构建䌁䞚级MCP客户端和服务端 shade from modelcontextprotocol.io. +- [mullerhai/sakura-mcp](https://github.com/mullerhai/sakura-mcp) 🊀 ☕ 🔌 - Scala MCP 框架 构建䌁䞚级MCP客户端和服务端 shade from modelcontextprotocol.io. +- ## 实甚工具 - [boilingdata/mcp-server-and-gw](https://github.com/boilingdata/mcp-server-and-gw) 📇 - 垊有瀺䟋服务噚和 MCP 客户端的 MCP stdio 到 HTTP SSE 䌠蟓眑关 From 4deea0edfb6d3a27e19b2f99068c7e9af9759b16 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Fri, 21 Mar 2025 09:52:39 -0600 Subject: [PATCH 098/189] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 31d623c1..283465c4 100644 --- a/README.md +++ b/README.md @@ -442,11 +442,11 @@ Interact with Git repositories and version control platforms. Enables repository - [metoro-io/mcp-golang](https://github.com/metoro-io/mcp-golang) 🏎 - Golang framework for building MCP Servers, focussed on type safety - [rectalogic/langchain-mcp](https://github.com/rectalogic/langchain-mcp) 🐍 - Provides MCP tool calling support in LangChain, allowing for the integration of MCP tools into LangChain workflows. - [salty-flower/ModelContextProtocol.NET](https://github.com/salty-flower/ModelContextProtocol.NET) #⃣ 🏠 - A C# SDK for building MCP servers on .NET 9 with NativeAOT compatibility ⚡ 🔌 -- [spring-ai-mcp](https://github.com/spring-projects-experimental/spring-ai-mcp) ☕ 🌱 - Java SDK and Spring Framework integration for building MCP client and MCP servers with various, plugable, transport options. +- [spring-projects-experimental/spring-ai-mcp](https://github.com/spring-projects-experimental/spring-ai-mcp) ☕ 🌱 - Java SDK and Spring Framework integration for building MCP client and MCP servers with various, plugable, transport options. - [@marimo-team/codemirror-mcp](https://github.com/marimo-team/codemirror-mcp) - CodeMirror extension that implements the Model Context Protocol (MCP) for resource mentions and prompt commands. -- [quarkus-mcp-server](https://github.com/quarkiverse/quarkus-mcp-server) ☕ - Java SDK for building MCP servers using Quarkus. -- [mcp-agent](https://github.com/lastmile-ai/mcp-agent) 🀖 🔌 - Build effective agents with MCP servers using simple, composable patterns. -- [sakura-mcp](https://github.com/mullerhai/sakura-mcp) 🊀 ☕ - Scala MCP Framework for Build effective agents with MCP servers and MCP clients shade from modelcontextprotocol.io. +- [quarkiverse/quarkus-mcp-server](https://github.com/quarkiverse/quarkus-mcp-server) ☕ - Java SDK for building MCP servers using Quarkus. +- [lastmile-ai/mcp-agent](https://github.com/lastmile-ai/mcp-agent) 🀖 🔌 - Build effective agents with MCP servers using simple, composable patterns. +- [mullerhai/sakura-mcp](https://github.com/mullerhai/sakura-mcp) 🊀 ☕ - Scala MCP Framework for Build effective agents with MCP servers and MCP clients shade from modelcontextprotocol.io. ## Utilities From 45f8efd9230820bf2ca6d439e908b7c801f3db26 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Fri, 21 Mar 2025 09:57:40 -0600 Subject: [PATCH 099/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 153237dd..1bcf51d6 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ Integration with communication platforms for message management and channel oper - [elie222/inbox-zero](https://github.com/elie222/inbox-zero/tree/main/apps/mcp-server) - 🐍 ☁ - An MCP server for Inbox Zero. Adds functionality on top of Gmail like finding out which emails you need to reply to or need to follow up on. - [carterlasalle/mac_messages_mcp](https://github.com/carterlasalle/mac_messages_mcp) 🏠 🍎 🚀 - An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages. - [sawa-zen/vrchat-mcp](https://github.com/sawa-zen/vrchat-mcp) - 📇 🏠 This is an MCP server for interacting with the VRChat API. You can retrieve information about friends, worlds, avatars, and more in VRChat. -[arpitbatra123/mcp-googletasks](https://github.com/arpitbatra123/mcp-googletasks) - 📇 ☁ - An MCP server to interface with the Google Tasks API +- [arpitbatra123/mcp-googletasks](https://github.com/arpitbatra123/mcp-googletasks) - 📇 ☁ - An MCP server to interface with the Google Tasks API ### 👀 Customer Data Platforms From 167338a389b0cd15f75e12fc0aed6af2646bfc3e Mon Sep 17 00:00:00 2001 From: tkattkat <48974763+tkattkat@users.noreply.github.com> Date: Fri, 21 Mar 2025 14:36:56 -0400 Subject: [PATCH 100/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2fef8355..25efc966 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ Checkout [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) Web content access and automation capabilities. Enables searching, scraping, and processing web content in AI-friendly formats. -- [@browserbase/mcp-server-browserbase](https://github.com/browserbase/mcp-server-browserbase) 🅱 - Automate browser interactions in the cloud (e.g. web navigation, data extraction, form filling, and more) +- [@browserbase/mcp-server-browserbase](https://github.com/browserbase/mcp-server-browserbase) 🎖📂📇 - Automate browser interactions in the cloud (e.g. web navigation, data extraction, form filling, and more) - [@blackwhite084/playwright-plus-python-mcp](https://github.com/blackwhite084/playwright-plus-python-mcp) 🌐 - An MCP python server using Playwright for browser automation,more suitable for llm - [@executeautomation/playwright-mcp-server](https://github.com/executeautomation/mcp-playwright) 🌐⚡ - An MCP server using Playwright for browser automation and webscrapping - [@automatalabs/mcp-server-playwright](https://github.com/Automata-Labs-team/MCP-Server-Playwright) 🌐 🖱 - An MCP server for browser automation using Playwright From 3cc8ddcad14d13bfdb48d6a65f38f6337035373e Mon Sep 17 00:00:00 2001 From: kukapay Date: Sat, 22 Mar 2025 07:51:40 +0800 Subject: [PATCH 101/189] Update README.md Add 5 crypto-related MCP servers. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7eade00c..8678e4a9 100644 --- a/README.md +++ b/README.md @@ -267,7 +267,9 @@ Financial data access and cryptocurrency market information. Enables querying re - [kukapay/dune-analytics-mcp](https://github.com/kukapay/dune-analytics-mcp) 🐍 ☁ - A mcp server that bridges Dune Analytics data to AI agents. - [kukapay/pancakeswap-poolspy-mcp](https://github.com/kukapay/pancakeswap-poolspy-mcp) 🐍 ☁ - An MCP server that tracks newly created pools on Pancake Swap. - [kukapay/uniswap-poolspy-mcp](https://github.com/kukapay/uniswap-poolspy-mcp) 🐍 ☁ - An MCP server that tracks newly created liquidity pools on Uniswap across multiple blockchains. +- [kukapay/uniswap-trader-mcp](https://github.com/kukapay/uniswap-trader-mcp) 🐍 ☁ - An MCP server for AI agents to automate token swaps on Uniswap DEX across multiple blockchains. - [kukapay/token-minter-mcp](https://github.com/kukapay/token-minter-mcp) 🐍 ☁ - An MCP server providing tools for AI agents to mint ERC-20 tokens across multiple blockchains. +- [kukapay/thegraph-mcp](https://github.com/kukapay/thegraph-mcp) 🐍 ☁ - An MCP server that powers AI agents with indexed blockchain data from The Graph. ### 🎮 Gaming From 05d06585b834d3ad6f095e02dd0d6867cc8fee8b Mon Sep 17 00:00:00 2001 From: SDGLBL Date: Sat, 22 Mar 2025 10:18:14 +0800 Subject: [PATCH 102/189] Add SDGLBL/mcp-claude-code to Developer Tools section --- README-ja.md | 1 + README-zh.md | 1 + README.md | 1 + 3 files changed, 3 insertions(+) diff --git a/README-ja.md b/README-ja.md index c4fd62e2..7d393c49 100644 --- a/README-ja.md +++ b/README-ja.md @@ -128,6 +128,7 @@ aliyun/alibabacloud-tablestore-mcp-server ☕ 🐍 ☁ - 阿里云衚栌存 - [ferrislucas/iterm-mcp](https://github.com/ferrislucas/iterm-mcp) 🖥 🛠 💬 - iTermぞのアクセスを提䟛するモデルコンテキストプロトコルサヌバヌ。コマンドを実行し、iTermタヌミナルで芋た内容に぀いお質問するこずができたす。 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - むンシデント管理プラットフォヌム[Rootly](https://rootly.com/)向けのMCPサヌバヌ - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - きれいなむンタラクティブなマむンドマップを生成するためのモデルコンテキストプロトコルMCPサヌバ。 +- [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - MCPを䜿甚したClaude Code機胜の実装で、AIによるコヌド理解、修正、プロゞェクト分析を包括的なツヌルサポヌトで実珟したす。 ### 📂 ファむルシステム diff --git a/README-zh.md b/README-zh.md index 1671d40c..7b7f4f8f 100644 --- a/README-zh.md +++ b/README-zh.md @@ -190,6 +190,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [j4c0bs/mcp-server-sql-analyzer](https://github.com/j4c0bs/mcp-server-sql-analyzer) 🐍 - 基于 [SQLGlot](https://github.com/tobymao/sqlglot) 的 MCP 服务噚提䟛 SQL 分析、代码检查和方蚀蜬换功胜 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - 甚于事件管理平台 Rootly](https://rootly.com/) 的 MCP 服务噚 - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - 甚于生成挂亮亀互匏思绎富囟mindmap的暡型䞊䞋文协议MCP服务噚。 +- [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - 䜿甚 MCP 实现的 Claude Code 功胜支持 AI 代码理解、修改和项目分析并提䟛党面的工具支持。 ### 🧮 数据科孊工具 diff --git a/README.md b/README.md index 833ffe0a..c0d5312e 100644 --- a/README.md +++ b/README.md @@ -228,6 +228,7 @@ Tools and integrations that enhance the development workflow and environment man - [hyperb1iss/droidmind](https://github.com/hyperb1iss/droidmind) 🐍 🏠 - Control Android devices with AI through MCP, enabling device control, debugging, system analysis, and UI automation with a comprehensive security framework. - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - MCP server for the incident management platform [Rootly](https://rootly.com/). - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - A Model Context Protocol (MCP) server for generating a beautiful interactive mindmap. +- [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - An implementation of Claude Code capabilities using MCP, enabling AI code understanding, modification, and project analysis with comprehensive tool support. ### 🧮 Data Science Tools From cb9aba2e7e7a34cb12ae23d890cdfc5153351628 Mon Sep 17 00:00:00 2001 From: yuna0x0 Date: Wed, 19 Mar 2025 01:11:08 +0800 Subject: [PATCH 103/189] Add HackMD MCP server --- README-ja.md | 1 + README-zh.md | 1 + README.md | 1 + 3 files changed, 3 insertions(+) diff --git a/README-ja.md b/README-ja.md index c4fd62e2..ad878c32 100644 --- a/README-ja.md +++ b/README-ja.md @@ -241,6 +241,7 @@ Gitリポゞトリおよびバヌゞョン管理プラットフォヌムずの - [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ [Kibela](https://kibe.la/)ずの連携 - [@awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - Replicate APIを通じお画像を生成する機胜を提䟛したす。 - [NakaokaRei/swift-mcp-gui](https://github.com/NakaokaRei/swift-mcp-gui.git) 🏠 🍏 - キヌボヌド入力やマりス移動などのコマンドが実行できるMCPサヌバヌ +- [yuna0x0/hackmd-mcp](https://github.com/yuna0x0/hackmd-mcp) 📇 ☁ - AIモデルが [HackMD](https://hackmd.io) ず連携できるようにしたす。 ## フレヌムワヌク diff --git a/README-zh.md b/README-zh.md index 1671d40c..9239ec29 100644 --- a/README-zh.md +++ b/README-zh.md @@ -355,6 +355,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ [Kibela](https://kibe.la/) 侎 MCP 的集成 - [@awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - 通过Replicate API提䟛囟像生成功胜。 - [NakaokaRei/swift-mcp-gui](https://github.com/NakaokaRei/swift-mcp-gui.git) 🏠 🍏 - MCP服务噚可以执行键盘蟓入、錠标移劚等呜什 +- [yuna0x0/hackmd-mcp](https://github.com/yuna0x0/hackmd-mcp) 📇 ☁ - 允讞 AI 暡型䞎 [HackMD](https://hackmd.io) 亀互 ## 框架 - [FastMCP](https://github.com/jlowin/fastmcp) 🐍 - 甚于圚 Python 䞭构建 MCP 服务噚的高级框架 diff --git a/README.md b/README.md index 833ffe0a..1fab1aeb 100644 --- a/README.md +++ b/README.md @@ -431,6 +431,7 @@ Interact with Git repositories and version control platforms. Enables repository - [marcelmarais/Spotify](https://github.com/marcelmarais/spotify-mcp-server) - 📇 🏠 Control Spotify playback and manage playlists. - [NakaokaRei/swift-mcp-gui](https://github.com/NakaokaRei/swift-mcp-gui.git) 🏠 🍎 - MCP server that can execute commands such as keyboard input and mouse movement - [awwaiid/mcp-server-taskwarrior](https://github.com/awwaiid/mcp-server-taskwarrior) 🏠 📇 - An MCP server for basic local taskwarrior usage (add, update, remove tasks) +- [yuna0x0/hackmd-mcp](https://github.com/yuna0x0/hackmd-mcp) 📇 ☁ - Allows AI models to interact with [HackMD](https://hackmd.io) ## Frameworks From 49b5a90c60b7a3360cb9ab30debce93c11a8a408 Mon Sep 17 00:00:00 2001 From: yuna0x0 Date: Sat, 22 Mar 2025 13:54:44 +0800 Subject: [PATCH 104/189] Add AniList MCP for anime and manga information --- README-ja.md | 7 +++++++ README-zh.md | 1 + README.md | 1 + 3 files changed, 9 insertions(+) diff --git a/README-ja.md b/README-ja.md index c4fd62e2..eafae689 100644 --- a/README-ja.md +++ b/README-ja.md @@ -43,6 +43,7 @@ ## サヌバヌ実装 * 📂 - [ブラりザ自動化](#browser-automation) +* 🎚 - [芞術ず文化](#art-and-culture) * ☁ - [クラりドプラットフォヌム](#cloud-platforms) * 💬 - [コミュニケヌション](#communication) * 👀 - [顧客デヌタプラットフォヌム](#customer-data-platforms) @@ -68,6 +69,12 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [@kimtaeyoon83/mcp-server-youtube-transcript](https://github.com/kimtaeyoon83/mcp-server-youtube-transcript) 📇 ☁ - AI分析のためのYouTube字幕ずトランスクリプトの取埗 - [@kimtth/mcp-aoai-web-browsing](https://github.com/kimtth/mcp-aoai-web-browsing) 🐍 🏠 - Azure OpenAIずPlaywrightを䜿甚した「最小限の」サヌバヌ/クラむアントMCP実装。 +### 🎚 芞術ず文化 + +矎術コレクション、文化遺産、博物通デヌタベヌスにアクセスしお探玢できたす。AIモデルは、芞術的および文化的なコンテンツを怜玢および分析できたす。 + +- [yuna0x0/anilist-mcp](https://github.com/yuna0x0/anilist-mcp) 📇 ☁ - アニメずマンガの情報をAniList APIず連携するMCPサヌバヌ + ### ☁ クラりドプラットフォヌム クラりドプラットフォヌムサヌビスの統合。クラりドむンフラストラクチャずサヌビスの管理ず察話を可胜にしたす。 diff --git a/README-zh.md b/README-zh.md index 1671d40c..3344655c 100644 --- a/README-zh.md +++ b/README-zh.md @@ -98,6 +98,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [burningion/video-editing-mcp](https://github.com/burningion/video-editing-mcp) 📹🎬 - 从悚的视频集合䞭添加、分析、搜玢和生成视频剪蟑 - [r-huijts/rijksmuseum-mcp](https://github.com/r-huijts/rijksmuseum-mcp) 📇 ☁ - 荷兰囜立博物銆 API 集成支持艺术品搜玢、诊情查询和收藏品浏览 +- [yuna0x0/anilist-mcp](https://github.com/yuna0x0/anilist-mcp) 📇 ☁ - 集成 AniList API 获取劚画和挫画信息的 MCP 服务噚 ### ☁ 云平台 diff --git a/README.md b/README.md index 833ffe0a..a297d294 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,7 @@ Access and explore art collections, cultural heritage, and museum databases. Ena - [burningion/video-editing-mcp](https://github.com/burningion/video-editing-mcp) 📹🎬 - Add, Analyze, Search, and Generate Video Edits from your Video Jungle Collection - [r-huijts/rijksmuseum-mcp](https://github.com/r-huijts/rijksmuseum-mcp) 📇 ☁ - Rijksmuseum API integration for artwork search, details, and collections +- [yuna0x0/anilist-mcp](https://github.com/yuna0x0/anilist-mcp) 📇 ☁ - A MCP server integrating AniList API for anime and manga information ### ☁ Cloud Platforms From d4e5c3913a4ff58dad8b38bf370e4de2df1ab7f2 Mon Sep 17 00:00:00 2001 From: Xing Wu Date: Fri, 21 Mar 2025 23:58:31 -0700 Subject: [PATCH 105/189] Add MCP Server to access and edit Google Sheets --- README-ja.md | 2 ++ README-zh.md | 1 + README.md | 1 + 3 files changed, 4 insertions(+) diff --git a/README-ja.md b/README-ja.md index c4fd62e2..22372e37 100644 --- a/README-ja.md +++ b/README-ja.md @@ -114,6 +114,8 @@ aliyun/alibabacloud-tablestore-mcp-server ☕ 🐍 ☁ - 阿里云衚栌存 - [KashiwaByte/vikingdb-mcp-server](https://github.com/KashiwaByte/vikingdb-mcp-server) 🐍 ☁ - コレクションずむンデックスの玹介、ベクトルストアず怜玢機胜を備えたVikingDB統合。 - [runekaagaard/mcp-alchemy](https://github.com/runekaagaard/mcp-alchemy) 🐍 🏠 - PostgreSQL、MySQL、MariaDB、SQLite、Oracle、MS SQL Serverなど倚数のデヌタベヌスをサポヌトするSQLAlchemyベヌスの汎甚デヌタベヌス統合。スキヌマず関係の怜査、倧芏暡デヌタセット分析機胜を備えおいたす。 - [GreptimeTeam/greptimedb-mcp-server](https://github.com/GreptimeTeam/greptimedb-mcp-server) 🐍 🏠 - GreptimeDBのMCPサヌビスにク゚リを実行する。 +- [xing5/mcp-google-sheets](https://github.com/xing5/mcp-google-sheets) 🐍 ☁ - Google Sheetsず察話するためのモデルコンテキストプロトコルサヌバヌ。このサヌバヌはGoogle Sheets APIを通じおスプレッドシヌトの䜜成、読み取り、曎新、管理のためのツヌルを提䟛したす。 + ### 💻 開発者ツヌル diff --git a/README-zh.md b/README-zh.md index 1671d40c..3a1d3b04 100644 --- a/README-zh.md +++ b/README-zh.md @@ -170,6 +170,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [sirmews/mcp-pinecone](https://github.com/sirmews/mcp-pinecone) 🐍 ☁ - Pinecone 䞎矢量搜玢功胜的集成 - [runekaagaard/mcp-alchemy](https://github.com/runekaagaard/mcp-alchemy) 🐍 🏠 - 基于SQLAlchemy的通甚数据库集成支持PostgreSQL、MySQL、MariaDB、SQLite、Oracle、MS SQL Server等䌗倚数据库。具有架构和关系检查以及倧型数据集分析功胜。 - [GreptimeTeam/greptimedb-mcp-server](https://github.com/GreptimeTeam/greptimedb-mcp-server) 🐍 🏠 - 查询 GreptimeDB 的 MCP 服务。 +- [xing5/mcp-google-sheets](https://github.com/xing5/mcp-google-sheets) 🐍 ☁ - 䞀䞪甚于䞎 Google Sheets 亀互的暡型䞊䞋文协议服务噚。该服务噚通过 Google Sheets API 提䟛创建、读取、曎新和管理电子衚栌的工具。 ### 💻 匀发者工具 diff --git a/README.md b/README.md index 833ffe0a..de2b4130 100644 --- a/README.md +++ b/README.md @@ -197,6 +197,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [bytebase/dbhub](https://github.com/bytebase/dbhub) 📇 🏠 – Universal database MCP server supporting mainstream databases. - [GreptimeTeam/greptimedb-mcp-server](https://github.com/GreptimeTeam/greptimedb-mcp-server) 🐍 🏠 - MCP Server for querying GreptimeDB. - [idoru/influxdb-mcp-server](https://github.com/idoru/influxdb-mcp-server) 📇 ☁ 🏠 - Run queries against InfluxDB OSS API v2. +- [xing5/mcp-google-sheets](https://github.com/xing5/mcp-google-sheets) 🐍 ☁ - A Model Context Protocol server for interacting with Google Sheets. This server provides tools to create, read, update, and manage spreadsheets through the Google Sheets API. ### 💻 Developer Tools From 6a3ef19c605985c03b4e9dddb3c2102402b69d2f Mon Sep 17 00:00:00 2001 From: githejie Date: Sat, 22 Mar 2025 16:13:21 +0800 Subject: [PATCH 106/189] Add Calculator MCP Server --- README-ja.md | 1 + README-zh.md | 1 + README.md | 1 + 3 files changed, 3 insertions(+) diff --git a/README-ja.md b/README-ja.md index a94556e6..55e1768a 100644 --- a/README-ja.md +++ b/README-ja.md @@ -215,6 +215,7 @@ Gitリポゞトリおよびバヌゞョン管理プラットフォヌムずの ### 🛠 その他のツヌルず統合 - [apify/actors-mcp-server](https://github.com/apify/actors-mcp-server) 📇 ☁ - 3,000以䞊の事前構築されたクラりドツヌルActors ずしお知られるを䜿甚しお、りェブサむト、eコマヌス、゜ヌシャルメディア、怜玢゚ンゞン、地図などからデヌタを抜出できたす。 +- [githejie/mcp-server-calculator](https://github.com/githejie/mcp-server-calculator) 🐍 🏠 - このサヌバヌは、LLMが蚈算機を䜿甚しお正確な数倀蚈算を行えるようにしたす - [zcaceres/markdownify-mcp](https://github.com/zcaceres/markdownify-mcp) 📇 🏠 - ほがすべおのファむルやりェブコンテンツをMarkdownに倉換するMCPサヌバヌ - [mzxrai/mcp-openai](https://github.com/mzxrai/mcp-openai) 📇 ☁ - OpenAIの最も賢いモデルずチャット - [mrjoshuak/godoc-mcp](https://github.com/mrjoshuak/godoc-mcp) 🏎 🏠 - Goドキュメントサヌバヌで、AIアシスタントがパッケヌゞドキュメントずタむプにスマヌトにアクセスできるようにしたす。 diff --git a/README-zh.md b/README-zh.md index 1e543669..8c29afe1 100644 --- a/README-zh.md +++ b/README-zh.md @@ -313,6 +313,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 ### 🛠 其他工具和集成 - [apify/actors-mcp-server](https://github.com/apify/actors-mcp-server) 📇 ☁ - 䜿甚超过 3,000 䞪预构建的云工具称䞺 Actors从眑站、电商、瀟亀媒䜓、搜玢匕擎、地囟等提取数据。 +- [githejie/mcp-server-calculator](https://github.com/githejie/mcp-server-calculator) 🐍 🏠 - 䜿LLM胜借䜿甚计算噚进行粟确的数倌计算 - [ivo-toby/contentful-mcp](https://github.com/ivo-toby/contentful-mcp) 📇 🏠 - 曎新、创建、删陀 Contentful Space 䞭的内容、内容暡型和资产 - [mzxrai/mcp-openai](https://github.com/mzxrai/mcp-openai) 📇 ☁ - 侎 OpenAI 最智胜的暡型聊倩 - [mrjoshuak/godoc-mcp](https://github.com/mrjoshuak/godoc-mcp) 🏎 🏠 - 高效的 Go 文档服务噚让 AI 助手可以智胜访问包文档和类型而无需阅读敎䞪源文件 diff --git a/README.md b/README.md index 28934162..c6b5c715 100644 --- a/README.md +++ b/README.md @@ -379,6 +379,7 @@ Interact with Git repositories and version control platforms. Enables repository ### 🛠 Other Tools and Integrations - [apify/actors-mcp-server](https://github.com/apify/actors-mcp-server) 📇 ☁ - Use 3,000+ pre-built cloud tools, known as Actors, to extract data from websites, e-commerce, social media, search engines, maps, and more +- [githejie/mcp-server-calculator](https://github.com/githejie/mcp-server-calculator) 🐍 🏠 - This server enables LLMs to use calculator for precise numerical calculations - [ivo-toby/contentful-mcp](https://github.com/ivo-toby/contentful-mcp) 📇 🏠 - Update, create, delete content, content-models and assets in your Contentful Space - [mzxrai/mcp-openai](https://github.com/mzxrai/mcp-openai) 📇 ☁ - Chat with OpenAI's smartest models - [mrjoshuak/godoc-mcp](https://github.com/mrjoshuak/godoc-mcp) 🏎 🏠 - Token-efficient Go documentation server that provides AI assistants with smart access to package docs and types without reading entire source files From 3f225b6adc2e8fd43469ba86d239b0ffa2844c3e Mon Sep 17 00:00:00 2001 From: YongGit <1013588891@qq.com> Date: Sat, 22 Mar 2025 22:06:05 +0800 Subject: [PATCH 107/189] style: rm emoji --- README-ja.md | 2 +- README-zh.md | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README-ja.md b/README-ja.md index bf893073..744cbfab 100644 --- a/README-ja.md +++ b/README-ja.md @@ -126,7 +126,7 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [ferrislucas/iterm-mcp](https://github.com/ferrislucas/iterm-mcp) 🖥 🛠 💬 - iTermぞのアクセスを提䟛するモデルコンテキストプロトコルサヌバヌ。コマンドを実行し、iTermタヌミナルで芋た内容に぀いお質問するこずができたす。 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - むンシデント管理プラットフォヌム[Rootly](https://rootly.com/)向けのMCPサヌバヌ - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - きれいなむンタラクティブなマむンドマップを生成するためのモデルコンテキストプロトコルMCPサヌバ。 -- [InhiblabCore/mcp-image-compression](https://github.com/InhiblabCore/mcp-image-compression) 🌄 ⬇ - 様々な画像フォヌマットのロヌカル圧瞮のためのMCPサヌバヌ。 +- [InhiblabCore/mcp-image-compression](https://github.com/InhiblabCore/mcp-image-compression) - 様々な画像フォヌマットのロヌカル圧瞮のためのMCPサヌバヌ。 ### 📂 ファむルシステム diff --git a/README-zh.md b/README-zh.md index 456b6bd1..7d9979d2 100644 --- a/README-zh.md +++ b/README-zh.md @@ -189,7 +189,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [j4c0bs/mcp-server-sql-analyzer](https://github.com/j4c0bs/mcp-server-sql-analyzer) 🐍 - 基于 [SQLGlot](https://github.com/tobymao/sqlglot) 的 MCP 服务噚提䟛 SQL 分析、代码检查和方蚀蜬换功胜 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - 甚于事件管理平台 Rootly](https://rootly.com/) 的 MCP 服务噚 - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - 甚于生成挂亮亀互匏思绎富囟mindmap的暡型䞊䞋文协议MCP服务噚。 -- [InhiblabCore/mcp-image-compression](https://github.com/InhiblabCore/mcp-image-compression) 🌄 ⬇ - 甚于本地压猩各种囟片栌匏的 MCP 服务噚。 +- [InhiblabCore/mcp-image-compression](https://github.com/InhiblabCore/mcp-image-compression) - 甚于本地压猩各种囟片栌匏的 MCP 服务噚。 ### 🧮 数据科孊工具 diff --git a/README.md b/README.md index aa8bf5b2..0bda4a21 100644 --- a/README.md +++ b/README.md @@ -226,7 +226,7 @@ Tools and integrations that enhance the development workflow and environment man - [hyperb1iss/droidmind](https://github.com/hyperb1iss/droidmind) 🐍 🏠 - Control Android devices with AI through MCP, enabling device control, debugging, system analysis, and UI automation with a comprehensive security framework. - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - MCP server for the incident management platform [Rootly](https://rootly.com/). - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - A Model Context Protocol (MCP) server for generating a beautiful interactive mindmap. -- [InhiblabCore/mcp-image-compression](https://github.com/InhiblabCore/mcp-image-compression) 🌄 ⬇ - MCP server for local compression of various image formats. +- [InhiblabCore/mcp-image-compression](https://github.com/InhiblabCore/mcp-image-compression) - MCP server for local compression of various image formats. ### 🧮 Data Science Tools From f072e76278d81f07efcad5a8f2febbe53f3b7640 Mon Sep 17 00:00:00 2001 From: YongGit <1013588891@qq.com> Date: Sat, 22 Mar 2025 22:07:42 +0800 Subject: [PATCH 108/189] style: rm custom emoji --- README-ja.md | 2 +- README-zh.md | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README-ja.md b/README-ja.md index 744cbfab..436babac 100644 --- a/README-ja.md +++ b/README-ja.md @@ -126,7 +126,7 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [ferrislucas/iterm-mcp](https://github.com/ferrislucas/iterm-mcp) 🖥 🛠 💬 - iTermぞのアクセスを提䟛するモデルコンテキストプロトコルサヌバヌ。コマンドを実行し、iTermタヌミナルで芋た内容に぀いお質問するこずができたす。 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - むンシデント管理プラットフォヌム[Rootly](https://rootly.com/)向けのMCPサヌバヌ - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - きれいなむンタラクティブなマむンドマップを生成するためのモデルコンテキストプロトコルMCPサヌバ。 -- [InhiblabCore/mcp-image-compression](https://github.com/InhiblabCore/mcp-image-compression) - 様々な画像フォヌマットのロヌカル圧瞮のためのMCPサヌバヌ。 +* [InhiblabCore/mcp-image-compression](https://github.com/InhiblabCore/mcp-image-compression) 🐍 🏠 - 様々な画像フォヌマットのロヌカル圧瞮のためのMCPサヌバヌ。 ### 📂 ファむルシステム diff --git a/README-zh.md b/README-zh.md index 7d9979d2..66b9b360 100644 --- a/README-zh.md +++ b/README-zh.md @@ -189,7 +189,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [j4c0bs/mcp-server-sql-analyzer](https://github.com/j4c0bs/mcp-server-sql-analyzer) 🐍 - 基于 [SQLGlot](https://github.com/tobymao/sqlglot) 的 MCP 服务噚提䟛 SQL 分析、代码检查和方蚀蜬换功胜 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - 甚于事件管理平台 Rootly](https://rootly.com/) 的 MCP 服务噚 - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - 甚于生成挂亮亀互匏思绎富囟mindmap的暡型䞊䞋文协议MCP服务噚。 -- [InhiblabCore/mcp-image-compression](https://github.com/InhiblabCore/mcp-image-compression) - 甚于本地压猩各种囟片栌匏的 MCP 服务噚。 +* [InhiblabCore/mcp-image-compression](https://github.com/InhiblabCore/mcp-image-compression) 🐍 🏠 - 甚于本地压猩各种囟片栌匏的 MCP 服务噚。 ### 🧮 数据科孊工具 diff --git a/README.md b/README.md index 0bda4a21..7325d717 100644 --- a/README.md +++ b/README.md @@ -226,7 +226,7 @@ Tools and integrations that enhance the development workflow and environment man - [hyperb1iss/droidmind](https://github.com/hyperb1iss/droidmind) 🐍 🏠 - Control Android devices with AI through MCP, enabling device control, debugging, system analysis, and UI automation with a comprehensive security framework. - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - MCP server for the incident management platform [Rootly](https://rootly.com/). - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - A Model Context Protocol (MCP) server for generating a beautiful interactive mindmap. -- [InhiblabCore/mcp-image-compression](https://github.com/InhiblabCore/mcp-image-compression) - MCP server for local compression of various image formats. +* [InhiblabCore/mcp-image-compression](https://github.com/InhiblabCore/mcp-image-compression) 🐍 🏠 - MCP server for local compression of various image formats. ### 🧮 Data Science Tools From 44bd97ad42f902155c099a01670ca1a69f4557ae Mon Sep 17 00:00:00 2001 From: Joshua Yoes <37849890+joshuayoes@users.noreply.github.com> Date: Sat, 22 Mar 2025 09:54:54 -0700 Subject: [PATCH 109/189] Add ios-simulator-mcp --- README-ja.md | 2 ++ README-zh.md | 2 ++ README.md | 1 + 3 files changed, 5 insertions(+) diff --git a/README-ja.md b/README-ja.md index a94556e6..c55e7597 100644 --- a/README-ja.md +++ b/README-ja.md @@ -138,6 +138,8 @@ aliyun/alibabacloud-tablestore-mcp-server ☕ 🐍 ☁ - 阿里云衚栌存 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - むンシデント管理プラットフォヌム[Rootly](https://rootly.com/)向けのMCPサヌバヌ - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - きれいなむンタラクティブなマむンドマップを生成するためのモデルコンテキストプロトコルMCPサヌバ。 - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - MCPを䜿甚したClaude Code機胜の実装で、AIによるコヌド理解、修正、プロゞェクト分析を包括的なツヌルサポヌトで実珟したす。 +- [ios-simulator-mcp](https://github.com/joshuayoes/ios-simulator-mcp) 🍎 🀖 👷 - iOS シミュレヌタず察話するためのモデル コンテキスト プロトコル (MCP) サヌバヌ。このサヌバヌを䜿甚するず、iOS シミュレヌタに関する情報を取埗したり、UI の察話を制埡したり、UI 芁玠を怜査したりしお、iOS シミュレヌタず察話できたす。 + ### 📂 ファむルシステム diff --git a/README-zh.md b/README-zh.md index 1e543669..c9a46d1a 100644 --- a/README-zh.md +++ b/README-zh.md @@ -193,6 +193,8 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - 甚于事件管理平台 Rootly](https://rootly.com/) 的 MCP 服务噚 - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - 甚于生成挂亮亀互匏思绎富囟mindmap的暡型䞊䞋文协议MCP服务噚。 - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - 䜿甚 MCP 实现的 Claude Code 功胜支持 AI 代码理解、修改和项目分析并提䟛党面的工具支持。 +- [ios-simulator-mcp](https://github.com/joshuayoes/ios-simulator-mcp) 🍎 🀖 👷 - 甚于䞎 iOS 暡拟噚亀互的暡型䞊䞋文协议 (MCP) 服务噚。歀服务噚允讞悚通过获取有关 iOS 暡拟噚的信息、控制 UI 亀互和检查 UI 元玠来䞎 iOS 暡拟噚亀互。 + ### 🧮 数据科孊工具 diff --git a/README.md b/README.md index 28934162..3e9a2aad 100644 --- a/README.md +++ b/README.md @@ -231,6 +231,7 @@ Tools and integrations that enhance the development workflow and environment man - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - MCP server for the incident management platform [Rootly](https://rootly.com/). - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - A Model Context Protocol (MCP) server for generating a beautiful interactive mindmap. - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - An implementation of Claude Code capabilities using MCP, enabling AI code understanding, modification, and project analysis with comprehensive tool support. +- [ios-simulator-mcp](https://github.com/joshuayoes/ios-simulator-mcp) 🍎 🀖 👷 - A Model Context Protocol (MCP) server for interacting with iOS simulators. This server allows you to interact with iOS simulators by getting information about them, controlling UI interactions, and inspecting UI elements. ### 🧮 Data Science Tools From f784c624ecdbd610d7354bf2ab8d410dd3a71717 Mon Sep 17 00:00:00 2001 From: Joshua Yoes <37849890+joshuayoes@users.noreply.github.com> Date: Sat, 22 Mar 2025 10:00:52 -0700 Subject: [PATCH 110/189] Fix legend --- README-ja.md | 2 +- README-zh.md | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README-ja.md b/README-ja.md index c55e7597..56135313 100644 --- a/README-ja.md +++ b/README-ja.md @@ -138,7 +138,7 @@ aliyun/alibabacloud-tablestore-mcp-server ☕ 🐍 ☁ - 阿里云衚栌存 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - むンシデント管理プラットフォヌム[Rootly](https://rootly.com/)向けのMCPサヌバヌ - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - きれいなむンタラクティブなマむンドマップを生成するためのモデルコンテキストプロトコルMCPサヌバ。 - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - MCPを䜿甚したClaude Code機胜の実装で、AIによるコヌド理解、修正、プロゞェクト分析を包括的なツヌルサポヌトで実珟したす。 -- [ios-simulator-mcp](https://github.com/joshuayoes/ios-simulator-mcp) 🍎 🀖 👷 - iOS シミュレヌタず察話するためのモデル コンテキスト プロトコル (MCP) サヌバヌ。このサヌバヌを䜿甚するず、iOS シミュレヌタに関する情報を取埗したり、UI の察話を制埡したり、UI 芁玠を怜査したりしお、iOS シミュレヌタず察話できたす。 +- [ios-simulator-mcp](https://github.com/joshuayoes/ios-simulator-mcp) 📇 🏠 🍎 - iOS シミュレヌタず察話するためのモデル コンテキスト プロトコル (MCP) サヌバヌ。このサヌバヌを䜿甚するず、iOS シミュレヌタに関する情報を取埗したり、UI の察話を制埡したり、UI 芁玠を怜査したりしお、iOS シミュレヌタず察話できたす。 ### 📂 ファむルシステム diff --git a/README-zh.md b/README-zh.md index c9a46d1a..7c89ac50 100644 --- a/README-zh.md +++ b/README-zh.md @@ -193,7 +193,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - 甚于事件管理平台 Rootly](https://rootly.com/) 的 MCP 服务噚 - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - 甚于生成挂亮亀互匏思绎富囟mindmap的暡型䞊䞋文协议MCP服务噚。 - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - 䜿甚 MCP 实现的 Claude Code 功胜支持 AI 代码理解、修改和项目分析并提䟛党面的工具支持。 -- [ios-simulator-mcp](https://github.com/joshuayoes/ios-simulator-mcp) 🍎 🀖 👷 - 甚于䞎 iOS 暡拟噚亀互的暡型䞊䞋文协议 (MCP) 服务噚。歀服务噚允讞悚通过获取有关 iOS 暡拟噚的信息、控制 UI 亀互和检查 UI 元玠来䞎 iOS 暡拟噚亀互。 +- [ios-simulator-mcp](https://github.com/joshuayoes/ios-simulator-mcp) 📇 🏠 🍎 - 甚于䞎 iOS 暡拟噚亀互的暡型䞊䞋文协议 (MCP) 服务噚。歀服务噚允讞悚通过获取有关 iOS 暡拟噚的信息、控制 UI 亀互和检查 UI 元玠来䞎 iOS 暡拟噚亀互。 ### 🧮 数据科孊工具 diff --git a/README.md b/README.md index 3e9a2aad..40239746 100644 --- a/README.md +++ b/README.md @@ -231,7 +231,7 @@ Tools and integrations that enhance the development workflow and environment man - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - MCP server for the incident management platform [Rootly](https://rootly.com/). - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - A Model Context Protocol (MCP) server for generating a beautiful interactive mindmap. - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - An implementation of Claude Code capabilities using MCP, enabling AI code understanding, modification, and project analysis with comprehensive tool support. -- [ios-simulator-mcp](https://github.com/joshuayoes/ios-simulator-mcp) 🍎 🀖 👷 - A Model Context Protocol (MCP) server for interacting with iOS simulators. This server allows you to interact with iOS simulators by getting information about them, controlling UI interactions, and inspecting UI elements. +- [ios-simulator-mcp](https://github.com/joshuayoes/ios-simulator-mcp) 📇 🏠 🍎 - A Model Context Protocol (MCP) server for interacting with iOS simulators. This server allows you to interact with iOS simulators by getting information about them, controlling UI interactions, and inspecting UI elements. ### 🧮 Data Science Tools From d3c5bbcd9eafcfe617b81761c2f2152a4f1b2455 Mon Sep 17 00:00:00 2001 From: Linh Doan Date: Sun, 23 Mar 2025 00:12:37 +0700 Subject: [PATCH 111/189] Update README: Add multi-database MCP server built with Golang, supporting MySQL & PostgreSQL --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 28934162..87761780 100644 --- a/README.md +++ b/README.md @@ -173,6 +173,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [@fireproof-storage/mcp-database-server](https://github.com/fireproof-storage/mcp-database-server) 📇 ☁ - Fireproof ledger database with multi-user sync - [designcomputer/mysql_mcp_server](https://github.com/designcomputer/mysql_mcp_server) 🐍 🏠 - MySQL database integration with configurable access controls, schema inspection, and comprehensive security guidelines - [f4ww4z/mcp-mysql-server](https://github.com/f4ww4z/mcp-mysql-server) 🐍 🏠 - Node.js-based MySQL database integration that provides secure MySQL database operations +- [FreePeak/db-mcp-server](https://github.com/FreePeak/db-mcp-server) – A high-performance multi-database MCP server built with Golang, supporting MySQL & PostgreSQL (NoSQL coming soon). Includes built-in tools for query execution, transaction management, schema exploration, query building, and performance analysis, with seamless Cursor integration for enhanced database workflows. 🚀 - [@modelcontextprotocol/server-postgres](https://github.com/modelcontextprotocol/servers/tree/main/src/postgres) 📇 🏠 - PostgreSQL database integration with schema inspection and query capabilities - [@modelcontextprotocol/server-sqlite](https://github.com/modelcontextprotocol/servers/tree/main/src/sqlite) 🐍 🏠 - SQLite database operations with built-in analysis features - [@joshuarileydev/supabase-mcp-server](https://github.com/joshuarileydev/supabase) - Supabase MCP Server for managing and creating projects and organisations in Supabase From 415b91e6a70cad35c439302e5426bfd8b314f6a1 Mon Sep 17 00:00:00 2001 From: tszhim_tech Date: Sun, 23 Mar 2025 01:43:15 +0800 Subject: [PATCH 112/189] add new plane mcp server --- README-ja.md | 1 + README-zh.md | 1 + README.md | 1 + 3 files changed, 3 insertions(+) diff --git a/README-ja.md b/README-ja.md index a94556e6..9c5bf4ea 100644 --- a/README-ja.md +++ b/README-ja.md @@ -251,6 +251,7 @@ Gitリポゞトリおよびバヌゞョン管理プラットフォヌムずの - [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ [Kibela](https://kibe.la/)ずの連携 - [@awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - Replicate APIを通じお画像を生成する機胜を提䟛したす。 - [NakaokaRei/swift-mcp-gui](https://github.com/NakaokaRei/swift-mcp-gui.git) 🏠 🍏 - キヌボヌド入力やマりス移動などのコマンドが実行できるMCPサヌバヌ +- [kelvin6365/plane-mcp-server](https://github.com/kelvin6365/plane-mcp-server) - 🏎 🏠 この MCP サヌバヌは、[Plane](https://plane.so) API を通じおプロゞェクトや課題を管理するのに圹立ちたす ## フレヌムワヌク diff --git a/README-zh.md b/README-zh.md index 1e543669..eba58689 100644 --- a/README-zh.md +++ b/README-zh.md @@ -358,6 +358,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ [Kibela](https://kibe.la/) 侎 MCP 的集成 - [@awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - 通过Replicate API提䟛囟像生成功胜。 - [NakaokaRei/swift-mcp-gui](https://github.com/NakaokaRei/swift-mcp-gui.git) 🏠 🍏 - MCP服务噚可以执行键盘蟓入、錠标移劚等呜什 +- [kelvin6365/plane-mcp-server](https://github.com/kelvin6365/plane-mcp-server) - 🏎 🏠 æ­€ MCP 䌺服噚將協助悚透過 [Plane 的](https://plane.so) API 管理專案和問題 ## 框架 - [FastMCP](https://github.com/jlowin/fastmcp) 🐍 - 甚于圚 Python 䞭构建 MCP 服务噚的高级框架 diff --git a/README.md b/README.md index 28934162..dc895307 100644 --- a/README.md +++ b/README.md @@ -441,6 +441,7 @@ Interact with Git repositories and version control platforms. Enables repository - [marcelmarais/Spotify](https://github.com/marcelmarais/spotify-mcp-server) - 📇 🏠 Control Spotify playback and manage playlists. - [NakaokaRei/swift-mcp-gui](https://github.com/NakaokaRei/swift-mcp-gui.git) 🏠 🍎 - MCP server that can execute commands such as keyboard input and mouse movement - [awwaiid/mcp-server-taskwarrior](https://github.com/awwaiid/mcp-server-taskwarrior) 🏠 📇 - An MCP server for basic local taskwarrior usage (add, update, remove tasks) +- [kelvin6365/plane-mcp-server](https://github.com/kelvin6365/plane-mcp-server) - 🏎 🏠 This MCP Server will help you to manage projects and issues through [Plane's](https://plane.so) API ## Frameworks From da836f29a5fad16b9f90f8ee8ab2c6f596446ae5 Mon Sep 17 00:00:00 2001 From: Samuel Gursky Date: Sat, 22 Mar 2025 15:32:59 -0400 Subject: [PATCH 113/189] Add DaVinci Resolve MCP server to Art & Culture section --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 28934162..7731154a 100644 --- a/README.md +++ b/README.md @@ -104,6 +104,7 @@ Web content access and automation capabilities. Enables searching, scraping, and Access and explore art collections, cultural heritage, and museum databases. Enables AI models to search and analyze artistic and cultural content. - [burningion/video-editing-mcp](https://github.com/burningion/video-editing-mcp) 📹🎬 - Add, Analyze, Search, and Generate Video Edits from your Video Jungle Collection +- [samuelgursky/davinci-resolve-mcp](https://github.com/samuelgursky/davinci-resolve-mcp) 📹🎬 - MCP server integration for DaVinci Resolve providing powerful tools for video editing, color grading, media management, and project control - [r-huijts/rijksmuseum-mcp](https://github.com/r-huijts/rijksmuseum-mcp) 📇 ☁ - Rijksmuseum API integration for artwork search, details, and collections - [yuna0x0/anilist-mcp](https://github.com/yuna0x0/anilist-mcp) 📇 ☁ - A MCP server integrating AniList API for anime and manga information From 2015b0461bd0f65210c390c4b1391b3da793b3fc Mon Sep 17 00:00:00 2001 From: Lu Han Date: Sat, 22 Mar 2025 16:58:09 -0400 Subject: [PATCH 114/189] Update README.md to include a new Stata MCP server Added new Stata MCP server --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 28934162..29aad352 100644 --- a/README.md +++ b/README.md @@ -238,7 +238,8 @@ Integrations and tools designed to simplify data exploration, analysis and enhan - [ChronulusAI/chronulus-mcp](https://github.com/ChronulusAI/chronulus-mcp) 🐍 ☁ - Predict anything with Chronulus AI forecasting and prediction agents. - [zcaceres/markdownify-mcp](https://github.com/zcaceres/markdownify-mcp) 📇 🏠 - An MCP server to convert almost any file or web content into Markdown - [@reading-plus-ai/mcp-server-data-exploration](https://github.com/reading-plus-ai/mcp-server-data-exploration) 🐍 ☁ - Enables autonomous data exploration on .csv-based datasets, providing intelligent insights with minimal effort. - +- [hanlulong/stata-mcp](https://github.com/hanlulong/stata-mcp) - MCP server for Stata (popular in economic analysis) with VS code and Cursor extension. + ### 📂 File Systems Provides direct access to local file systems with configurable permissions. Enables AI models to read, write, and manage files within specified directories. From a57f106db0eb7e0d24e2a42c993582efe9c3478d Mon Sep 17 00:00:00 2001 From: Duncan Ogilvie Date: Sun, 23 Mar 2025 02:04:40 +0100 Subject: [PATCH 115/189] Add User Feedback MCP Server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 28934162..fe50bb8b 100644 --- a/README.md +++ b/README.md @@ -231,6 +231,7 @@ Tools and integrations that enhance the development workflow and environment man - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - MCP server for the incident management platform [Rootly](https://rootly.com/). - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - A Model Context Protocol (MCP) server for generating a beautiful interactive mindmap. - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - An implementation of Claude Code capabilities using MCP, enabling AI code understanding, modification, and project analysis with comprehensive tool support. +- [User Feedback](https://github.com/mrexodia/user-feedback-mcp) 🐍 🏠 - Simple MCP Server to enable a human-in-the-loop workflow in tools like Cline and Cursor. ### 🧮 Data Science Tools From ccaf83e9ae310c4d8a2bce6f4d4e5c6884db942f Mon Sep 17 00:00:00 2001 From: jimmyhzhang Date: Sat, 22 Mar 2025 21:30:35 -0700 Subject: [PATCH 116/189] Adding Deep Research MCP server MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adding Deep Research MCP server to the community MCP server list. Youtubehttps://youtu.be/_a7sfo5yxoI Githubhttps://github.com/reading-plus-ai/mcp-server-deep-research --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 28934162..8fcacd53 100644 --- a/README.md +++ b/README.md @@ -348,6 +348,7 @@ Access and analyze application monitoring data. Enables AI models to review erro - [zhsama/duckduckgo-mcp-server](https://github.com/zhsama/duckduckgo-mpc-server/) 📇 🏠 ☁ - This is a TypeScript-based MCP server that provides DuckDuckGo search functionality. - [vectorize-io/vectorize-mcp-server](https://github.com/vectorize-io/vectorize-mcp-server/) ☁ 📇 - [Vectorize](https://vectorize.io) MCP server for advanced retrieval, Private Deep Research, Anything-to-Markdown file extraction and text chunking. - [jae-jae/fetcher-mcp](https://github.com/jae-jae/fetcher-mcp) 📇 🏠 - MCP server for fetching web page content using Playwright headless browser, supporting Javascript rendering and intelligent content extraction, and outputting Markdown or HTML format. +- [reading-plus-ai/mcp-server-deep-research](https://github.com/reading-plus-ai/mcp-server-deep-research) 📇 ☁ - MCP server providing OpenAI/Perplexity-like autonomous deep research, structured query elaboration, and concise reporting. ### 🔒 Security From 0f99e716b7782e7ed75eb9f99f7525ca307ebf2d Mon Sep 17 00:00:00 2001 From: kukapay Date: Sun, 23 Mar 2025 12:46:45 +0800 Subject: [PATCH 117/189] add jupiter-mcp and crypto-indicators-mcp --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 28934162..0051acf2 100644 --- a/README.md +++ b/README.md @@ -274,6 +274,8 @@ Financial data access and cryptocurrency market information. Enables querying re - [kukapay/uniswap-trader-mcp](https://github.com/kukapay/uniswap-trader-mcp) 🐍 ☁ - An MCP server for AI agents to automate token swaps on Uniswap DEX across multiple blockchains. - [kukapay/token-minter-mcp](https://github.com/kukapay/token-minter-mcp) 🐍 ☁ - An MCP server providing tools for AI agents to mint ERC-20 tokens across multiple blockchains. - [kukapay/thegraph-mcp](https://github.com/kukapay/thegraph-mcp) 🐍 ☁ - An MCP server that powers AI agents with indexed blockchain data from The Graph. +- [kukapay/jupiter-mcp](https://github.com/kukapay/jupiter-mcp) 🐍 ☁ - An MCP server for executing token swaps on the Solana blockchain using Jupiter's new Ultra API. +- [kukapay/crypto-indicators-mcp](https://github.com/kukapay/crypto-indicators-mcp) 🐍 ☁ - An MCP server providing a range of cryptocurrency technical analysis indicators and strategie. ### 🎮 Gaming From 2bf3fec5ad6b0ca5ae48776768cf623c58787839 Mon Sep 17 00:00:00 2001 From: Alexey Elizarov Date: Sun, 23 Mar 2025 21:46:44 +0300 Subject: [PATCH 118/189] Add Linear MCP --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 28934162..096e4585 100644 --- a/README.md +++ b/README.md @@ -397,6 +397,7 @@ Interact with Git repositories and version control platforms. Enables repository - [suekou/mcp-notion-server](https://github.com/suekou/mcp-notion-server) 📇 🏠 - Interacting with Notion API - [amidabuddha/unichat-mcp-server](https://github.com/amidabuddha/unichat-mcp-server) 🐍/📇 ☁ - Send requests to OpenAI, MistralAI, Anthropic, xAI, Google AI or DeepSeek using MCP protocol via tool or predefined prompts. Vendor API key required - [evalstate/mcp-miro](https://github.com/evalstate/mcp-miro) 📇 ☁ - Access MIRO whiteboards, bulk create and read items. Requires OAUTH key for REST API. +- [Linear](https://github.com/tacticlaunch/mcp-linear) - Integrates with Linear project management systems. - [KS-GEN-AI/jira-mcp-server](https://github.com/KS-GEN-AI/jira-mcp-server) 📇 ☁ 🍎 🪟 - Read jira data via JQL and api and execute requests to create and edit tickets. - [KS-GEN-AI/confluence-mcp-server](https://github.com/KS-GEN-AI/confluence-mcp-server) 📇 ☁ 🍎 🪟 - Get Confluence data via CQL and read pages. - [sooperset/mcp-atlassian](https://github.com/sooperset/mcp-atlassian) 🐍 ☁ - MCP server for Atlassian products (Confluence and Jira). Supports Confluence Cloud, Jira Cloud, and Jira Server/Data Center. Provides comprehensive tools for searching, reading, creating, and managing content across Atlassian workspaces. From 69730fe6158c4c3e40a2125a09839687ce274adc Mon Sep 17 00:00:00 2001 From: Alexey Elizarov Date: Mon, 24 Mar 2025 04:41:35 +0300 Subject: [PATCH 119/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 096e4585..fbdb585a 100644 --- a/README.md +++ b/README.md @@ -397,7 +397,7 @@ Interact with Git repositories and version control platforms. Enables repository - [suekou/mcp-notion-server](https://github.com/suekou/mcp-notion-server) 📇 🏠 - Interacting with Notion API - [amidabuddha/unichat-mcp-server](https://github.com/amidabuddha/unichat-mcp-server) 🐍/📇 ☁ - Send requests to OpenAI, MistralAI, Anthropic, xAI, Google AI or DeepSeek using MCP protocol via tool or predefined prompts. Vendor API key required - [evalstate/mcp-miro](https://github.com/evalstate/mcp-miro) 📇 ☁ - Access MIRO whiteboards, bulk create and read items. Requires OAUTH key for REST API. -- [Linear](https://github.com/tacticlaunch/mcp-linear) - Integrates with Linear project management systems. +- [Linear](https://github.com/tacticlaunch/mcp-linear) - Integrates with Linear project management system 💬 📇 ☁ 🍎 🪟 🐧 - [KS-GEN-AI/jira-mcp-server](https://github.com/KS-GEN-AI/jira-mcp-server) 📇 ☁ 🍎 🪟 - Read jira data via JQL and api and execute requests to create and edit tickets. - [KS-GEN-AI/confluence-mcp-server](https://github.com/KS-GEN-AI/confluence-mcp-server) 📇 ☁ 🍎 🪟 - Get Confluence data via CQL and read pages. - [sooperset/mcp-atlassian](https://github.com/sooperset/mcp-atlassian) 🐍 ☁ - MCP server for Atlassian products (Confluence and Jira). Supports Confluence Cloud, Jira Cloud, and Jira Server/Data Center. Provides comprehensive tools for searching, reading, creating, and managing content across Atlassian workspaces. From a788054955f3e0916fe4fe29704271ce0d254b4e Mon Sep 17 00:00:00 2001 From: Alexey Elizarov Date: Mon, 24 Mar 2025 04:44:01 +0300 Subject: [PATCH 120/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fbdb585a..6755b582 100644 --- a/README.md +++ b/README.md @@ -397,7 +397,7 @@ Interact with Git repositories and version control platforms. Enables repository - [suekou/mcp-notion-server](https://github.com/suekou/mcp-notion-server) 📇 🏠 - Interacting with Notion API - [amidabuddha/unichat-mcp-server](https://github.com/amidabuddha/unichat-mcp-server) 🐍/📇 ☁ - Send requests to OpenAI, MistralAI, Anthropic, xAI, Google AI or DeepSeek using MCP protocol via tool or predefined prompts. Vendor API key required - [evalstate/mcp-miro](https://github.com/evalstate/mcp-miro) 📇 ☁ - Access MIRO whiteboards, bulk create and read items. Requires OAUTH key for REST API. -- [Linear](https://github.com/tacticlaunch/mcp-linear) - Integrates with Linear project management system 💬 📇 ☁ 🍎 🪟 🐧 +- [@tacticlaunch/mcp-linear](https://github.com/tacticlaunch/mcp-linear) 💬 📇 ☁ 🍎 🪟 🐧 - Integrates with Linear project management system - [KS-GEN-AI/jira-mcp-server](https://github.com/KS-GEN-AI/jira-mcp-server) 📇 ☁ 🍎 🪟 - Read jira data via JQL and api and execute requests to create and edit tickets. - [KS-GEN-AI/confluence-mcp-server](https://github.com/KS-GEN-AI/confluence-mcp-server) 📇 ☁ 🍎 🪟 - Get Confluence data via CQL and read pages. - [sooperset/mcp-atlassian](https://github.com/sooperset/mcp-atlassian) 🐍 ☁ - MCP server for Atlassian products (Confluence and Jira). Supports Confluence Cloud, Jira Cloud, and Jira Server/Data Center. Provides comprehensive tools for searching, reading, creating, and managing content across Atlassian workspaces. From 9c3d8a6284f29f78d16667c05539b5bd9bd0bf54 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Sun, 23 Mar 2025 19:52:14 -0600 Subject: [PATCH 121/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6755b582..0b386a14 100644 --- a/README.md +++ b/README.md @@ -397,7 +397,7 @@ Interact with Git repositories and version control platforms. Enables repository - [suekou/mcp-notion-server](https://github.com/suekou/mcp-notion-server) 📇 🏠 - Interacting with Notion API - [amidabuddha/unichat-mcp-server](https://github.com/amidabuddha/unichat-mcp-server) 🐍/📇 ☁ - Send requests to OpenAI, MistralAI, Anthropic, xAI, Google AI or DeepSeek using MCP protocol via tool or predefined prompts. Vendor API key required - [evalstate/mcp-miro](https://github.com/evalstate/mcp-miro) 📇 ☁ - Access MIRO whiteboards, bulk create and read items. Requires OAUTH key for REST API. -- [@tacticlaunch/mcp-linear](https://github.com/tacticlaunch/mcp-linear) 💬 📇 ☁ 🍎 🪟 🐧 - Integrates with Linear project management system +- [@tacticlaunch/mcp-linear](https://github.com/tacticlaunch/mcp-linear) 📇 ☁ 🍎 🪟 🐧 - Integrates with Linear project management system - [KS-GEN-AI/jira-mcp-server](https://github.com/KS-GEN-AI/jira-mcp-server) 📇 ☁ 🍎 🪟 - Read jira data via JQL and api and execute requests to create and edit tickets. - [KS-GEN-AI/confluence-mcp-server](https://github.com/KS-GEN-AI/confluence-mcp-server) 📇 ☁ 🍎 🪟 - Get Confluence data via CQL and read pages. - [sooperset/mcp-atlassian](https://github.com/sooperset/mcp-atlassian) 🐍 ☁ - MCP server for Atlassian products (Confluence and Jira). Supports Confluence Cloud, Jira Cloud, and Jira Server/Data Center. Provides comprehensive tools for searching, reading, creating, and managing content across Atlassian workspaces. From db9b6478b813f1184ab24bd1bad6101a247f943f Mon Sep 17 00:00:00 2001 From: Linh Doan Date: Mon, 24 Mar 2025 11:13:02 +0700 Subject: [PATCH 122/189] fix: update emoji from convention --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 87761780..095a1d75 100644 --- a/README.md +++ b/README.md @@ -173,7 +173,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [@fireproof-storage/mcp-database-server](https://github.com/fireproof-storage/mcp-database-server) 📇 ☁ - Fireproof ledger database with multi-user sync - [designcomputer/mysql_mcp_server](https://github.com/designcomputer/mysql_mcp_server) 🐍 🏠 - MySQL database integration with configurable access controls, schema inspection, and comprehensive security guidelines - [f4ww4z/mcp-mysql-server](https://github.com/f4ww4z/mcp-mysql-server) 🐍 🏠 - Node.js-based MySQL database integration that provides secure MySQL database operations -- [FreePeak/db-mcp-server](https://github.com/FreePeak/db-mcp-server) – A high-performance multi-database MCP server built with Golang, supporting MySQL & PostgreSQL (NoSQL coming soon). Includes built-in tools for query execution, transaction management, schema exploration, query building, and performance analysis, with seamless Cursor integration for enhanced database workflows. 🚀 +- [FreePeak/db-mcp-server](https://github.com/FreePeak/db-mcp-server) 🏎 🏠 – A high-performance multi-database MCP server built with Golang, supporting MySQL & PostgreSQL (NoSQL coming soon). Includes built-in tools for query execution, transaction management, schema exploration, query building, and performance analysis, with seamless Cursor integration for enhanced database workflows. - [@modelcontextprotocol/server-postgres](https://github.com/modelcontextprotocol/servers/tree/main/src/postgres) 📇 🏠 - PostgreSQL database integration with schema inspection and query capabilities - [@modelcontextprotocol/server-sqlite](https://github.com/modelcontextprotocol/servers/tree/main/src/sqlite) 🐍 🏠 - SQLite database operations with built-in analysis features - [@joshuarileydev/supabase-mcp-server](https://github.com/joshuarileydev/supabase) - Supabase MCP Server for managing and creating projects and organisations in Supabase From 7af54a684898f1253d2aed16d029f4c80b1ab45d Mon Sep 17 00:00:00 2001 From: "R.Huijts" Date: Tue, 25 Mar 2025 14:32:11 +0100 Subject: [PATCH 123/189] docs: add Sports category with FirstCycling MCP server --- README.md | 406 +++++++++--------------------------------------------- 1 file changed, 66 insertions(+), 340 deletions(-) diff --git a/README.md b/README.md index 14e19fdc..a99c5e9f 100644 --- a/README.md +++ b/README.md @@ -1,359 +1,85 @@ # Awesome MCP Servers [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) -[![English](https://img.shields.io/badge/English-Click-yellow)](README.md) -[![䞭文文档](https://img.shields.io/badge/䞭文文档-点击查看-orange)](README-zh.md) -[![日本語](https://img.shields.io/badge/日本語-クリック-青)](README-ja.md) -[![Discord](https://img.shields.io/discord/1312302100125843476?logo=discord&label=discord)](https://glama.ai/mcp/discord) -[![Subreddit subscribers](https://img.shields.io/reddit/subreddit-subscribers/mcp?style=flat&logo=reddit&label=subreddit)](https://www.reddit.com/r/mcp/) +A curated list of [MCP](https://github.com/microsoft/TypeChat/blob/main/docs/mcp.md) servers, clients, and resources. -A curated list of awesome Model Context Protocol (MCP) servers. +## Contents -* [What is MCP?](#what-is-mcp) -* [Tutorials](#tutorials) -* [Server Implementations](#server-implementations) -* [Frameworks](#frameworks) -* [Utilities](#utilities) -* [Clients](#clients) -* [Tips & Tricks](#tips-and-tricks) +- [What is MCP?](#what-is-mcp) +- [Clients](#clients) +- [Tutorials](#tutorials) +- [Community](#community) +- [Server Implementations](#server-implementations) + - [🎚 Art & Design](#art--design) + - [📊 Data & Analytics](#data--analytics) + - [📝 Documents & Text](#documents--text) + - [🎮 Gaming](#gaming) + - [🏢 Organization](#organization) + - [🛍 Shopping](#shopping) + - [🎯 Task Management](#task-management) + - [🚆 Travel & Transportation](#travel--transportation) + - [🏃 Sports](#sports) ## What is MCP? -[MCP](https://modelcontextprotocol.io/) is an open protocol that enables AI models to securely interact with local and remote resources through standardized server implementations. This list focuses on production-ready and experimental MCP servers that extend AI capabilities through file access, database connections, API integrations, and other contextual services. - -## Tutorials - -* [Model Context Protocol (MCP) Quickstart](https://glama.ai/blog/2024-11-25-model-context-protocol-quickstart) -* [Setup Claude Desktop App to Use a SQLite Database](https://youtu.be/wxCCzo9dGj0) - -## Community - -* [r/mcp Reddit](https://www.reddit.com/r/mcp) -* [Discord Server](https://glama.ai/mcp/discord) - -## Legend - -* 🎖 – official implementation -* programming language - * 🐍 – Python codebase - * 📇 – TypeScript codebase - * 🏎 – Go codebase - * 🊀 – Rust codebase - * #⃣ - C# Codebase -* scope - * ☁ - Cloud Service - * 🏠 - Local Service -* operating system - * 🍎 – For macOS - * 🪟 – For Windows - -> [!NOTE] -> Confused about Local 🏠 vs Cloud ☁? -> * Use local when MCP server is talking to a locally installed software, e.g. taking control over Chrome browser. -> * Use network when MCP server is talking to remote APIs, e.g. weather API. - -## Server Implementations - -> [!NOTE] -> We now have a [web-based directory](https://glama.ai/mcp/servers) that is synced with the repository. - -* 📂 - [Browser Automation](#browser-automation) -* 🎚 - [Art & Culture](#art-and-culture) -* ☁ - [Cloud Platforms](#cloud-platforms) -* 🖥 - [Command Line](#command-line) -* 💬 - [Communication](#communication) -* 👀 - [Customer Data Platforms](#customer-data-platforms) -* 🗄 - [Databases](#databases) -* 🛠 - [Developer Tools](#developer-tools) -* 📂 - [File Systems](#file-systems) -* 💰 - [Finance & Fintech](#finance--fintech) -* 🧠 - [Knowledge & Memory](#knowledge--memory) -* 🗺 - [Location Services](#location-services) -* 📊 - [Monitoring](#monitoring) -* 🔎 - [Search](#search) -* 🔒 - [Security](#security) -* 🚆 - [Travel & Transportation](#travel-and-transportation) -* 🔄 - [Version Control](#version-control) -* 🛠 - [Other Tools and Integrations](#other-tools-and-integrations) - -### 📂 Browser Automation - -Web content access and automation capabilities. Enables searching, scraping, and processing web content in AI-friendly formats. -- [@blackwhite084/playwright-plus-python-mcp](https://github.com/blackwhite084/playwright-plus-python-mcp) 🌐 - An MCP python server using Playwright for browser automation,more suitable for llm -- [@executeautomation/playwright-mcp-server](https://github.com/executeautomation/mcp-playwright) 🌐⚡ - An MCP server using Playwright for browser automation and webscrapping -- [@automatalabs/mcp-server-playwright](https://github.com/Automata-Labs-team/MCP-Server-Playwright) 🌐 🖱 - An MCP server for browser automation using Playwright -- [@modelcontextprotocol/server-puppeteer](https://github.com/modelcontextprotocol/servers/tree/main/src/puppeteer) 📇 🏠 - Browser automation for web scraping and interaction -- [@kimtaeyoon83/mcp-server-youtube-transcript](https://github.com/kimtaeyoon83/mcp-server-youtube-transcript) 📇 ☁ - Fetch YouTube subtitles and transcripts for AI analysis -- [@recursechat/mcp-server-apple-shortcuts](https://github.com/recursechat/mcp-server-apple-shortcuts) 📇 🏠 🍎 - An MCP Server Integration with Apple Shortcuts -- [@kimtth/mcp-aoai-web-browsing](https://github.com/kimtth/mcp-aoai-web-browsing) 🐍 🏠 - A `minimal` server/client MCP implementation using Azure OpenAI and Playwright. -- [@pskill9/web-search](https://github.com/pskill9/web-search) 📇 🏠 - An MCP server that enables free web searching using Google search results, with no API keys required. - -### 🎚 Art & Culture - -Access and explore art collections, cultural heritage, and museum databases. Enables AI models to search and analyze artistic and cultural content. - -[burningion/video-editing-mcp](https://github.com/burningion/video-editing-mcp) 📹🎬 - Add, Analyze, Search, and Generate Video Edits from your Video Jungle Collection -- [r-huijts/rijksmuseum-mcp](https://github.com/r-huijts/rijksmuseum-mcp) 📇 ☁ - Rijksmuseum API integration for artwork search, details, and collections - -### ☁ Cloud Platforms - -Cloud platform service integration. Enables management and interaction with cloud infrastructure and services. - -- [Cloudflare MCP Server](https://github.com/cloudflare/mcp-server-cloudflare) 🎖 📇 ☁ - Integration with Cloudflare services including Workers, KV, R2, and D1 -- [Kubernetes MCP Server](https://github.com/strowk/mcp-k8s-go) - 🏎 ☁/🏠 Kubernetes cluster operations through MCP -- [@flux159/mcp-server-kubernetes](https://github.com/Flux159/mcp-server-kubernetes) - 📇 ☁/🏠 Typescript implementation of Kubernetes cluster operations for pods, deployments, services. - -### 🖥 Command Line - -Run commands, capture output and otherwise interact with shells and command line tools. - -- [g0t4/mcp-server-commands](https://github.com/g0t4/mcp-server-commands) 📇 🏠 - Run any command with `run_command` and `run_script` tools. -- [MladenSU/cli-mcp-server](https://github.com/MladenSU/cli-mcp-server) 🐍 🏠 - Command line interface with secure execution and customizable security policies -- [tumf/mcp-shell-server](https://github.com/tumf/mcp-shell-server) A secure shell command execution server implementing the Model Context Protocol (MCP) - -### 💬 Communication - -Integration with communication platforms for message management and channel operations. Enables AI models to interact with team communication tools. - -- [hannesrudolph/imessage-query-fastmcp-mcp-server](https://github.com/hannesrudolph/imessage-query-fastmcp-mcp-server) 🐍 🏠 🍎 - An MCP server that provides safe access to your iMessage database through Model Context Protocol (MCP), enabling LLMs to query and analyze iMessage conversations with proper phone number validation and attachment handling -- [@modelcontextprotocol/server-slack](https://github.com/modelcontextprotocol/servers/tree/main/src/slack) 📇 ☁ - Slack workspace integration for channel management and messaging -- [@modelcontextprotocol/server-bluesky](https://github.com/keturiosakys/bluesky-context-server) 📇 ☁ - Bluesky instance integration for querying and interaction -- [MarkusPfundstein/mcp-gsuite](https://github.com/MarkusPfundstein/mcp-gsuite) - 🐍 ☁ - Integration with gmail and Google Calendar. -- [adhikasp/mcp-twikit](https://github.com/adhikasp/mcp-twikit) 🐍 ☁ - Interact with Twitter search and timeline - -### 👀 Customer Data Platforms - -Provides access to customer profiles inside of customer data platforms - -- [sergehuber/inoyu-mcp-unomi-server](https://github.com/sergehuber/inoyu-mcp-unomi-server) 📇 ☁ - An MCP server to access and updates profiles on an Apache Unomi CDP server. -- [OpenDataMCP/OpenDataMCP](https://github.com/OpenDataMCP/OpenDataMCP) 🐍 ☁ - Connect any Open Data to any LLM with Model Context Protocol. -- [tinybirdco/mcp-tinybird](https://github.com/tinybirdco/mcp-tinybird) 🐍 ☁ - An MCP server to interact with a Tinybird Workspace from any MCP client. - -### 🗄 Databases - -Secure database access with schema inspection capabilities. Enables querying and analyzing data with configurable security controls including read-only access. - -- [domdomegg/airtable-mcp-server](https://github.com/domdomegg/airtable-mcp-server) 📇 🏠 - Airtable database integration with schema inspection, read and write capabilities -- [LucasHild/mcp-server-bigquery](https://github.com/LucasHild/mcp-server-bigquery) 🐍 ☁ - BigQuery database integration with schema inspection and query capabilities -- [ergut/mcp-bigquery-server](https://github.com/ergut/mcp-bigquery-server) 📇 ☁ - Server implementation for Google BigQuery integration that enables direct BigQuery database access and querying capabilities -- [ClickHouse/mcp-clickhouse](https://github.com/ClickHouse/mcp-clickhouse) 🐍 ☁ - ClickHouse database integration with schema inspection and query capabilities -- [@fireproof-storage/mcp-database-server](https://github.com/fireproof-storage/mcp-database-server) 📇 ☁ - Fireproof ledger database with multi-user sync -- [designcomputer/mysql_mcp_server](https://github.com/designcomputer/mysql_mcp_server) 🐍 🏠 - MySQL database integration with configurable access controls, schema inspection, and comprehensive security guidelines -- [f4ww4z/mcp-mysql-server](https://github.com/f4ww4z/mcp-mysql-server) 🐍 🏠 - Node.js-based MySQL database integration that provides secure MySQL database operations -- [@modelcontextprotocol/server-postgres](https://github.com/modelcontextprotocol/servers/tree/main/src/postgres) 📇 🏠 - PostgreSQL database integration with schema inspection and query capabilities -- [@modelcontextprotocol/server-sqlite](https://github.com/modelcontextprotocol/servers/tree/main/src/sqlite) 🐍 🏠 - SQLite database operations with built-in analysis features -- [@joshuarileydev/supabase-mcp-server](https://github.com/joshuarileydev/supabase) - Supabase MCP Server for managing and creating projects and organisations in Supabase -- [ktanaka101/mcp-server-duckdb](https://github.com/ktanaka101/mcp-server-duckdb) 🐍 🏠 - DuckDB database integration with schema inspection and query capabilities -- [QuantGeekDev/mongo-mcp](https://github.com/QuantGeekDev/mongo-mcp) 📇 🏠 - MongoDB integration that enables LLMs to interact directly with databases. -- [tinybirdco/mcp-tinybird](https://github.com/tinybirdco/mcp-tinybird) 🐍 ☁ - Tinybird integration with query and API capabilities -- [kiliczsh/mcp-mongo-server](https://github.com/kiliczsh/mcp-mongo-server) 📇 🏠 - A Model Context Protocol Server for MongoDB -- [KashiwaByte/vikingdb-mcp-server](https://github.com/KashiwaByte/vikingdb-mcp-server) 🐍 ☁ - VikingDB integration with collection and index introduction, vector store and search capabilities. -- [neo4j-contrib/mcp-neo4j](https://github.com/neo4j-contrib/mcp-neo4j) 🐍 🏠 - Model Context Protocol with Neo4j -- [isaacwasserman/mcp-snowflake-server](https://github.com/isaacwasserman/mcp-snowflake-server) 🐍 ☁ - Snowflake integration implementing read and (optional) write operations as well as insight tracking -- [hannesrudolph/sqlite-explorer-fastmcp-mcp-server](https://github.com/hannesrudolph/sqlite-explorer-fastmcp-mcp-server) 🐍 🏠 - An MCP server that provides safe, read-only access to SQLite databases through Model Context Protocol (MCP). This server is built with the FastMCP framework, which enables LLMs to explore and query SQLite databases with built-in safety features and query validation. -- [sirmews/mcp-pinecone](https://github.com/sirmews/mcp-pinecone) 🐍 ☁ - Pinecone integration with vector search capabilities -- [runekaagaard/mcp-alchemy](https://github.com/runekaagaard/mcp-alchemy) 🐍 🏠 - Universal SQLAlchemy-based database integration supporting PostgreSQL, MySQL, MariaDB, SQLite, Oracle, MS SQL Server and many more databases. Features schema and relationship inspection, and large dataset analysis capabilities. - -### 💻 Developer Tools - -Tools and integrations that enhance the development workflow and environment management. - -- [QuantGeekDev/docker-mcp](https://github.com/QuantGeekDev/docker-mcp) 🏎 🏠 - Docker container management and operations through MCP -- [snaggle-ai/openapi-mcp-server](https://github.com/snaggle-ai/openapi-mcp-server) 🏎 🏠 - Connect any HTTP/REST API server using an Open API spec (v3) -- [jetbrains/mcpProxy](https://github.com/JetBrains/mcpProxy) 🎖 📇 🏠 - Connect to JetBrains IDE -- [tumf/mcp-text-editor](https://github.com/tumf/mcp-text-editor) 🐍 🏠 - A line-oriented text file editor. Optimized for LLM tools with efficient partial file access to minimize token usage. -- [@joshuarileydev/simulator-mcp-server](https://github.com/JoshuaRileyDev/simulator-mcp-server) 📇 🏠 - An MCP server to control iOS Simulators -- [@joshuarileydev/app-store-connect-mcp-server](https://github.com/JoshuaRileyDev/app-store-connect-mcp-server) 📇 🏠 - An MCP server to communicate with the App Store Connect API for iOS Developers -- [@sammcj/mcp-package-version](https://github.com/sammcj/mcp-package-version) 📇 🏠 - An MCP Server to help LLMs suggest the latest stable package versions when writing code. -- [@delano/postman-mcp-server](https://github.com/delano/postman-mcp-server) 📇 ☁ - Interact with [Postman API](https://www.postman.com/postman/postman-public-workspace/) -- [@vivekvells/mcp-pandoc](https://github.com/vivekVells/mcp-pandoc) 🗄 🚀 - MCP server for seamless document format conversion using Pandoc, supporting Markdown, HTML, PDF, DOCX (.docx), csv and more. -- [@pskill9/website-downloader](https://github.com/pskill9/website-downloader) 🗄 🚀 - This MCP server provides a tool to download entire websites using wget. It preserves the website structure and converts links to work locally. - -### 🧮 Data Science Tools - -Integrations and tools designed to simplify data exploration, analysis and enhance data science workflows. -- [@reading-plus-ai/mcp-server-data-exploration](https://github.com/reading-plus-ai/mcp-server-data-exploration) 🐍 ☁ - Enables autonomous data exploration on .csv-based datasets, providing intelligent insights with minimal effort. - -### 📂 File Systems - -Provides direct access to local file systems with configurable permissions. Enables AI models to read, write, and manage files within specified directories. - -- [@modelcontextprotocol/server-filesystem](https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem) 📇 🏠 - Direct local file system access. -- [@modelcontextprotocol/server-google-drive](https://github.com/modelcontextprotocol/servers/tree/main/src/gdrive) 📇 ☁ - Google Drive integration for listing, reading, and searching files -- [hmk/box-mcp-server](https://github.com/hmk/box-mcp-server) 📇 ☁ - Box integration for listing, reading and searching files -- [mark3labs/mcp-filesystem-server](https://github.com/mark3labs/mcp-filesystem-server) 🏎 🏠 - Golang implementation for local file system access. -- [mamertofabian/mcp-everything-search](https://github.com/mamertofabian/mcp-everything-search) 🐍 🏠 🪟 - Fast Windows file search using Everything SDK -- [cyberchitta/llm-context.py](https://github.com/cyberchitta/llm-context.py) 🐍 🏠 - Share code context with LLMs via MCP or clipboard - -### 💰 Finance & Fintech - -Financial data access and cryptocurrency market information. Enables querying real-time market data, crypto prices, and financial analytics. - -- [QuantGeekDev/coincap-mcp](https://github.com/QuantGeekDev/coincap-mcp) 📇 ☁ - Real-time cryptocurrency market data integration using CoinCap's public API, providing access to crypto prices and market information without API keys -- [anjor/coinmarket-mcp-server](https://github.com/anjor/coinmarket-mcp-server) 🐍 ☁ - Coinmarket API integration to fetch cryptocurrency listings and quotes -- [berlinbra/alpha-vantage-mcp](https://github.com/berlinbra/alpha-vantage-mcp) 🐍 ☁ - Alpha Vantage API integration to fetch both stock and crypto information - -### 🧠 Knowledge & Memory - -Persistent memory storage using knowledge graph structures. Enables AI models to maintain and query structured information across sessions. -- [@modelcontextprotocol/server-memory](https://github.com/modelcontextprotocol/servers/tree/main/src/memory) 📇 🏠 - Knowledge graph-based persistent memory system for maintaining context -- [/CheMiguel23/MemoryMesh](https://github.com/CheMiguel23/MemoryMesh) 📇 🏠 - Enhanced graph-based memory with a focus on AI role-play and story generation -- [/topoteretes/cognee](https://github.com/topoteretes/cognee/tree/dev/cognee-mcp) 📇 🏠 - Memory manager for AI apps and Agents using various graph and vector stores and allowing ingestion from 30+ data sources -- [@hannesrudolph/mcp-ragdocs](https://github.com/hannesrudolph/mcp-ragdocs) 🐍 🏠 - An MCP server implementation that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context -- [@kaliaboi/mcp-zotero](https://github.com/kaliaboi/mcp-zotero) 📇 ☁ - A connector for LLMs to work with collections and sources on your Zotero Cloud - -### 🗺 Location Services - -Geographic and location-based services integration. Enables access to mapping data, directions, and place information. - -- [@modelcontextprotocol/server-google-maps](https://github.com/modelcontextprotocol/servers/tree/main/src/google-maps) 📇 ☁ - Google Maps integration for location services, routing, and place details -- [SecretiveShell/MCP-timeserver](https://github.com/SecretiveShell/MCP-timeserver) 🐍 🏠 - Access the time in any timezone and get the current local time -- [webcoderz/MCP-Geo](https://github.com/webcoderz/MCP-Geo) 🐍 🏠 - Geocoding MCP server for nominatim, ArcGIS, Bing - -### 📊 Monitoring - -Access and analyze application monitoring data. Enables AI models to review error reports and performance metrics. - -- [@modelcontextprotocol/server-sentry](https://github.com/modelcontextprotocol/servers/tree/main/src/sentry) 🐍 ☁ - Sentry.io integration for error tracking and performance monitoring -- [@modelcontextprotocol/server-raygun](https://github.com/MindscapeHQ/mcp-server-raygun) 📇 ☁ - Raygun API V3 integration for crash reporting and real user monitoring -- [metoro-io/metoro-mcp-server](https://github.com/metoro-io/metoro-mcp-server) 🎖 🏎 ☁ - Query and interact with kubernetes environments monitored by Metoro - -### 🔎 Search - -- [@modelcontextprotocol/server-brave-search](https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search) 📇 ☁ - Web search capabilities using Brave's Search API -- [@angheljf/nyt](https://github.com/angheljf/nyt) 📇 ☁ - Search articles using the NYTimes API -- [@modelcontextprotocol/server-fetch](https://github.com/modelcontextprotocol/servers/tree/main/src/fetch) 🐍 🏠 ☁ - Efficient web content fetching and processing for AI consumption -- [ac3xx/mcp-servers-kagi](https://github.com/ac3xx/mcp-servers-kagi) 📇 ☁ - Kagi search API integration -- [exa-labs/exa-mcp-server](https://github.com/exa-labs/exa-mcp-server) 🎖 📇 ☁ – A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way. -- [fatwang2/search1api-mcp](https://github.com/fatwang2/search1api-mcp) 📇 ☁ - Search via search1api (requires paid API key) -- [Tomatio13/mcp-server-tavily](https://github.com/Tomatio13/mcp-server-tavily) ☁ 🐍 – Tavily AI search API -- [blazickjp/arxiv-mcp-server](https://github.com/blazickjp/arxiv-mcp-server) ☁ 🐍 - Search ArXiv research papers -- [mzxrai/mcp-webresearch](https://github.com/mzxrai/mcp-webresearch) 🔍📚 - Search Google and do deep web research on any topic -- [andybrandt/mcp-simple-arxiv](https://github.com/andybrandt/mcp-simple-arxiv) - 🐍 ☁ MCP for LLM to search and read papers from arXiv -- [andybrandt/mcp-simple-pubmed](https://github.com/andybrandt/mcp-simple-pubmed) - 🐍 ☁ MCP to search and read medical / life sciences papers from PubMed. -- [apify/mcp-server-rag-web-browser](https://github.com/apify/mcp-server-rag-web-browser) 📇 ☁ - An MCP server for Apify's RAG Web Browser Actor to perform web searches, scrape URLs, and return content in Markdown. -- [SecretiveShell/MCP-searxng](https://github.com/SecretiveShell/MCP-searxng) 🐍 🏠 - An MCP Server to connect to searXNG instances -- [Bigsy/Clojars-MCP-Server](https://github.com/Bigsy/Clojars-MCP-Server) 📇 ☁ - Clojars MCP Server for upto date dependency information of Clojure libraries -- [Ihor-Sokoliuk/MCP-SearXNG](https://github.com/ihor-sokoliuk/mcp-searxng) 📇 🏠/☁ - A Model Context Protocol Server for [SearXNG](https://docs.searxng.org) -- [erithwik/mcp-hn](https://github.com/erithwik/mcp-hn) 🐍 ☁ - An MCP server to search Hacker News, get top stories, and more. -- [chanmeng/google-news-mcp-server](https://github.com/ChanMeng666/server-google-news) 📇 ☁ - Google News integration with automatic topic categorization, multi-language support, and comprehensive search capabilities including headlines, stories, and related topics through [SerpAPI](https://serpapi.com/). -- [devflowinc/trieve](https://github.com/devflowinc/trieve/tree/main/clients/mcp-server) 🎖📇☁🏠 - Crawl, embed, chunk, search, and retrieve information from datasets through [Trieve](https://trieve.ai) - -### 🔒 Security - -- [dnstwist MCP Server](https://github.com/BurtTheCoder/mcp-dnstwist) 📇🪟☁ - MCP server for dnstwist, a powerful DNS fuzzing tool that helps detect typosquatting, phishing, and corporate espionage. -- [Maigret MCP Server](https://github.com/BurtTheCoder/mcp-maigret) 📇🪟☁ - MCP server for maigret, a powerful OSINT tool that collects user account information from various public sources. This server provides tools for searching usernames across social networks and analyzing URLs. -- [Shodan MCP Server](https://github.com/BurtTheCoder/mcp-shodan) 📇🪟☁ - MCP server for querying the Shodan API and Shodan CVEDB. This server provides tools for IP lookups, device searches, DNS lookups, vulnerability queries, CPE lookups, and more. -- [VirusTotal MCP Server](https://github.com/BurtTheCoder/mcp-virustotal) 📇🪟☁ - MCP server for querying the VirusTotal API. This server provides tools for scanning URLs, analyzing file hashes, and retrieving IP address reports. - -### 🚆 Travel & Transportation - -Access to travel and transportation information. Enables querying schedules, routes, and real-time travel data. - -- [NS Travel Information MCP Server](https://github.com/r-huijts/ns-mcp-server) 📇 ☁ - Access Dutch Railways (NS) travel information, schedules, and real-time updates - -### 🔄 Version Control - -Interact with Git repositories and version control platforms. Enables repository management, code analysis, pull request handling, issue tracking, and other version control operations through standardized APIs. - -- [@modelcontextprotocol/server-github](https://github.com/modelcontextprotocol/servers/tree/main/src/github) 📇 ☁ - GitHub API integration for repository management, PRs, issues, and more -- [@modelcontextprotocol/server-gitlab](https://github.com/modelcontextprotocol/servers/tree/main/src/gitlab) 📇 ☁ 🏠 - GitLab platform integration for project management and CI/CD operations -- [@modelcontextprotocol/server-git](https://github.com/modelcontextprotocol/servers/tree/main/src/git) 🐍 🏠 - Direct Git repository operations including reading, searching, and analyzing local repositories -- [adhikasp/mcp-git-ingest](https://github.com/adhikasp/mcp-git-ingest) 🐍 🏠 - Read and analyze GitHub repositories with your LLM - -### 🛠 Other Tools and Integrations - -- [ivo-toby/contentful-mcp](https://github.com/ivo-toby/contentful-mcp) 📇 🏠 - Update, create, delete content, content-models and assets in your Contentful Space -- [mzxrai/mcp-openai](https://github.com/mzxrai/mcp-openai) 📇 ☁ - Chat with OpenAI's smartest models -- [mrjoshuak/godoc-mcp](https://github.com/mrjoshuak/godoc-mcp) 🏎 🏠 - Token-efficient Go documentation server that provides AI assistants with smart access to package docs and types without reading entire source files -- [pierrebrunelle/mcp-server-openai](https://github.com/pierrebrunelle/mcp-server-openai) 🐍 ☁ - Query OpenAI models directly from Claude using MCP protocol -- [@modelcontextprotocol/server-everything](https://github.com/modelcontextprotocol/servers/tree/main/src/everything) 📇 🏠 - MCP server that exercises all the features of the MCP protocol -- [baba786/phabricator-mcp-server](https://github.com/baba786/phabricator-mcp-server) 🐍 ☁ - Interacting with Phabricator API -- [MarkusPfundstein/mcp-obsidian](https://github.com/MarkusPfundstein/mcp-obsidian) 🐍 ☁ 🏠 - Interacting with Obsidian via REST API -- [calclavia/mcp-obsidian](https://github.com/calclavia/mcp-obsidian) 📇 🏠 - This is a connector to allow Claude Desktop (or any MCP client) to read and search any directory containing Markdown notes (such as an Obsidian vault). -- [anaisbetts/mcp-youtube](https://github.com/anaisbetts/mcp-youtube) 📇 ☁ - Fetch YouTube subtitles -- [danhilse/notion_mcp](https://github.com/danhilse/notion_mcp) 🐍 ☁ - Integrates with Notion's API to manage personal todo lists -- [rusiaaman/wcgw](https://github.com/rusiaaman/wcgw/blob/main/src/wcgw/client/mcp_server/Readme.md) 🐍 🏠 - Autonomous shell execution, computer control and coding agent. (Mac) -- [reeeeemo/ancestry-mcp](https://github.com/reeeeemo/ancestry-mcp) 🐍 🏠 - Allows the AI to read .ged files and genetic data -- [sirmews/apple-notes-mcp](https://github.com/sirmews/apple-notes-mcp) 🐍 🏠 - Allows the AI to read from your local Apple Notes database (macOS only) -- [anjor/coinmarket-mcp-server](https://github.com/anjor/coinmarket-mcp-server) 🐍 🏠 - Coinmarket API integration to fetch cryptocurrency listings and quotes -- [suekou/mcp-notion-server](https://github.com/suekou/mcp-notion-server) 📇 🏠 - Interacting with Notion API -- [amidabuddha/unichat-mcp-server](https://github.com/amidabuddha/unichat-mcp-server) 🐍/📇 ☁ - Send requests to OpenAI, MistralAI, Anthropic, xAI, Google AI or DeepSeek using MCP protocol via tool or predefined prompts. Vendor API key required -- [evalstate/mcp-miro](https://github.com/evalstate/mcp-miro) 📇 ☁ - Access MIRO whiteboards, bulk create and read items. Requires OAUTH key for REST API. -- [sooperset/mcp-atlassian](https://github.com/sooperset/mcp-atlassian) 🐍 ☁ - Natural language search and content access for Confluence workspaces -- [pyroprompts/any-chat-completions-mcp](https://github.com/pyroprompts/any-chat-completions-mcp) - Chat with any other OpenAI SDK Compatible Chat Completions API, like Perplexity, Groq, xAI and more -- [anaisbetts/mcp-installer](https://github.com/anaisbetts/mcp-installer) 🐍 🏠 - An MCP server that installs other MCP servers for you. -- [tanigami/mcp-server-perplexity](https://github.com/tanigami/mcp-server-perplexity) 🐍 ☁ - Interacting with Perplexity API. -- [future-audiences/wikimedia-enterprise-model-context-protocol](https://gitlab.wikimedia.org/repos/future-audiences/wikimedia-enterprise-model-context-protocol) 🐍 ☁ - Wikipedia Article lookup API -- [andybrandt/mcp-simple-timeserver](https://github.com/andybrandt/mcp-simple-timeserver) 🐍 🏠☁ - An MCP server that allows checking local time on the client machine or current UTC time from an NTP server -- [andybrandt/mcp-simple-openai-assistant](https://github.com/andybrandt/mcp-simple-openai-assistant) - 🐍 ☁ MCP to talk to OpenAI assistants (Claude can use any GPT model as his assitant) -- [@llmindset/mcp-hfspace](https://github.com/evalstate/mcp-hfspace) 📇 ☁ - Use HuggingFace Spaces directly from Claude. Use Open Source Image Generation, Chat, Vision tasks and more. Supports Image, Audio and text uploads/downloads. -- [zueai/mcp-manager](https://github.com/zueai/mcp-manager) 📇 ☁ - Simple Web UI to install and manage MCP servers for Claude Desktop App. -- [wong2/mcp-cli](https://github.com/wong2/mcp-cli) 📇 🏠 - CLI tool for testing MCP servers -- [isaacwasserman/mcp-vegalite-server](https://github.com/isaacwasserman/mcp-vegalite-server) 🐍 🏠 - Generate visualizations from fetched data using the VegaLite format and renderer. -- [tevonsb/homeassistant-mcp](https://github.com/tevonsb/homeassistant-mcp) 📇 🏠 - Access Home Assistant data and control devices (lights, switches, thermostats, etc). -- [allenporter/mcp-server-home-assistant](https://github.com/allenporter/mcp-server-home-assistant) 🐍 🏠 - Expose all Home Assistant voice intents through a Model Context Protocol Server allowing home control. -- [nguyenvanduocit/all-in-one-model-context-protocol](https://github.com/nguyenvanduocit/all-in-one-model-context-protocol) 🏎 🏠 - Some useful tools for developer, almost everything an engineer need: confluence, Jira, Youtube, run script, knowledge base RAG, fetch URL, Manage youtube channel, emails, calendar, gitlab -- [@joshuarileydev/mac-apps-launcher-mcp-server](https://github.com/JoshuaRileyDev/mac-apps-launcher) 📇 🏠 - An MCP server to list and launch applications on MacOS -- [ZeparHyfar/mcp-datetime](https://github.com/ZeparHyfar/mcp-datetime) - MCP server providing date and time functions in various formats -- [SecretiveShell/MCP-wolfram-alpha](https://github.com/SecretiveShell/MCP-wolfram-alpha) 🐍 ☁ - An MCP server for querying wolfram alpha API. -- [Amazon Bedrock Nova Canvas](https://github.com/zxkane/mcp-server-amazon-bedrock) 📇 ☁ - Use Amazon Nova Canvas model for image generation. -- [apinetwork/piapi-mcp-server](https://github.com/apinetwork/piapi-mcp-server) 📇 ☁ PiAPI MCP server makes user able to generate media content with Midjourney/Flux/Kling/Hunyuan/Udio/Trellis directly from Claude or any other MCP-compatible apps. -- [gotoolkits/DifyWorkflow](https://github.com/gotoolkits/mcp-difyworkflow-server) - 🏎 ☁ Tools to the query and execute of Dify workflows -- [@pskill9/hn-server](https://github.com/pskill9/hn-server) - 📇 ☁ Parses the HTML content from news.ycombinator.com (Hacker News) and provides structured data for different types of stories (top, new, ask, show, jobs). -- [@mediar-ai/screenpipe](https://github.com/mediar-ai/screenpipe) - 🎖 🊀 🏠 🍎 Local-first system capturing screen/audio with timestamped indexing, SQL/embedding storage, semantic search, LLM-powered history analysis, and event-triggered actions - enables building context-aware AI agents through a NextJS plugin ecosystem. - -## Frameworks - -- [FastMCP](https://github.com/jlowin/fastmcp) 🐍 - A high-level framework for building MCP servers in Python -- [FastMCP](https://github.com/punkpeye/fastmcp) 📇 - A high-level framework for building MCP servers in TypeScript -- [Foxy Contexts](https://github.com/strowk/foxy-contexts) 🏎 - Golang library to write MCP Servers declaratively with functional testing included -- [Genkit MCP](https://github.com/firebase/genkit/tree/main/js/plugins/mcp) 📇 – Provides integration between [Genkit](https://github.com/firebase/genkit/tree/main) and the Model Context Protocol (MCP). -- [LiteMCP](https://github.com/wong2/litemcp) 📇 - A high-level framework for building MCP servers in JavaScript/TypeScript -- [mark3labs/mcp-go](https://github.com/mark3labs/mcp-go) 🏎 - Golang SDK for building MCP Servers and Clients. -- [mcp-framework](https://github.com/QuantGeekDev/mcp-framework) 📇 - Fast and elegant TypeScript framework for building MCP servers -- [mcp-proxy](https://github.com/punkpeye/mcp-proxy) - 📇 A TypeScript SSE proxy for MCP servers that use `stdio` transport. -- [mcp-rs-template](https://github.com/linux-china/mcp-rs-template) 🊀 - MCP CLI server template for Rust -- [metoro-io/mcp-golang](https://github.com/metoro-io/mcp-golang) 🏎 - Golang framework for building MCP Servers, focussed on type safety -- [rectalogic/langchain-mcp](https://github.com/rectalogic/langchain-mcp) 🐍 - Provides MCP tool calling support in LangChain, allowing for the integration of MCP tools into LangChain workflows. -- [salty-flower/ModelContextProtocol.NET](https://github.com/salty-flower/ModelContextProtocol.NET) #⃣ 🏠 - A C# SDK for building MCP servers on .NET 9 with NativeAOT compatibility ⚡ 🔌 -- [@marimo-team/codemirror-mcp](https://github.com/marimo-team/codemirror-mcp) - CodeMirror extension that implements the Model Context Protocol (MCP) for resource mentions and prompt commands. - -## Utilities - -- [boilingdata/mcp-server-and-gw](https://github.com/boilingdata/mcp-server-and-gw) 📇 - An MCP stdio to HTTP SSE transport gateway with example server and MCP client. -- [isaacwasserman/mcp-langchain-ts-client](https://github.com/isaacwasserman/mcp-langchain-ts-client) 📇 – Use MCP provided tools in LangChain.js -- [lightconetech/mcp-gateway](https://github.com/lightconetech/mcp-gateway) 📇 - A gateway demo for MCP SSE Server. -- [mark3labs/mcphost](https://github.com/mark3labs/mcphost) 🏎 - A CLI host application that enables Large Language Models (LLMs) to interact with external tools through the Model Context Protocol (MCP). -- [MCP-Connect](https://github.com/EvalsOne/MCP-Connect) 📇 - A tiny tool that enables cloud-based AI services to access local Stdio based MCP servers by HTTP/HTTPS requests. -- [SecretiveShell/MCP-Bridge](https://github.com/SecretiveShell/MCP-Bridge) 🐍 – an openAI middleware proxy to use mcp in any existing openAI compatible client -- [sparfenyuk/mcp-proxy](https://github.com/sparfenyuk/mcp-proxy) 🐍 – An MCP stdio to SSE transport gateawy. -- [upsonic/gpt-computer-assistant](https://github.com/Upsonic/gpt-computer-assistant) 🐍 – framework to build vertical AI agent +MCP (Model Control Protocol) is a protocol for controlling large language models (LLMs) through natural language. It enables developers to create natural language interfaces for their applications by defining schemas that describe the available actions and data structures. ## Clients -> [!NOTE] -> Looking for MCP clients? Check out the [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) repository. +- [TypeChat](https://github.com/microsoft/TypeChat) - Official TypeScript implementation of MCP +- [LangChain](https://github.com/langchain-ai/langchain) - Python framework for building LLM applications with MCP support -## Tips and Tricks +## Tutorials -### Official prompt to inform LLMs how to use MCP +- [Building an MCP Server](https://github.com/microsoft/TypeChat/blob/main/docs/mcp.md) - Official guide to implementing MCP servers +- [MCP Schema Design](https://github.com/microsoft/TypeChat/blob/main/docs/schemas.md) - Best practices for designing MCP schemas -Want to ask Claude about Model Context Protocol? +## Community -Create a Project, then add this file to it: +- [Discord](https://discord.gg/microsoft-typescript-community) - TypeScript community Discord with MCP discussions +- [GitHub Discussions](https://github.com/microsoft/TypeChat/discussions) - Official TypeChat discussions -https://modelcontextprotocol.io/llms-full.txt +## Server Implementations -Now Claude can answer questions about writing MCP servers and how they work +### 🎚 Art & Design -- https://www.reddit.com/r/ClaudeAI/comments/1h3g01r/want_to_ask_claude_about_model_context_protocol/ +- [Figma MCP](https://github.com/punkpeye/figma-mcp) - Control Figma through natural language +- [Midjourney MCP](https://github.com/punkpeye/midjourney-mcp) - Generate images with Midjourney using natural language -## Star History +### 📊 Data & Analytics - - - - - Star History Chart - - +- [Pandas MCP](https://github.com/punkpeye/pandas-mcp) - Manipulate data with Pandas using natural language +- [Excel MCP](https://github.com/punkpeye/excel-mcp) - Control Excel through natural language + +### 📝 Documents & Text + +- [Google Docs MCP](https://github.com/punkpeye/google-docs-mcp) - Edit Google Docs through natural language +- [Notion MCP](https://github.com/punkpeye/notion-mcp) - Control Notion through natural language + +### 🎮 Gaming + +- [Chess MCP](https://github.com/punkpeye/chess-mcp) - Play chess through natural language +- [Minecraft MCP](https://github.com/punkpeye/minecraft-mcp) - Control Minecraft through natural language + +### 🏢 Organization + +- [GitHub MCP](https://github.com/punkpeye/github-mcp) - Manage GitHub repositories through natural language +- [Slack MCP](https://github.com/punkpeye/slack-mcp) - Send Slack messages through natural language + +### 🛍 Shopping + +- [Amazon MCP](https://github.com/punkpeye/amazon-mcp) - Search and buy products on Amazon using natural language +- [Shopify MCP](https://github.com/punkpeye/shopify-mcp) - Manage Shopify stores through natural language + +### 🎯 Task Management + +- [Jira MCP](https://github.com/punkpeye/jira-mcp) - Create and manage Jira issues through natural language +- [Trello MCP](https://github.com/punkpeye/trello-mcp) - Organize Trello boards through natural language + +### 🚆 Travel & Transportation + +- [Google Maps MCP](https://github.com/punkpeye/google-maps-mcp) - Get directions and explore places using natural language +- [Uber MCP](https://github.com/punkpeye/uber-mcp) - Book rides through natural language + +### 🏃 Sports + +- [FirstCycling MCP](https://github.com/r-huijts/firstcycling-mcp) - Access cycling race data, results, and statistics through natural language. Features include retrieving start lists, race results, and rider information from FirstCycling.info. \ No newline at end of file From 4971fc4fd8a28b220ec4bd2dbc78febf2b8d9639 Mon Sep 17 00:00:00 2001 From: Jinzhi Chen Date: Wed, 26 Mar 2025 08:57:31 +0800 Subject: [PATCH 124/189] Add new DolphinDB server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8538c029..f3f04d63 100644 --- a/README.md +++ b/README.md @@ -165,6 +165,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [rashidazarang/airtable-mcp](https://github.com/rashidazarang/airtable-mcp) 🐍 ☁ - Connect AI tools directly to Airtable. Query, create, update, and delete records using natural language. Features include base management, table operations, schema manipulation, record filtering, and data migration through a standardized MCP interface. - [LucasHild/mcp-server-bigquery](https://github.com/LucasHild/mcp-server-bigquery) 🐍 ☁ - BigQuery database integration with schema inspection and query capabilities - [c4pt0r/mcp-server-tidb](https://github.com/c4pt0r/mcp-server-tidb) 🐍 ☁ - TiDB database integration with schema inspection and query capabilities +- [tradercjz/dolphindb-mcp-server](https://github.com/tradercjz/dolphindb-mcp-server) 🐍 ☁ - TDolphinDB database integration with schema inspection and query capabilities - [ergut/mcp-bigquery-server](https://github.com/ergut/mcp-bigquery-server) 📇 ☁ - Server implementation for Google BigQuery integration that enables direct BigQuery database access and querying capabilities - [ClickHouse/mcp-clickhouse](https://github.com/ClickHouse/mcp-clickhouse) 🐍 ☁ - ClickHouse database integration with schema inspection and query capabilities - [get-convex/convex-backend](https://stack.convex.dev/convex-mcp-server) 📇 ☁ - Convex database integration to introspect tables, functions, and run oneoff queries ([Source](https://github.com/get-convex/convex-backend/blob/main/npm-packages/convex/src/cli/mcp.ts)) From f115cab231f01d041647701675af6a9b39fdbec9 Mon Sep 17 00:00:00 2001 From: ggyy <34892002@qq.com> Date: Wed, 26 Mar 2025 10:37:41 +0800 Subject: [PATCH 125/189] Add bilibili-mcp-js --- README-ja.md | 1 + README-zh.md | 1 + README.md | 1 + 3 files changed, 3 insertions(+) diff --git a/README-ja.md b/README-ja.md index a94556e6..7bf02e8d 100644 --- a/README-ja.md +++ b/README-ja.md @@ -68,6 +68,7 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [@modelcontextprotocol/server-puppeteer](https://github.com/modelcontextprotocol/servers/tree/main/src/puppeteer) 📇 🏠 - Webスクレむピングずむンタラクションのためのブラりザ自動化 - [@kimtaeyoon83/mcp-server-youtube-transcript](https://github.com/kimtaeyoon83/mcp-server-youtube-transcript) 📇 ☁ - AI分析のためのYouTube字幕ずトランスクリプトの取埗 - [@kimtth/mcp-aoai-web-browsing](https://github.com/kimtth/mcp-aoai-web-browsing) 🐍 🏠 - Azure OpenAIずPlaywrightを䜿甚した「最小限の」サヌバヌ/クラむアントMCP実装。 +- [@34892002/bilibili-mcp-js](https://github.com/34892002/bilibili-mcp-js) 📇 🏠 - Bilibiliコンテンツの怜玢をサポヌトするMCPサヌバヌ。LangChain連携のサンプルずテストスクリプトを提䟛。 ### 🎚 芞術ず文化 diff --git a/README-zh.md b/README-zh.md index 1e543669..456c7556 100644 --- a/README-zh.md +++ b/README-zh.md @@ -91,6 +91,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [@recursechat/mcp-server-apple-shortcuts](https://github.com/recursechat/mcp-server-apple-shortcuts) 📇 🏠 🍎 - MCP 服务噚䞎 Apple Shortcuts 的集成 - [kimtth/mcp-aoai-web-browsing](https://github.com/kimtth/mcp-aoai-web-browsing) 🐍 🏠 - 䜿甚 Azure OpenAI 和 Playwright 的“最小”服务噚/客户端 MCP 实现。 - [@pskill9/web-search](https://github.com/pskill9/web-search) 📇 🏠 - 䞀䞪支持䜿甚 Google 搜玢结果进行免莹眑页搜玢的 MCP 服务噚无需 API 密钥 +- [@34892002/bilibili-mcp-js](https://github.com/34892002/bilibili-mcp-js) 📇 🏠 - 䞀䞪支持搜玢 B站 内容的 MCP 服务噚。提䟛LangChain调甚瀺䟋、测试脚本。 ### 🎚 艺术䞎文化 diff --git a/README.md b/README.md index 7d063f1a..bd84e5a2 100644 --- a/README.md +++ b/README.md @@ -99,6 +99,7 @@ Web content access and automation capabilities. Enables searching, scraping, and - [@kimtth/mcp-aoai-web-browsing](https://github.com/kimtth/mcp-aoai-web-browsing) 🐍 🏠 - A `minimal` server/client MCP implementation using Azure OpenAI and Playwright. - [@pskill9/web-search](https://github.com/pskill9/web-search) 📇 🏠 - An MCP server that enables free web searching using Google search results, with no API keys required. - [@co-browser/browser-use-mcp-server](https://github.com/co-browser/browser-use-mcp-server) 🌐🔮 - browser-use packaged as an MCP server with SSE transport. includes a dockerfile to run chromium in docker + a vnc server. +- [@34892002/bilibili-mcp-js](https://github.com/34892002/bilibili-mcp-js) 📇 🏠 - A MCP server that supports searching for Bilibili content. Provides LangChain integration examples and test scripts. ### 🎚 Art & Culture From a69a4e9332375703bcb6d94ff6ebf99990f82cec Mon Sep 17 00:00:00 2001 From: Sergey Ryabov <944361+colriot@users.noreply.github.com> Date: Wed, 26 Mar 2025 16:44:38 +0000 Subject: [PATCH 126/189] Add AgentQL MCP --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7d063f1a..a334100d 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ Checkout [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) * 🗺 - [Location Services](#location-services) * 🎯 - [Marketing](#marketing) * 📊 - [Monitoring](#monitoring) -* 🔎 - [Search](#search) +* 🔎 - [Search & Data Extraction](#search) * 🔒 - [Security](#security) * 🏃 - [Sports](#sports) * 🚆 - [Travel & Transportation](#travel-and-transportation) @@ -326,7 +326,7 @@ Access and analyze application monitoring data. Enables AI models to review erro - [seekrays/mcp-monitor](https://github.com/seekrays/mcp-monitor) 🏎 🏠 - A system monitoring tool that exposes system metrics via the Model Context Protocol (MCP). This tool allows LLMs to retrieve real-time system information through an MCP-compatible interface.support CPU、Memory、Disk、Network、Host、Process - [hyperb1iss/lucidity-mcp](https://github.com/hyperb1iss/lucidity-mcp) 🐍 🏠 - Enhance AI-generated code quality through intelligent, prompt-based analysis across 10 critical dimensions from complexity to security vulnerabilities -### 🔎 Search +### 🔎 Search & Data Extraction - [@modelcontextprotocol/server-brave-search](https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search) 📇 ☁ - Web search capabilities using Brave's Search API - [@angheljf/nyt](https://github.com/angheljf/nyt) 📇 ☁ - Search articles using the NYTimes API @@ -351,6 +351,7 @@ Access and analyze application monitoring data. Enables AI models to review erro - [zhsama/duckduckgo-mcp-server](https://github.com/zhsama/duckduckgo-mpc-server/) 📇 🏠 ☁ - This is a TypeScript-based MCP server that provides DuckDuckGo search functionality. - [vectorize-io/vectorize-mcp-server](https://github.com/vectorize-io/vectorize-mcp-server/) ☁ 📇 - [Vectorize](https://vectorize.io) MCP server for advanced retrieval, Private Deep Research, Anything-to-Markdown file extraction and text chunking. - [jae-jae/fetcher-mcp](https://github.com/jae-jae/fetcher-mcp) 📇 🏠 - MCP server for fetching web page content using Playwright headless browser, supporting Javascript rendering and intelligent content extraction, and outputting Markdown or HTML format. +- [tinyfish-io/agentql-mcp](https://github.com/tinyfish-io/agentql-mcp) 🎖 📇 ☁ - MCP server that provides [AgentQL](https://agentql.com)'s data extraction capabilities. ### 🔒 Security @@ -510,4 +511,4 @@ Now Claude can answer questions about writing MCP servers and how they work Star History Chart - \ No newline at end of file + From 53edc2680e7e7da5e12dd5eb20271cbace25f06e Mon Sep 17 00:00:00 2001 From: Ahmed Saleh Date: Wed, 26 Mar 2025 10:56:57 -0700 Subject: [PATCH 127/189] Add Ashra MCP Server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7d063f1a..fc5769d7 100644 --- a/README.md +++ b/README.md @@ -99,6 +99,7 @@ Web content access and automation capabilities. Enables searching, scraping, and - [@kimtth/mcp-aoai-web-browsing](https://github.com/kimtth/mcp-aoai-web-browsing) 🐍 🏠 - A `minimal` server/client MCP implementation using Azure OpenAI and Playwright. - [@pskill9/web-search](https://github.com/pskill9/web-search) 📇 🏠 - An MCP server that enables free web searching using Google search results, with no API keys required. - [@co-browser/browser-use-mcp-server](https://github.com/co-browser/browser-use-mcp-server) 🌐🔮 - browser-use packaged as an MCP server with SSE transport. includes a dockerfile to run chromium in docker + a vnc server. +- [@getrupt/ashra-mcp](https://github.com/getrupt/ashra-mcp) 🐍 🏠 - Extract structured data from any website. Just prompt and get JSON. ### 🎚 Art & Culture From 85eea84d9b12f41c2253eab07f07453f2e1afcab Mon Sep 17 00:00:00 2001 From: Katarina Supe <61758502+katarinasupe@users.noreply.github.com> Date: Thu, 27 Mar 2025 10:22:11 +0100 Subject: [PATCH 128/189] Add Memgraph MCP Server I added the [Memgraph MCP Server](https://github.com/memgraph/mcp-memgraph) to the Databases list. Wasn't sure where to put it since it isn't ordered, so let me know if this needs to be changed. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7d063f1a..a48b601b 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,8 @@ Secure database access with schema inspection capabilities. Enables querying and - [@joshuarileydev/supabase-mcp-server](https://github.com/joshuarileydev/supabase) - Supabase MCP Server for managing and creating projects and organisations in Supabase - [@alexanderzuev/supabase-mcp-server](https://github.com/alexander-zuev/supabase-mcp-server) - Supabase MCP Server with support for SQL query execution and database exploration tools - [ktanaka101/mcp-server-duckdb](https://github.com/ktanaka101/mcp-server-duckdb) 🐍 🏠 - DuckDB database integration with schema inspection and query capabilities -- [Dataring-engineering/mcp-server-trino](https://github.com/Dataring-engineering/mcp-server-trino) 🐍 ☁ - Trino MCP Server to query and access data from Trino Clusters. +- [Dataring-engineering/mcp-server-trino](https://github.com/Dataring-engineering/mcp-server-trino) 🐍 ☁ - Trino MCP Server to query and access data from Trino Clusters. +- [memgraph/mcp-memgraph](https://github.com/memgraph/mcp-memgraph) 🐍 🏠 - Memgraph MCP Server - includes a tool to run a query against Memgraph and a schema resource. - [furey/mongodb-lens](https://github.com/furey/mongodb-lens) 📇 🏠 - MongoDB Lens: Full Featured MCP Server for MongoDB Databases - [QuantGeekDev/mongo-mcp](https://github.com/QuantGeekDev/mongo-mcp) 📇 🏠 - MongoDB integration that enables LLMs to interact directly with databases. - [kiliczsh/mcp-mongo-server](https://github.com/kiliczsh/mcp-mongo-server) 📇 🏠 - A Model Context Protocol Server for MongoDB @@ -510,4 +511,4 @@ Now Claude can answer questions about writing MCP servers and how they work Star History Chart - \ No newline at end of file + From 41de274fd380ff6749bf0783e712720b7ed5ab1e Mon Sep 17 00:00:00 2001 From: coderpwh Date: Thu, 27 Mar 2025 21:05:33 +0800 Subject: [PATCH 129/189] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7d063f1a..7aa3f89a 100644 --- a/README.md +++ b/README.md @@ -277,6 +277,7 @@ Financial data access and cryptocurrency market information. Enables querying re - [kukapay/uniswap-trader-mcp](https://github.com/kukapay/uniswap-trader-mcp) 🐍 ☁ - An MCP server for AI agents to automate token swaps on Uniswap DEX across multiple blockchains. - [kukapay/token-minter-mcp](https://github.com/kukapay/token-minter-mcp) 🐍 ☁ - An MCP server providing tools for AI agents to mint ERC-20 tokens across multiple blockchains. - [kukapay/thegraph-mcp](https://github.com/kukapay/thegraph-mcp) 🐍 ☁ - An MCP server that powers AI agents with indexed blockchain data from The Graph. +- [pwh-pwh/coin-mcp-server](https://github.com/pwh-pwh/coin-mcp-server) 🐍 ☁ - Bitget API to fetch cryptocurrency price. ### 🎮 Gaming @@ -510,4 +511,4 @@ Now Claude can answer questions about writing MCP servers and how they work Star History Chart - \ No newline at end of file + From 0d0373ed559041f81c7b2a7f3a99e78279375b33 Mon Sep 17 00:00:00 2001 From: coderpwh Date: Thu, 27 Mar 2025 21:07:54 +0800 Subject: [PATCH 130/189] Update README-zh.md --- README-zh.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README-zh.md b/README-zh.md index 1e543669..4581a5d4 100644 --- a/README-zh.md +++ b/README-zh.md @@ -221,6 +221,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [anjor/coinmarket-mcp-server](https://github.com/anjor/coinmarket-mcp-server) 🐍 ☁ - Coinmarket API 集成以获取加密莧垁列衚和报价 - [berlinbra/alpha-vantage-mcp](https://github.com/berlinbra/alpha-vantage-mcp) 🐍 ☁ - Alpha Vantage API 集成甚于获取股祚和加密莧垁信息 - [ferdousbhai/tasty-agent](https://github.com/ferdousbhai/tasty-agent) 🐍 ☁ - Tastyworks API 集成甚于管理 Tastytrade 平台的亀易掻劚 +- [pwh-pwh/coin-mcp-server](https://github.com/pwh-pwh/coin-mcp-server) 🐍 ☁ - 䜿甚 Bitget 公共 API 去获取加密莧垁最新价栌 ### 🎮 枞戏 From 14cf33ebec44e266a3ee9ff47793f9f03de882dd Mon Sep 17 00:00:00 2001 From: tbxark Date: Thu, 27 Mar 2025 21:48:41 +0800 Subject: [PATCH 131/189] Add `TBXark/mcp-proxy` --- README-ja.md | 2 ++ README-zh.md | 1 + README.md | 1 + 3 files changed, 4 insertions(+) diff --git a/README-ja.md b/README-ja.md index a94556e6..4432becc 100644 --- a/README-ja.md +++ b/README-ja.md @@ -271,6 +271,8 @@ Gitリポゞトリおよびバヌゞョン管理プラットフォヌムずの - [firebase/genkit](https://github.com/firebase/genkit) ゚ヌゞェントおよびデヌタ倉換フレヌムワヌク - [continuedev/continue](https://github.com/continuedev/continue) VSCodeの自動補完およびチャットツヌルフル機胜サポヌト - [MCP-Connect](https://github.com/EvalsOne/MCP-Connect) クラりドベヌスのAIサヌビスがロヌカルのStdioベヌスのMCPサヌバヌにHTTP/HTTPSリク゚ストでアクセスできるようにするツヌル +- [TBXark/mcp-proxy](https://github.com/TBXark/mcp-proxy) 🏎 - 耇数のMCPリ゜ヌスサヌバヌを、単䞀のHTTPサヌバヌを通しお集玄し、提䟛するMCPプロキシサヌバヌ。 + ## ヒントずコツ diff --git a/README-zh.md b/README-zh.md index 4581a5d4..f90fef91 100644 --- a/README-zh.md +++ b/README-zh.md @@ -387,6 +387,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [SecretiveShell/MCP-Bridge](https://github.com/SecretiveShell/MCP-Bridge) 🐍 - OpenAI 䞭闎件代理甚于圚任䜕现有的 OpenAI 兌容客户端䞭䜿甚 MCP - [sparfenyuk/mcp-proxy](https://github.com/sparfenyuk/mcp-proxy) 🐍 - MCP stdio 到 SSE 的䌠蟓眑关 - [upsonic/gpt-computer-assistant](https://github.com/Upsonic/gpt-computer-assistant) 🐍 - 甚于构建垂盎 AI 代理的框架 +- [TBXark/mcp-proxy](https://github.com/TBXark/mcp-proxy) 🏎 - 䞀䞪通过单䞪HTTP服务噚聚合并服务倚䞪MCP资源服务噚的MCP代理服务噚。 ## 客户端 diff --git a/README.md b/README.md index 7aa3f89a..b7f2cff4 100644 --- a/README.md +++ b/README.md @@ -487,6 +487,7 @@ Interact with Git repositories and version control platforms. Enables repository - [kukapay/whattimeisit-mcp](https://github.com/kukapay/whattimeisit-mcp) 🐍 ☁ - A lightweight mcp server that tells you exactly what time is it. - [kukapay/whoami-mcp](https://github.com/kukapay/whoami-mcp) 🐍 🏠 - A lightweight MCP server that tells you exactly who you are. - [flux159/mcp-chat](https://github.com/flux159/mcp-chat) 📇🖥 - A CLI based client to chat and connect with any MCP server. Useful during development & testing of MCP servers. +- [TBXark/mcp-proxy](https://github.com/TBXark/mcp-proxy) 🏎 - An MCP proxy server that aggregates and serves multiple MCP resource servers through a single http server. ## Tips and Tricks From b71c5de334522765376fa1c25b14b0f7a903c870 Mon Sep 17 00:00:00 2001 From: Yuval Fatal <92246164+YuvalFireFly@users.noreply.github.com> Date: Thu, 27 Mar 2025 18:04:29 +0200 Subject: [PATCH 132/189] Add Firefly MCP to README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3ccecc44..a3768cce 100644 --- a/README.md +++ b/README.md @@ -236,6 +236,7 @@ Tools and integrations that enhance the development workflow and environment man - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - MCP server for the incident management platform [Rootly](https://rootly.com/). - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - A Model Context Protocol (MCP) server for generating a beautiful interactive mindmap. - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - An implementation of Claude Code capabilities using MCP, enabling AI code understanding, modification, and project analysis with comprehensive tool support. +- [gofireflyio/firefly-mcp](https://github.com/gofireflyio/firefly-mcp) 🎖 📇 ☁ - Integrates, discovers, manages, and codifies cloud resources with [Firefly](https://firefly.ai). ### 🧮 Data Science Tools From e3af8454498f6336dabaf926d739809fbd063a71 Mon Sep 17 00:00:00 2001 From: pab1it0 Date: Thu, 27 Mar 2025 18:39:44 +0200 Subject: [PATCH 133/189] Add Tripadvisor --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a3768cce..a2c316f1 100644 --- a/README.md +++ b/README.md @@ -378,6 +378,7 @@ Access to travel and transportation information. Enables querying schedules, rou - [Airbnb MCP Server](https://github.com/openbnb-org/mcp-server-airbnb) 📇 ☁ - Provides tools to search Airbnb and get listing details. - [NS Travel Information MCP Server](https://github.com/r-huijts/ns-mcp-server) 📇 ☁ - Access Dutch Railways (NS) travel information, schedules, and real-time updates - [KyrieTangSheng/mcp-server-nationalparks](https://github.com/KyrieTangSheng/mcp-server-nationalparks) 📇 ☁ - National Park Service API integration providing latest information of park details, alerts, visitor centers, campgrounds, and events for U.S. National Parks +- [pab1it0/tripadvisor-mcp](https://github.com/pab1it0/tripadvisor-mcp) 📇 🐍 - A MCP server that enables LLMs to interact with Tripadvisor API, supporting location data, reviews, and photos through standardized MCP interfaces ### 🔄 Version Control From a40abdf9399eb262938070c3c1c2964c7d31247b Mon Sep 17 00:00:00 2001 From: Sabrina Aquino <77522207+sabrinaaquino@users.noreply.github.com> Date: Thu, 27 Mar 2025 23:11:15 -0300 Subject: [PATCH 134/189] added Qdrant MCP server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a2c316f1..36d32841 100644 --- a/README.md +++ b/README.md @@ -204,6 +204,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [GreptimeTeam/greptimedb-mcp-server](https://github.com/GreptimeTeam/greptimedb-mcp-server) 🐍 🏠 - MCP Server for querying GreptimeDB. - [idoru/influxdb-mcp-server](https://github.com/idoru/influxdb-mcp-server) 📇 ☁ 🏠 - Run queries against InfluxDB OSS API v2. - [xing5/mcp-google-sheets](https://github.com/xing5/mcp-google-sheets) 🐍 ☁ - A Model Context Protocol server for interacting with Google Sheets. This server provides tools to create, read, update, and manage spreadsheets through the Google Sheets API. +- [qdrant/mcp-server-qdrant](https://github.com/qdrant/mcp-server-qdrant) 🐍 🏠 - A Qdrant MCP server ### 💻 Developer Tools From 53126588bb32f1d2002df15c775e9ed7a41b45f8 Mon Sep 17 00:00:00 2001 From: Maria Z <129901200+ma-zah@users.noreply.github.com> Date: Fri, 28 Mar 2025 11:47:07 +0100 Subject: [PATCH 135/189] added a new MCP server README.md added octomind MCP integration to developer tools --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e10850f2..22ea9d2e 100644 --- a/README.md +++ b/README.md @@ -240,6 +240,7 @@ Tools and integrations that enhance the development workflow and environment man - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - A Model Context Protocol (MCP) server for generating a beautiful interactive mindmap. - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - An implementation of Claude Code capabilities using MCP, enabling AI code understanding, modification, and project analysis with comprehensive tool support. - [gofireflyio/firefly-mcp](https://github.com/gofireflyio/firefly-mcp) 🎖 📇 ☁ - Integrates, discovers, manages, and codifies cloud resources with [Firefly](https://firefly.ai). +- [octomind-mcp](https://github.com/OctoMind-dev/octomind-mcp) - 📇 ☁ lets your preferred AI agent create & run fully managed [Octomind](https://www.octomind.dev/) end-to-end tests from your codebase or other data sources like Jira, Slack or TestRail. ### 🧮 Data Science Tools From 186f9c464a0ddb7b67eded48770034d5d0ff9dad Mon Sep 17 00:00:00 2001 From: Dev-Khant Date: Fri, 28 Mar 2025 16:55:38 +0530 Subject: [PATCH 136/189] Add mem0 mcp server --- README-ja.md | 1 + README-zh.md | 1 + README.md | 1 + 3 files changed, 3 insertions(+) diff --git a/README-ja.md b/README-ja.md index 7bf02e8d..7bb3edd2 100644 --- a/README-ja.md +++ b/README-ja.md @@ -162,6 +162,7 @@ aliyun/alibabacloud-tablestore-mcp-server ☕ 🐍 ☁ - 阿里云衚栌存 - [@modelcontextprotocol/server-memory](https://github.com/modelcontextprotocol/servers/tree/main/src/memory) 📇 🏠 - コンテキストを維持するための知識グラフベヌスの長期蚘憶システム - [/CheMiguel23/MemoryMesh](https://github.com/CheMiguel23/MemoryMesh) 📇 🏠 - AIロヌルプレむずストヌリヌ生成に焊点を圓おた匷化されたグラフベヌスのメモリ +- [@mem0ai/mem0-mcp](https://github.com/mem0ai/mem0-mcp) 🐍 🏠 - CursorやWindsurfなどのIDEでコヌディングの奜みやパタヌンを管理するためのMem0甚モデルコンテキストプロトコルサヌバヌ。コヌド実装、ベストプラクティス、技術文曞の保存、取埗、意味的な凊理のためのツヌルを提䟛したす ### 🗺 䜍眮情報サヌビス diff --git a/README-zh.md b/README-zh.md index 85dedcc4..c8552a80 100644 --- a/README-zh.md +++ b/README-zh.md @@ -240,6 +240,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [/topoteretes/cognee](https://github.com/topoteretes/cognee/tree/dev/cognee-mcp) 📇 🏠 - AI应甚皋序和Agent的内存管理噚䜿甚各种囟存傚和向量存傚并允讞从 30 倚䞪数据源提取数据 - [@hannesrudolph/mcp-ragdocs](https://github.com/hannesrudolph/mcp-ragdocs) 🐍 🏠 - MCP 服务噚实现提䟛了通过矢量搜玢检玢和倄理文档的工具䜿 AI 助手胜借利甚盞关文档䞊䞋文来增区其响应胜力 - [@kaliaboi/mcp-zotero](https://github.com/kaliaboi/mcp-zotero) 📇 ☁ - 䞺 LLM 提䟛的连接噚甚于操䜜 Zotero Cloud 䞊的文献集合和资源 +- [@mem0ai/mem0-mcp](https://github.com/mem0ai/mem0-mcp) 🐍 🏠 - 甚于 Mem0 的暡型䞊䞋文协议服务噚垮助管理猖码偏奜和暡匏提䟛工具甚于存傚、检玢和语义倄理代码实现、最䜳实践和技术文档适甚于 Cursor 和 Windsurf 等 IDE ### 🗺 䜍眮服务 diff --git a/README.md b/README.md index e10850f2..6406fd5c 100644 --- a/README.md +++ b/README.md @@ -303,6 +303,7 @@ Persistent memory storage using knowledge graph structures. Enables AI models to - [@kaliaboi/mcp-zotero](https://github.com/kaliaboi/mcp-zotero) 📇 ☁ - A connector for LLMs to work with collections and sources on your Zotero Cloud - [mcp-summarizer](https://github.com/0xshellming/mcp-summarizer) 📕 ☁ - AI Summarization MCP Server, Support for multiple content types: Plain text, Web pages, PDF documents, EPUB books, HTML content - [graphlit-mcp-server](https://github.com/graphlit/graphlit-mcp-server) 📇 ☁ - Ingest anything from Slack, Discord, websites, Google Drive, Linear or GitHub into a Graphlit project - and then search and retrieve relevant knowledge within an MCP client like Cursor, Windsurf or Cline. +- [@mem0ai/mem0-mcp](https://github.com/mem0ai/mem0-mcp) 🐍 🏠 - A Model Context Protocol server for Mem0 that helps manage coding preferences and patterns, providing tools for storing, retrieving and semantically handling code implementations, best practices and technical documentation in IDEs like Cursor and Windsurf ### 🗺 Location Services From 6c3cfd9584659363a74604c3a7a088594de011df Mon Sep 17 00:00:00 2001 From: Konstantin Tumalevich Date: Fri, 28 Mar 2025 18:48:13 +0500 Subject: [PATCH 137/189] Add DIDLOGIC mcp --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e10850f2..30ca1e35 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ Access and explore art collections, cultural heritage, and museum databases. Ena - [burningion/video-editing-mcp](https://github.com/burningion/video-editing-mcp) 📹🎬 - Add, Analyze, Search, and Generate Video Edits from your Video Jungle Collection - [r-huijts/rijksmuseum-mcp](https://github.com/r-huijts/rijksmuseum-mcp) 📇 ☁ - Rijksmuseum API integration for artwork search, details, and collections -- [yuna0x0/anilist-mcp](https://github.com/yuna0x0/anilist-mcp) 📇 ☁ - A MCP server integrating AniList API for anime and manga information +- [yuna0x0/anilist-mcp](https://github.com/yuna0x0/anilist-mcp) 📇 ☁ - A MCP server integrating AniList API for anime and manga information ### ☁ Cloud Platforms @@ -149,6 +149,7 @@ Integration with communication platforms for message management and channel oper - [carterlasalle/mac_messages_mcp](https://github.com/carterlasalle/mac_messages_mcp) 🏠 🍎 🚀 - An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages. - [sawa-zen/vrchat-mcp](https://github.com/sawa-zen/vrchat-mcp) - 📇 🏠 This is an MCP server for interacting with the VRChat API. You can retrieve information about friends, worlds, avatars, and more in VRChat. - [arpitbatra123/mcp-googletasks](https://github.com/arpitbatra123/mcp-googletasks) - 📇 ☁ - An MCP server to interface with the Google Tasks API +- [userad/didlogic_mcp](https://github.com/UserAd/didlogic_mcp) - 🐍 ☁ - An MCP server for [DIDLogic](https://didlogic.com). Adds functionality to manage SIP endpoints, numbers and destinations. ### 👀 Customer Data Platforms @@ -233,7 +234,7 @@ Tools and integrations that enhance the development workflow and environment man - [xcodebuild](https://github.com/ShenghaiWang/xcodebuild) 🍎 Build iOS Xcode workspace/project and feed back errors to llm. - [@jasonjmcghee/claude-debugs-for-you](https://github.com/jasonjmcghee/claude-debugs-for-you) 📇 🏠 - An MCP Server and VS Code Extension which enables (language agnostic) automatic debugging via breakpoints and expression evaluation. - [@Jktfe/serveMyAPI](https://github.com/Jktfe/serveMyAPI) 📇 🏠 🍎 - A personal MCP (Model Context Protocol) server for securely storing and accessing API keys across projects using the macOS Keychain. -- [@xzq.xu/jvm-mcp-server](https://github.com/xzq-xu/jvm-mcp-server) 📇 🏠 - An implementation project of a JVM-based MCP (Model Context Protocol) server. +- [@xzq.xu/jvm-mcp-server](https://github.com/xzq-xu/jvm-mcp-server) 📇 🏠 - An implementation project of a JVM-based MCP (Model Context Protocol) server. - [@yangkyeongmo@/mcp-server-apache-airflow](https://github.com/yangkyeongmo/mcp-server-apache-airflow) 🐍 🏠 - MCP server that connects to [Apache Airflow](https://airflow.apache.org/) using official client. - [hyperb1iss/droidmind](https://github.com/hyperb1iss/droidmind) 🐍 🏠 - Control Android devices with AI through MCP, enabling device control, debugging, system analysis, and UI automation with a comprehensive security framework. - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - MCP server for the incident management platform [Rootly](https://rootly.com/). @@ -284,7 +285,7 @@ Financial data access and cryptocurrency market information. Enables querying re - [kukapay/token-minter-mcp](https://github.com/kukapay/token-minter-mcp) 🐍 ☁ - An MCP server providing tools for AI agents to mint ERC-20 tokens across multiple blockchains. - [kukapay/thegraph-mcp](https://github.com/kukapay/thegraph-mcp) 🐍 ☁ - An MCP server that powers AI agents with indexed blockchain data from The Graph. - [pwh-pwh/coin-mcp-server](https://github.com/pwh-pwh/coin-mcp-server) 🐍 ☁ - Bitget API to fetch cryptocurrency price. - + ### 🎮 Gaming Integration with gaming related data, game engines, and services @@ -479,7 +480,7 @@ Interact with Git repositories and version control platforms. Enables repository - [quarkiverse/quarkus-mcp-server](https://github.com/quarkiverse/quarkus-mcp-server) ☕ - Java SDK for building MCP servers using Quarkus. - [lastmile-ai/mcp-agent](https://github.com/lastmile-ai/mcp-agent) 🀖 🔌 - Build effective agents with MCP servers using simple, composable patterns. - [mullerhai/sakura-mcp](https://github.com/mullerhai/sakura-mcp) 🊀 ☕ - Scala MCP Framework for Build effective agents with MCP servers and MCP clients shade from modelcontextprotocol.io. - + ## Utilities - [boilingdata/mcp-server-and-gw](https://github.com/boilingdata/mcp-server-and-gw) 📇 - An MCP stdio to HTTP SSE transport gateway with example server and MCP client. From 70d35fe853220b382b6f132e5922ebd6c2934059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Fri, 28 Mar 2025 14:48:55 +0100 Subject: [PATCH 138/189] Add mcp-typescribe This adds https://github.com/yWorks/mcp-typescribe mcp server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e10850f2..d53d98c1 100644 --- a/README.md +++ b/README.md @@ -240,6 +240,7 @@ Tools and integrations that enhance the development workflow and environment man - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - A Model Context Protocol (MCP) server for generating a beautiful interactive mindmap. - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - An implementation of Claude Code capabilities using MCP, enabling AI code understanding, modification, and project analysis with comprehensive tool support. - [gofireflyio/firefly-mcp](https://github.com/gofireflyio/firefly-mcp) 🎖 📇 ☁ - Integrates, discovers, manages, and codifies cloud resources with [Firefly](https://firefly.ai). +- [yWorks/mcp-typescribe](https://github.com/yWorks/mcp-typescribe) 📇 🏠 - MCP server that provides Typescript API information efficiently to the agent to enable it to work with untrained APIs ### 🧮 Data Science Tools From 287cfa2e0909ee084734937f022752c9b5167dbc Mon Sep 17 00:00:00 2001 From: Rigotti <3322252+jrgtt@users.noreply.github.com> Date: Fri, 28 Mar 2025 11:27:24 -0300 Subject: [PATCH 139/189] Add chrishayuk's mcp-cli --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e10850f2..917fd6f4 100644 --- a/README.md +++ b/README.md @@ -427,6 +427,7 @@ Interact with Git repositories and version control platforms. Enables repository - [@llmindset/mcp-hfspace](https://github.com/evalstate/mcp-hfspace) 📇 ☁ - Use HuggingFace Spaces directly from Claude. Use Open Source Image Generation, Chat, Vision tasks and more. Supports Image, Audio and text uploads/downloads. - [zueai/mcp-manager](https://github.com/zueai/mcp-manager) 📇 ☁ - Simple Web UI to install and manage MCP servers for Claude Desktop App. - [wong2/mcp-cli](https://github.com/wong2/mcp-cli) 📇 🏠 - CLI tool for testing MCP servers +- [chrishayuk/mcp-cli](https://github.com/chrishayuk/mcp-cli) 🐍 🏠 - Yet another CLI tool for testing MCP servers - [isaacwasserman/mcp-vegalite-server](https://github.com/isaacwasserman/mcp-vegalite-server) 🐍 🏠 - Generate visualizations from fetched data using the VegaLite format and renderer. - [tevonsb/homeassistant-mcp](https://github.com/tevonsb/homeassistant-mcp) 📇 🏠 - Access Home Assistant data and control devices (lights, switches, thermostats, etc). - [allenporter/mcp-server-home-assistant](https://github.com/allenporter/mcp-server-home-assistant) 🐍 🏠 - Expose all Home Assistant voice intents through a Model Context Protocol Server allowing home control. From 58bba2df1053f3d6a86a649342d2f29f335fbc70 Mon Sep 17 00:00:00 2001 From: Luke X Date: Fri, 28 Mar 2025 19:01:04 -0400 Subject: [PATCH 140/189] add database-mcp by Legion AI to readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2a6786b7..f52ae998 100644 --- a/README.md +++ b/README.md @@ -164,6 +164,7 @@ Provides access to customer profiles inside of customer data platforms Secure database access with schema inspection capabilities. Enables querying and analyzing data with configurable security controls including read-only access. - [aliyun/alibabacloud-tablestore-mcp-server](https://github.com/aliyun/alibabacloud-tablestore-mcp-server) ☕ 🐍 ☁ - MCP service for Tablestore, features include adding documents, semantic search for documents based on vectors and scalars, RAG-friendly, and serverless. +- [TheRaLabs/legion-mcp](https://github.com/TheRaLabs/legion-mcp) 🐍 🏠 Universal database MCP server supporting multiple database types including PostgreSQL, Redshift, CockroachDB, MySQL, RDS MySQL, Microsoft SQL Server, BigQuery, Oracle DB, and SQLite. - [cr7258/elasticsearch-mcp-server](https://github.com/cr7258/elasticsearch-mcp-server) 🐍 🏠 - MCP Server implementation that provides Elasticsearch interaction - [domdomegg/airtable-mcp-server](https://github.com/domdomegg/airtable-mcp-server) 📇 🏠 - Airtable database integration with schema inspection, read and write capabilities - [rashidazarang/airtable-mcp](https://github.com/rashidazarang/airtable-mcp) 🐍 ☁ - Connect AI tools directly to Airtable. Query, create, update, and delete records using natural language. Features include base management, table operations, schema manipulation, record filtering, and data migration through a standardized MCP interface. From 1a84b585d3266355c50d14f729374a7f1d9797f4 Mon Sep 17 00:00:00 2001 From: kukapay Date: Sat, 29 Mar 2025 07:59:42 +0800 Subject: [PATCH 141/189] add several crypto-related servers --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index c56421ab..d695acff 100644 --- a/README.md +++ b/README.md @@ -287,6 +287,10 @@ Financial data access and cryptocurrency market information. Enables querying re - [pwh-pwh/coin-mcp-server](https://github.com/pwh-pwh/coin-mcp-server) 🐍 ☁ - Bitget API to fetch cryptocurrency price. - [kukapay/jupiter-mcp](https://github.com/kukapay/jupiter-mcp) 🐍 ☁ - An MCP server for executing token swaps on the Solana blockchain using Jupiter's new Ultra API. - [kukapay/crypto-indicators-mcp](https://github.com/kukapay/crypto-indicators-mcp) 🐍 ☁ - An MCP server providing a range of cryptocurrency technical analysis indicators and strategie. +- [kukapay/token-revoke-mcp](https://github.com/kukapay/token-revoke-mcp) 🐍 ☁ - An MCP server for checking and revoking ERC-20 token allowances across multiple blockchains. +- [kukapay/crypto-sentiment-mcp](https://github.com/kukapay/crypto-sentiment-mcp) 🐍 ☁ - An MCP server that delivers cryptocurrency sentiment analysis to AI agents. +- [kukapay/rug-check-mcp](https://github.com/kukapay/rug-check-mcp) 🐍 ☁ - An MCP server that detects potential risks in Solana meme tokens. +- [kukapay/freqtrade-mcp](https://github.com/kukapay/freqtrade-mcp) 🐍 ☁ - An MCP server that integrates with the Freqtrade cryptocurrency trading bot. ### 🎮 Gaming From 9e97824added028f92998216cf821d1eccbcd8e4 Mon Sep 17 00:00:00 2001 From: Max Andreacchi <84281259+atomicchonk@users.noreply.github.com> Date: Fri, 28 Mar 2025 23:47:03 -0400 Subject: [PATCH 142/189] Added ROADRecon MCP Server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2a6786b7..6daf5eac 100644 --- a/README.md +++ b/README.md @@ -369,6 +369,7 @@ Access and analyze application monitoring data. Enables AI models to review erro - [VirusTotal MCP Server](https://github.com/BurtTheCoder/mcp-virustotal) 📇🪟☁ - MCP server for querying the VirusTotal API. This server provides tools for scanning URLs, analyzing file hashes, and retrieving IP address reports. - [ORKL MCP Server](https://github.com/fr0gger/MCP_Security) 📇🛡☁ - MCP server for querying the ORKL API. This server provides tools for fetching threat reports, analyzing threat actors, and retrieving intelligence sources. - [Security Audit MCP Server](https://github.com/qianniuspace/mcp-security-audit) 📇🛡☁ A powerful MCP (Model Context Protocol) Server that audits npm package dependencies for security vulnerabilities. Built with remote npm registry integration for real-time security checks. +- [ROADRecon MCP Server](https://github.com/atomicchonk/roadrecon_mcp_server) 🐍🪟🏠 MCP server for analyzing ROADrecon gather results from Azure tenant enumeration ### 🏃 Sports From 6059168349718291459c0b1199dde3a45d737292 Mon Sep 17 00:00:00 2001 From: yang-dumplingai Date: Sat, 29 Mar 2025 15:45:10 +1100 Subject: [PATCH 143/189] added dumplingai server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2a6786b7..a48b4266 100644 --- a/README.md +++ b/README.md @@ -338,6 +338,7 @@ Access and analyze application monitoring data. Enables AI models to review erro ### 🔎 Search - [@modelcontextprotocol/server-brave-search](https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search) 📇 ☁ - Web search capabilities using Brave's Search API +- [Dumpling-AI/mcp-server-dumplingai](https://github.com/Dumpling-AI/mcp-server-dumplingai) 🎖 📇 ☁ - Access data, web scraping, and document conversion APIs by [Dumpling AI](https://www.dumplingai.com/) - [@angheljf/nyt](https://github.com/angheljf/nyt) 📇 ☁ - Search articles using the NYTimes API - [@modelcontextprotocol/server-fetch](https://github.com/modelcontextprotocol/servers/tree/main/src/fetch) 🐍 🏠 ☁ - Efficient web content fetching and processing for AI consumption - [ac3xx/mcp-servers-kagi](https://github.com/ac3xx/mcp-servers-kagi) 📇 ☁ - Kagi search API integration From c0b774daf5c6232c19eef0ad7e4afa9fc54b0d4f Mon Sep 17 00:00:00 2001 From: yang-dumplingai Date: Sat, 29 Mar 2025 15:49:30 +1100 Subject: [PATCH 144/189] added zh and ja versions --- README-ja.md | 1 + README-zh.md | 1 + 2 files changed, 2 insertions(+) diff --git a/README-ja.md b/README-ja.md index f17e2e28..35e15e25 100644 --- a/README-ja.md +++ b/README-ja.md @@ -180,6 +180,7 @@ aliyun/alibabacloud-tablestore-mcp-server ☕ 🐍 ☁ - 阿里云衚栌存 ### 🔎 怜玢 - [@modelcontextprotocol/server-brave-search](https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search) 📇 ☁ - Braveの怜玢APIを䜿甚したWeb怜玢機胜 +- [Dumpling-AI/mcp-server-dumplingai](https://github.com/Dumpling-AI/mcp-server-dumplingai) 🎖 📇 ☁ - [Dumpling AI](https://www.dumplingai.com/) によるデヌタ取埗、Webスクレむピング、ドキュメント倉換API - [@angheljf/nyt](https://github.com/angheljf/nyt) 📇 ☁ - NYTimes APIを䜿甚しお蚘事を怜玢 - [@modelcontextprotocol/server-fetch](https://github.com/modelcontextprotocol/servers/tree/main/src/fetch) 🐍 🏠 ☁ - AI消費のための効率的なWebコンテンツの取埗ず凊理 - [ac3xx/mcp-servers-kagi](https://github.com/ac3xx/mcp-servers-kagi) 📇 ☁ - Kagi怜玢API統合 diff --git a/README-zh.md b/README-zh.md index 1a7687bc..3c0a2c15 100644 --- a/README-zh.md +++ b/README-zh.md @@ -269,6 +269,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 ### 🔎 搜玢 - [@modelcontextprotocol/server-brave-search](https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search) 📇 ☁ - 䜿甚 Brave 的搜玢 API 实现眑页搜玢功胜 +- [Dumpling-AI/mcp-server-dumplingai](https://github.com/Dumpling-AI/mcp-server-dumplingai) 🎖 📇 ☁ - 通过 [Dumpling AI](https://www.dumplingai.com/) 提䟛的数据访问、眑页抓取䞎文档蜬换 API - [@angheljf/nyt](https://github.com/angheljf/nyt) 📇 ☁ - 䜿甚 NYTimes API 搜玢文章 - [@modelcontextprotocol/server-fetch](https://github.com/modelcontextprotocol/servers/tree/main/src/fetch) 🐍 🏠 ☁ - 高效获取和倄理眑页内容䟛 AI 䜿甚 - [ac3xx/mcp-servers-kagi](https://github.com/ac3xx/mcp-servers-kagi) 📇 ☁ - Kagi 搜玢 API 集成 From 11433b89d5c349f4e9b2bc9d6e572dab83e55298 Mon Sep 17 00:00:00 2001 From: cr7258 Date: Sat, 29 Mar 2025 16:48:54 +0800 Subject: [PATCH 145/189] Add higress-ops-mcp-server --- README-ja.md | 1 + README-zh.md | 1 + README.md | 1 + 3 files changed, 3 insertions(+) diff --git a/README-ja.md b/README-ja.md index f17e2e28..d5e52ee1 100644 --- a/README-ja.md +++ b/README-ja.md @@ -139,6 +139,7 @@ aliyun/alibabacloud-tablestore-mcp-server ☕ 🐍 ☁ - 阿里云衚栌存 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - むンシデント管理プラットフォヌム[Rootly](https://rootly.com/)向けのMCPサヌバヌ - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - きれいなむンタラクティブなマむンドマップを生成するためのモデルコンテキストプロトコルMCPサヌバ。 - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - MCPを䜿甚したClaude Code機胜の実装で、AIによるコヌド理解、修正、プロゞェクト分析を包括的なツヌルサポヌトで実珟したす。 +- [higress-group/higress-ops-mcp-server](https://github.com/higress-group/higress-ops-mcp-server) 🐍 🏠 - MCP サヌバヌが [Higress](https://github.com/alibaba/higress/blob/main/README_JP.md) ゲヌトりェむの構成ず操䜜を管理するための党面的なツヌルを提䟛したす。 ### 📂 ファむルシステム diff --git a/README-zh.md b/README-zh.md index 1a7687bc..646ccecc 100644 --- a/README-zh.md +++ b/README-zh.md @@ -194,6 +194,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - 甚于事件管理平台 Rootly](https://rootly.com/) 的 MCP 服务噚 - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - 甚于生成挂亮亀互匏思绎富囟mindmap的暡型䞊䞋文协议MCP服务噚。 - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - 䜿甚 MCP 实现的 Claude Code 功胜支持 AI 代码理解、修改和项目分析并提䟛党面的工具支持。 +- [higress-group/higress-ops-mcp-server](https://github.com/higress-group/higress-ops-mcp-server) 🐍 🏠 - 支持对 [Higress](https://github.com/alibaba/higress/blob/main/README_ZH.md) 眑关进行党面的配眮和管理。 ### 🧮 数据科孊工具 diff --git a/README.md b/README.md index 2a6786b7..5553f507 100644 --- a/README.md +++ b/README.md @@ -241,6 +241,7 @@ Tools and integrations that enhance the development workflow and environment man - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - An implementation of Claude Code capabilities using MCP, enabling AI code understanding, modification, and project analysis with comprehensive tool support. - [gofireflyio/firefly-mcp](https://github.com/gofireflyio/firefly-mcp) 🎖 📇 ☁ - Integrates, discovers, manages, and codifies cloud resources with [Firefly](https://firefly.ai). - [yWorks/mcp-typescribe](https://github.com/yWorks/mcp-typescribe) 📇 🏠 - MCP server that provides Typescript API information efficiently to the agent to enable it to work with untrained APIs +- [higress-group/higress-ops-mcp-server](https://github.com/higress-group/higress-ops-mcp-server) 🐍 🏠 - MCP server that provides comprehensive tools for managing [Higress](https://github.com/alibaba/higress) gateway configurations and operations. ### 🧮 Data Science Tools From 2de01d8a4128b36ffb36645d84c2aeb660e1c5d0 Mon Sep 17 00:00:00 2001 From: eyalz Date: Sat, 29 Mar 2025 11:52:02 +0300 Subject: [PATCH 146/189] Add browser-control-mcp server --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2a6786b7..a2280b11 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ Web content access and automation capabilities. Enables searching, scraping, and - [@co-browser/browser-use-mcp-server](https://github.com/co-browser/browser-use-mcp-server) 🌐🔮 - browser-use packaged as an MCP server with SSE transport. includes a dockerfile to run chromium in docker + a vnc server. - [@34892002/bilibili-mcp-js](https://github.com/34892002/bilibili-mcp-js) 📇 🏠 - A MCP server that supports searching for Bilibili content. Provides LangChain integration examples and test scripts. - [@getrupt/ashra-mcp](https://github.com/getrupt/ashra-mcp) 🐍 🏠 - Extract structured data from any website. Just prompt and get JSON. - +- [@eyalzh/browser-control-mcp](https://github.com/eyalzh/browser-control-mcp) 📇 🏠 - An MCP server paired with a browser extension that enables LLM clients to control the user's browser (Firefox). ### 🎚 Art & Culture From 37bd5e23ea97ecdcb87f8255366f65de0935e762 Mon Sep 17 00:00:00 2001 From: Howard Chi Date: Sat, 29 Mar 2025 21:04:38 +0800 Subject: [PATCH 147/189] Update README.md - Add Wren Engine in DB section --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2a6786b7..ec67a9da 100644 --- a/README.md +++ b/README.md @@ -207,6 +207,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [idoru/influxdb-mcp-server](https://github.com/idoru/influxdb-mcp-server) 📇 ☁ 🏠 - Run queries against InfluxDB OSS API v2. - [xing5/mcp-google-sheets](https://github.com/xing5/mcp-google-sheets) 🐍 ☁ - A Model Context Protocol server for interacting with Google Sheets. This server provides tools to create, read, update, and manage spreadsheets through the Google Sheets API. - [qdrant/mcp-server-qdrant](https://github.com/qdrant/mcp-server-qdrant) 🐍 🏠 - A Qdrant MCP server +- [Canner/wren-engine](https://github.com/Canner/wren-engine) 🐍 🊀 🏠 - The Semantic Engine for Model Context Protocol(MCP) Clients and AI Agents ### 💻 Developer Tools From 0a901907743faa12a7d2b7661ebdc06dc95f44ce Mon Sep 17 00:00:00 2001 From: weibaohui Date: Sat, 29 Mar 2025 22:36:34 +0800 Subject: [PATCH 148/189] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 2a6786b7..766b1fad 100644 --- a/README.md +++ b/README.md @@ -123,6 +123,8 @@ Cloud platform service integration. Enables management and interaction with clou - [wenhuwang/mcp-k8s-eye](https://github.com/wenhuwang/mcp-k8s-eye) 🏎 ☁/🏠 MCP Server for kubernetes management, and analyze your cluster, application health - [johnneerdael/netskope-mcp](https://github.com/johnneerdael/netskope-mcp) 🔒 ☁ - An MCP to give access to all Netskope Private Access components within a Netskope Private Access environments including detailed setup information and LLM examples on usage. - [nwiizo/tfmcp](https://github.com/nwiizo/tfmcp) - 🊀 🏠 - A Terraform MCP server allowing AI assistants to manage and operate Terraform environments, enabling reading configurations, analyzing plans, applying configurations, and managing Terraform state. +- [weibaohui/k8m](https://github.com/weibaohui/k8m) - 🏎 ☁/🏠 Provides MCP multi-cluster Kubernetes management and operations, featuring a management interface, logging, and nearly 50 built-in tools covering common DevOps and development scenarios. Supports both standard and CRD resources. +- [weibaohui/kom](https://github.com/weibaohui/kom) - 🏎 ☁/🏠 Provides MCP multi-cluster Kubernetes management and operations. It can be integrated as an SDK into your own project and includes nearly 50 built-in tools covering common DevOps and development scenarios. Supports both standard and CRD resources. ### 🖥 Command Line From 864e85bd00916db1bed09c39ed0b50489047e6ab Mon Sep 17 00:00:00 2001 From: weibaohui Date: Sat, 29 Mar 2025 22:37:21 +0800 Subject: [PATCH 149/189] Update README-zh.md --- README-zh.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README-zh.md b/README-zh.md index 1a7687bc..c4a7d38d 100644 --- a/README-zh.md +++ b/README-zh.md @@ -110,6 +110,8 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [@flux159/mcp-server-kubernetes](https://github.com/Flux159/mcp-server-kubernetes) - 📇 ☁/🏠 䜿甚 Typescript 实现 Kubernetes 集矀䞭针对 pod、郚眲、服务的操䜜。 - [wenhuwang/mcp-k8s-eye](https://github.com/wenhuwang/mcp-k8s-eye) 🏎 ☁/🏠 提䟛 Kubernetes 集矀资源管理, 深床分析集矀和应甚的健康状态 - [johnneerdael/netskope-mcp](https://github.com/johnneerdael/netskope-mcp) 🔒 ☁ - 提䟛对 Netskope Private Access 环境䞭所有组件的访问权限包含诊细的讟眮信息和 LLM 䜿甚瀺䟋。 +- [weibaohui/k8m](https://github.com/weibaohui/k8m) - 🏎 ☁/🏠 提䟛MCP倚集矀k8s管理操䜜提䟛管理界面、日志内眮近50种工具芆盖垞见运绎匀发场景支持垞规资源、CRD资源。 +- [weibaohui/kom](https://github.com/weibaohui/kom) - 🏎 ☁/🏠 提䟛MCP倚集矀k8s管理操䜜可䜜䞺SDK集成到悚自己的项目䞭内眮近50种工具芆盖垞见运绎匀发场景支持垞规资源、CRD资源。 ### 🖥 Command Line From fc6efd179e96df7a0100a45dac5bbb20cdfd9964 Mon Sep 17 00:00:00 2001 From: weibaohui Date: Sat, 29 Mar 2025 22:38:15 +0800 Subject: [PATCH 150/189] Update README-ja.md --- README-ja.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README-ja.md b/README-ja.md index f17e2e28..4842135a 100644 --- a/README-ja.md +++ b/README-ja.md @@ -83,7 +83,8 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [Cloudflare MCP Server](https://github.com/cloudflare/mcp-server-cloudflare) 🎖 📇 ☁ - Workers、KV、R2、D1を含むCloudflareサヌビスずの統合 - [Kubernetes MCP Server](https://github.com/strowk/mcp-k8s-go) - 🏎 ☁ MCPを通じたKubernetesクラスタヌ操䜜 - [wenhuwang/mcp-k8s-eye](https://github.com/wenhuwang/mcp-k8s-eye) 🏎 ☁/🏠 Kubernetes クラスタヌのリ゜ヌス管理ず、クラスタヌずアプリケヌションの健党性ステヌタスの詳现な分析を提䟛したす。 - +- [weibaohui/k8m](https://github.com/weibaohui/k8m) - 🏎 ☁/🏠 MCPマルチクラスタヌKubernetesの管理ず運甚を提䟛し、管理むンタヌフェヌス、ログ機胜を備え、䞀般的な運甚・開発シナリオをカバヌする玄50皮類のツヌルを内蔵。暙準リ゜ヌスおよびCRDリ゜ヌスをサポヌト。 +- [weibaohui/kom](https://github.com/weibaohui/kom) - 🏎 ☁/🏠 MCPマルチクラスタヌKubernetesの管理ず運甚を提䟛。SDKずしお自身のプロゞェクトに統合可胜で、䞀般的な運甚・開発シナリオをカバヌする玄50皮類のツヌルを内蔵。暙準リ゜ヌスおよびCRDリ゜ヌスをサポヌト。 ### 💬 コミュニケヌション メッセヌゞ管理ずチャネル操䜜のためのコミュニケヌションプラットフォヌムずの統合。AIモデルがチヌムコミュニケヌションツヌルず察話できるようにしたす。 From 4067f8b57d01298ef2e78f05dcbb772b25a23121 Mon Sep 17 00:00:00 2001 From: Maxim Saplin Date: Sat, 29 Mar 2025 18:31:15 +0300 Subject: [PATCH 151/189] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2a6786b7..ff5e220b 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,8 @@ Run commands, capture output and otherwise interact with shells and command line - [ferrislucas/iterm-mcp](https://github.com/ferrislucas/iterm-mcp) 🖥 🛠 💬 - A Model Context Protocol server that provides access to iTerm. You can run commands and ask questions about what you see in the iTerm terminal. - [g0t4/mcp-server-commands](https://github.com/g0t4/mcp-server-commands) 📇 🏠 - Run any command with `run_command` and `run_script` tools. - [MladenSU/cli-mcp-server](https://github.com/MladenSU/cli-mcp-server) 🐍 🏠 - Command line interface with secure execution and customizable security policies -- [tumf/mcp-shell-server](https://github.com/tumf/mcp-shell-server) A secure shell command execution server implementing the Model Context Protocol (MCP) +- [tumf/mcp-shell-server](https://github.com/tumf/mcp-shell-server) - A secure shell command execution server implementing the Model Context Protocol (MCP) +- [maxim-saplin/mcp_safe_local_python_executor](https://github.com/maxim-saplin/mcp_safe_local_python_executor) - Safe Python interpreter based on HF Smolagents `LocalPythonExecutor` ### 💬 Communication From c658ea098d5aec2076565a0db5c6472782a11355 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Sat, 29 Mar 2025 12:50:15 -0600 Subject: [PATCH 152/189] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 6daf5eac..947bc7b2 100644 --- a/README.md +++ b/README.md @@ -363,13 +363,13 @@ Access and analyze application monitoring data. Enables AI models to review erro ### 🔒 Security -- [dnstwist MCP Server](https://github.com/BurtTheCoder/mcp-dnstwist) 📇🪟☁ - MCP server for dnstwist, a powerful DNS fuzzing tool that helps detect typosquatting, phishing, and corporate espionage. -- [Maigret MCP Server](https://github.com/BurtTheCoder/mcp-maigret) 📇🪟☁ - MCP server for maigret, a powerful OSINT tool that collects user account information from various public sources. This server provides tools for searching usernames across social networks and analyzing URLs. -- [Shodan MCP Server](https://github.com/BurtTheCoder/mcp-shodan) 📇🪟☁ - MCP server for querying the Shodan API and Shodan CVEDB. This server provides tools for IP lookups, device searches, DNS lookups, vulnerability queries, CPE lookups, and more. -- [VirusTotal MCP Server](https://github.com/BurtTheCoder/mcp-virustotal) 📇🪟☁ - MCP server for querying the VirusTotal API. This server provides tools for scanning URLs, analyzing file hashes, and retrieving IP address reports. -- [ORKL MCP Server](https://github.com/fr0gger/MCP_Security) 📇🛡☁ - MCP server for querying the ORKL API. This server provides tools for fetching threat reports, analyzing threat actors, and retrieving intelligence sources. -- [Security Audit MCP Server](https://github.com/qianniuspace/mcp-security-audit) 📇🛡☁ A powerful MCP (Model Context Protocol) Server that audits npm package dependencies for security vulnerabilities. Built with remote npm registry integration for real-time security checks. -- [ROADRecon MCP Server](https://github.com/atomicchonk/roadrecon_mcp_server) 🐍🪟🏠 MCP server for analyzing ROADrecon gather results from Azure tenant enumeration +- [dnstwist MCP Server](https://github.com/BurtTheCoder/mcp-dnstwist) 📇 🪟 ☁ - MCP server for dnstwist, a powerful DNS fuzzing tool that helps detect typosquatting, phishing, and corporate espionage. +- [Maigret MCP Server](https://github.com/BurtTheCoder/mcp-maigret) 📇 🪟 ☁ - MCP server for maigret, a powerful OSINT tool that collects user account information from various public sources. This server provides tools for searching usernames across social networks and analyzing URLs. +- [Shodan MCP Server](https://github.com/BurtTheCoder/mcp-shodan) 📇 🪟 ☁ - MCP server for querying the Shodan API and Shodan CVEDB. This server provides tools for IP lookups, device searches, DNS lookups, vulnerability queries, CPE lookups, and more. +- [VirusTotal MCP Server](https://github.com/BurtTheCoder/mcp-virustotal) 📇 🪟 ☁ - MCP server for querying the VirusTotal API. This server provides tools for scanning URLs, analyzing file hashes, and retrieving IP address reports. +- [ORKL MCP Server](https://github.com/fr0gger/MCP_Security) 📇 🛡 ☁ - MCP server for querying the ORKL API. This server provides tools for fetching threat reports, analyzing threat actors, and retrieving intelligence sources. +- [Security Audit MCP Server](https://github.com/qianniuspace/mcp-security-audit) 📇 🛡 ☁ A powerful MCP (Model Context Protocol) Server that audits npm package dependencies for security vulnerabilities. Built with remote npm registry integration for real-time security checks. +- [ROADRecon MCP Server](https://github.com/atomicchonk/roadrecon_mcp_server) 🐍 🪟 🏠 MCP server for analyzing ROADrecon gather results from Azure tenant enumeration ### 🏃 Sports From a11dadae44925144a2fc04dea9bc4f9e4b6e17e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Ciesielski?= Date: Sun, 30 Mar 2025 00:23:05 +0100 Subject: [PATCH 153/189] Add Salesforce MCP --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 947bc7b2..109d8bfe 100644 --- a/README.md +++ b/README.md @@ -463,6 +463,7 @@ Interact with Git repositories and version control platforms. Enables repository - [marcelmarais/Spotify](https://github.com/marcelmarais/spotify-mcp-server) - 📇 🏠 Control Spotify playback and manage playlists. - [NakaokaRei/swift-mcp-gui](https://github.com/NakaokaRei/swift-mcp-gui.git) 🏠 🍎 - MCP server that can execute commands such as keyboard input and mouse movement - [awwaiid/mcp-server-taskwarrior](https://github.com/awwaiid/mcp-server-taskwarrior) 🏠 📇 - An MCP server for basic local taskwarrior usage (add, update, remove tasks) +- [lciesielski/mcp-salesforce](https://github.com/lciesielski/mcp-salesforce-example) 🏠 ☁ - MCP server with basic demonstration of interactions with Salesforce instance ## Frameworks From 261bc435da7429a73111de92377b341d16f633ff Mon Sep 17 00:00:00 2001 From: PeiSong Date: Sun, 30 Mar 2025 09:38:53 +0800 Subject: [PATCH 154/189] Add ReAPI-com/mcp-openapi server to README files in Japanese, Chinese, and English --- README-ja.md | 1 + README-zh.md | 1 + README.md | 1 + 3 files changed, 3 insertions(+) diff --git a/README-ja.md b/README-ja.md index f17e2e28..f1ca2c8f 100644 --- a/README-ja.md +++ b/README-ja.md @@ -139,6 +139,7 @@ aliyun/alibabacloud-tablestore-mcp-server ☕ 🐍 ☁ - 阿里云衚栌存 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - むンシデント管理プラットフォヌム[Rootly](https://rootly.com/)向けのMCPサヌバヌ - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - きれいなむンタラクティブなマむンドマップを生成するためのモデルコンテキストプロトコルMCPサヌバ。 - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - MCPを䜿甚したClaude Code機胜の実装で、AIによるコヌド理解、修正、プロゞェクト分析を包括的なツヌルサポヌトで実珟したす。 +- [ReAPI-com/mcp-openapi](https://github.com/ReAPI-com/mcp-openapi) 📇 🏠 - LLMがOpenAPI仕様のすべおを理解し、コヌドの発芋、説明、生成、モックデヌタの䜜成を可胜にするMCPサヌバヌ ### 📂 ファむルシステム diff --git a/README-zh.md b/README-zh.md index 1a7687bc..b8f7d443 100644 --- a/README-zh.md +++ b/README-zh.md @@ -194,6 +194,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - 甚于事件管理平台 Rootly](https://rootly.com/) 的 MCP 服务噚 - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - 甚于生成挂亮亀互匏思绎富囟mindmap的暡型䞊䞋文协议MCP服务噚。 - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - 䜿甚 MCP 实现的 Claude Code 功胜支持 AI 代码理解、修改和项目分析并提䟛党面的工具支持。 +- [ReAPI-com/mcp-openapi](https://github.com/ReAPI-com/mcp-openapi) 📇 🏠 - MCP服务噚让LLM胜借了解悚的OpenAPI规范的所有信息以发现、解释和生成代码/暡拟数据 ### 🧮 数据科孊工具 diff --git a/README.md b/README.md index 947bc7b2..d938e0dc 100644 --- a/README.md +++ b/README.md @@ -241,6 +241,7 @@ Tools and integrations that enhance the development workflow and environment man - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - An implementation of Claude Code capabilities using MCP, enabling AI code understanding, modification, and project analysis with comprehensive tool support. - [gofireflyio/firefly-mcp](https://github.com/gofireflyio/firefly-mcp) 🎖 📇 ☁ - Integrates, discovers, manages, and codifies cloud resources with [Firefly](https://firefly.ai). - [yWorks/mcp-typescribe](https://github.com/yWorks/mcp-typescribe) 📇 🏠 - MCP server that provides Typescript API information efficiently to the agent to enable it to work with untrained APIs +- [ReAPI-com/mcp-openapi](https://github.com/ReAPI-com/mcp-openapi) 📇 🏠 - MCP server that lets LLMs know everything about your OpenAPI specifications to discover, explain and generate code/mock data ### 🧮 Data Science Tools From 223e463d06d558ea186a3be8a583db4402f33516 Mon Sep 17 00:00:00 2001 From: Roland Rodriguez Date: Sat, 29 Mar 2025 21:20:34 -0500 Subject: [PATCH 155/189] feat: list Rust Docs MCP Server under Developer Tools Adds the `rust-docs-mcp-server` project to the awesome-mcp-servers list within the "Developer Tools" category. This server addresses the issue of AI assistants using outdated Rust library information by providing an MCP tool (`query_rust_docs`) that delivers context derived directly from current crate documentation using embeddings and LLM summarization. Refs: https://github.com/Govcraft/rust-docs-mcp-server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 947bc7b2..322b769e 100644 --- a/README.md +++ b/README.md @@ -225,6 +225,7 @@ Tools and integrations that enhance the development workflow and environment man - [@joshuarileydev/app-store-connect-mcp-server](https://github.com/JoshuaRileyDev/app-store-connect-mcp-server) 📇 🏠 - An MCP server to communicate with the App Store Connect API for iOS Developers - [@sammcj/mcp-package-version](https://github.com/sammcj/mcp-package-version) 📇 🏠 - An MCP Server to help LLMs suggest the latest stable package versions when writing code. - [@delano/postman-mcp-server](https://github.com/delano/postman-mcp-server) 📇 ☁ - Interact with [Postman API](https://www.postman.com/postman/postman-public-workspace/) +- - [@Govcraft/rust-docs-mcp-server](https://github.com/Govcraft/rust-docs-mcp-server) 🊀 🏠 - Provides up-to-date documentation context for a specific Rust crate to LLMs via an MCP tool, using semantic search (embeddings) and LLM summarization. - [@vivekvells/mcp-pandoc](https://github.com/vivekVells/mcp-pandoc) 🗄 🚀 - MCP server for seamless document format conversion using Pandoc, supporting Markdown, HTML, PDF, DOCX (.docx), csv and more. - [@pskill9/website-downloader](https://github.com/pskill9/website-downloader) 🗄 🚀 - This MCP server provides a tool to download entire websites using wget. It preserves the website structure and converts links to work locally. - [@lamemind/mcp-server-multiverse](https://github.com/lamemind/mcp-server-multiverse) 📇 🏠 🛠 - A middleware server that enables multiple isolated instances of the same MCP servers to coexist independently with unique namespaces and configurations. From 0ccf916b1a7ecf6b88492447a6d411120994ef36 Mon Sep 17 00:00:00 2001 From: Martin Fiser Date: Sat, 29 Mar 2025 19:48:13 -0700 Subject: [PATCH 156/189] Update README.md Added Data Platforms --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 947bc7b2..f9f0d727 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,7 @@ Checkout [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) * 💬 - [Communication](#communication) * 👀 - [Customer Data Platforms](#customer-data-platforms) * 🗄 - [Databases](#databases) +* 📊 - [Data Platforms](#data-platforms) * 🛠 - [Developer Tools](#developer-tools) * 📂 - [File Systems](#file-systems) * 💰 - [Finance & Fintech](#finance--fintech) @@ -208,6 +209,14 @@ Secure database access with schema inspection capabilities. Enables querying and - [xing5/mcp-google-sheets](https://github.com/xing5/mcp-google-sheets) 🐍 ☁ - A Model Context Protocol server for interacting with Google Sheets. This server provides tools to create, read, update, and manage spreadsheets through the Google Sheets API. - [qdrant/mcp-server-qdrant](https://github.com/qdrant/mcp-server-qdrant) 🐍 🏠 - A Qdrant MCP server +### 📊 Data Platforms + +Data Platforms for data integration, transformation and pipeline orchestration. + +- [keboola/keboola-mcp-server](https://github.com/keboola/keboola-mcp-server) - interact with Keboola Connection Data Platform. This server provides tools for listing and accessing data from Keboola Storage API. +- [JordiNei/mcp-databricks-server](https://github.com/JordiNeil/mcp-databricks-server) - Connect to Databricks API, allowing LLMs to run SQL queries, list jobs, and get job status. + + ### 💻 Developer Tools Tools and integrations that enhance the development workflow and environment management. From 002575d2ed174dbe88f8e809c0c74dbef5b7aacb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Sun, 30 Mar 2025 09:47:25 +0300 Subject: [PATCH 157/189] add f/mcptools A powerful command-line interface for interacting with MCP servers. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 947bc7b2..b0237b0c 100644 --- a/README.md +++ b/README.md @@ -499,6 +499,7 @@ Interact with Git repositories and version control platforms. Enables repository - [kukapay/whoami-mcp](https://github.com/kukapay/whoami-mcp) 🐍 🏠 - A lightweight MCP server that tells you exactly who you are. - [flux159/mcp-chat](https://github.com/flux159/mcp-chat) 📇🖥 - A CLI based client to chat and connect with any MCP server. Useful during development & testing of MCP servers. - [TBXark/mcp-proxy](https://github.com/TBXark/mcp-proxy) 🏎 - An MCP proxy server that aggregates and serves multiple MCP resource servers through a single http server. +- [f/MCPTools](https://github.com/f/mcptools) 🔚 - A command-line development tool for inspecting and interacting with MCP servers with extra features like mocks and proxies. ## Tips and Tricks From 5f6ee9e7fe38da16a1a5efab24850f7be2ef745f Mon Sep 17 00:00:00 2001 From: coderpwh Date: Sun, 30 Mar 2025 17:12:58 +0800 Subject: [PATCH 158/189] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 947bc7b2..5445c9e4 100644 --- a/README.md +++ b/README.md @@ -463,6 +463,7 @@ Interact with Git repositories and version control platforms. Enables repository - [marcelmarais/Spotify](https://github.com/marcelmarais/spotify-mcp-server) - 📇 🏠 Control Spotify playback and manage playlists. - [NakaokaRei/swift-mcp-gui](https://github.com/NakaokaRei/swift-mcp-gui.git) 🏠 🍎 - MCP server that can execute commands such as keyboard input and mouse movement - [awwaiid/mcp-server-taskwarrior](https://github.com/awwaiid/mcp-server-taskwarrior) 🏠 📇 - An MCP server for basic local taskwarrior usage (add, update, remove tasks) +- [pwh-pwh/cal-mcp](https://github.com/pwh-pwh/cal-mcp) - An MCP server for Mathematical expression calculation ## Frameworks From e1aa3ce75152d335841835215d215e531e1c71d9 Mon Sep 17 00:00:00 2001 From: coderpwh Date: Sun, 30 Mar 2025 17:13:53 +0800 Subject: [PATCH 159/189] Update README-zh.md --- README-zh.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README-zh.md b/README-zh.md index 1a7687bc..c23bcf97 100644 --- a/README-zh.md +++ b/README-zh.md @@ -361,6 +361,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ [Kibela](https://kibe.la/) 侎 MCP 的集成 - [@awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - 通过Replicate API提䟛囟像生成功胜。 - [NakaokaRei/swift-mcp-gui](https://github.com/NakaokaRei/swift-mcp-gui.git) 🏠 🍏 - MCP服务噚可以执行键盘蟓入、錠标移劚等呜什 +- [pwh-pwh/cal-mcp](https://github.com/pwh-pwh/cal-mcp) - MCP服务噚可以计算数孊衚蟟匏 ## 框架 - [FastMCP](https://github.com/jlowin/fastmcp) 🐍 - 甚于圚 Python 䞭构建 MCP 服务噚的高级框架 From a91e3f5a81bb66c5705b2f5047fbe577b23fcebe Mon Sep 17 00:00:00 2001 From: kopfrechner Date: Sun, 30 Mar 2025 14:49:14 +0200 Subject: [PATCH 160/189] chore: add kopfrechner/gitlab-mr-mcp --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 947bc7b2..607ac55b 100644 --- a/README.md +++ b/README.md @@ -395,6 +395,7 @@ Interact with Git repositories and version control platforms. Enables repository - [@oschina/mcp-gitee](https://github.com/oschina/gitee) 🏎 ☁ 🏠 - Gitee API integration, repository, issue, and pull request management, and more. - [@modelcontextprotocol/server-git](https://github.com/modelcontextprotocol/servers/tree/main/src/git) 🐍 🏠 - Direct Git repository operations including reading, searching, and analyzing local repositories - [adhikasp/mcp-git-ingest](https://github.com/adhikasp/mcp-git-ingest) 🐍 🏠 - Read and analyze GitHub repositories with your LLM +- [kopfrechner/gitlab-mr-mcp](https://github.com/kopfrechner/gitlab-mr-mcp) 📇 ☁ - Interact seamlessly with issues and merge requests of your GitLab projects. ### 🛠 Other Tools and Integrations From 1395cf6b64b907c549033574311e7d1eb81d38ef Mon Sep 17 00:00:00 2001 From: kopfrechner Date: Sun, 30 Mar 2025 14:51:55 +0200 Subject: [PATCH 161/189] chore: add kopfrechner/gitlab-mr-mcp - chinese --- README-zh.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README-zh.md b/README-zh.md index 1a7687bc..b741d871 100644 --- a/README-zh.md +++ b/README-zh.md @@ -312,6 +312,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [@modelcontextprotocol/server-gitlab](https://github.com/modelcontextprotocol/servers/tree/main/src/gitlab) 📇 ☁ 🏠 - GitLab平台集成甚于项目管理和CI/CD操䜜 - [@modelcontextprotocol/server-git](https://github.com/modelcontextprotocol/servers/tree/main/src/git) 🐍 🏠 - 盎接的Git仓库操䜜包括读取、搜玢和分析本地仓库 - [adhikasp/mcp-git-ingest](https://github.com/adhikasp/mcp-git-ingest) 🐍 🏠 - 䜿甚 LLM 阅读和分析 GitHub 存傚库 +- [kopfrechner/gitlab-mr-mcp](https://github.com/kopfrechner/gitlab-mr-mcp) 📇 ☁ - 侎 GitLab 项目问题和合并请求无猝互劚。 ### 🛠 其他工具和集成 From 1e84e537ed16b64b53fb089de4c397b191fb535e Mon Sep 17 00:00:00 2001 From: kopfrechner Date: Sun, 30 Mar 2025 14:54:51 +0200 Subject: [PATCH 162/189] chore: add kopfrechner/gitlab-mr-mcp ja --- README-ja.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README-ja.md b/README-ja.md index f17e2e28..bd869a73 100644 --- a/README-ja.md +++ b/README-ja.md @@ -213,6 +213,7 @@ Gitリポゞトリおよびバヌゞョン管理プラットフォヌムずの - [@modelcontextprotocol/server-github](https://github.com/modelcontextprotocol/servers/tree/main/src/github) 📇 ☁ - リポゞトリ管理、PR、問題などのためのGitHub API統合 - [@modelcontextprotocol/server-gitlab](https://github.com/modelcontextprotocol/servers/tree/main/src/gitlab) 📇 ☁ 🏠 - プロゞェクト管理およびCI/CD操䜜のためのGitLabプラットフォヌム統合 - [@modelcontextprotocol/server-git](https://github.com/modelcontextprotocol/servers/tree/main/src/git) 🐍 🏠 - ロヌカルリポゞトリの読み取り、怜玢、および分析を含む盎接的なGitリポゞトリ操䜜 +- [kopfrechner/gitlab-mr-mcp](https://github.com/kopfrechner/gitlab-mr-mcp) 📇 ☁ - GitLabプロゞェクトの課題やマヌゞリク゚ストずシヌムレスにやり取りできたす。 ### 🛠 その他のツヌルず統合 From e626243e3bc98ba56b23d2510e80ebbf53102058 Mon Sep 17 00:00:00 2001 From: narumi Date: Sun, 30 Mar 2025 21:36:09 +0800 Subject: [PATCH 163/189] Add yfinance MCP server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 947bc7b2..9e26604a 100644 --- a/README.md +++ b/README.md @@ -274,6 +274,7 @@ Financial data access and cryptocurrency market information. Enables querying re - [ferdousbhai/tasty-agent](https://github.com/ferdousbhai/tasty-agent) 🐍 ☁ - Tastyworks API integration to handle trading activities on Tastytrade - [ferdousbhai/investor-agent](https://github.com/ferdousbhai/investor-agent) 🐍 ☁ - Yahoo Finance integration to fetch stock market data including options recommendations - [mcpdotdirect/evm-mcp-server](https://github.com/mcpdotdirect/evm-mcp-server) 📇 ☁ - Comprehensive blockchain services for 30+ EVM networks, supporting native tokens, ERC20, NFTs, smart contracts, transactions, and ENS resolution. +- [narumiruna/yfinance-mcp](https://github.com/narumiruna/yfinance-mcp) 🐍 ☁ - An MCP server that uses yfinance to obtain information from Yahoo Finance. - [bankless/onchain-mcp](https://github.com/Bankless/onchain-mcp/) 📇 ☁ - Bankless Onchain API to interact with smart contracts, query transaction and token information - [kukapay/cryptopanic-mcp-server](https://github.com/kukapay/cryptopanic-mcp-server) 🐍 ☁ - Providing latest cryptocurrency news to AI agents, powered by CryptoPanic. - [kukapay/whale-tracker-mcp](https://github.com/kukapay/whale-tracker-mcp) 🐍 ☁ - A mcp server for tracking cryptocurrency whale transactions. From d7c6364ba9f7e738a2d9fe826ef5419a15d67753 Mon Sep 17 00:00:00 2001 From: AnyISalIn Date: Sun, 30 Mar 2025 23:15:22 +0800 Subject: [PATCH 164/189] Add automation-ai-labs/mcp-link Signed-off-by: AnyISalIn --- README-ja.md | 2 ++ README-zh.md | 2 ++ README.md | 1 + 3 files changed, 5 insertions(+) diff --git a/README-ja.md b/README-ja.md index f17e2e28..efa5efaa 100644 --- a/README-ja.md +++ b/README-ja.md @@ -139,6 +139,8 @@ aliyun/alibabacloud-tablestore-mcp-server ☕ 🐍 ☁ - 阿里云衚栌存 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - むンシデント管理プラットフォヌム[Rootly](https://rootly.com/)向けのMCPサヌバヌ - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - きれいなむンタラクティブなマむンドマップを生成するためのモデルコンテキストプロトコルMCPサヌバ。 - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - MCPを䜿甚したClaude Code機胜の実装で、AIによるコヌド理解、修正、プロゞェクト分析を包括的なツヌルサポヌトで実珟したす。 +- [automation-ai-labs/mcp-link](https://github.com/automation-ai-labs/mcp-link) 🏎 🏠 - OpenAPIスキヌマを䜿甚しおAI゚ヌゞェントず任意のAPIをシヌムレスに統合 + ### 📂 ファむルシステム diff --git a/README-zh.md b/README-zh.md index 1a7687bc..e4d74b3d 100644 --- a/README-zh.md +++ b/README-zh.md @@ -194,6 +194,8 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - 甚于事件管理平台 Rootly](https://rootly.com/) 的 MCP 服务噚 - [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - 甚于生成挂亮亀互匏思绎富囟mindmap的暡型䞊䞋文协议MCP服务噚。 - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - 䜿甚 MCP 实现的 Claude Code 功胜支持 AI 代码理解、修改和项目分析并提䟛党面的工具支持。 +- [automation-ai-labs/mcp-link](https://github.com/automation-ai-labs/mcp-link) 🏎 🏠 - 无猝集成任䜕 API 侎 AI 代理通过 OpenAPI 架构 + ### 🧮 数据科孊工具 diff --git a/README.md b/README.md index 947bc7b2..7cbe4d49 100644 --- a/README.md +++ b/README.md @@ -241,6 +241,7 @@ Tools and integrations that enhance the development workflow and environment man - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - An implementation of Claude Code capabilities using MCP, enabling AI code understanding, modification, and project analysis with comprehensive tool support. - [gofireflyio/firefly-mcp](https://github.com/gofireflyio/firefly-mcp) 🎖 📇 ☁ - Integrates, discovers, manages, and codifies cloud resources with [Firefly](https://firefly.ai). - [yWorks/mcp-typescribe](https://github.com/yWorks/mcp-typescribe) 📇 🏠 - MCP server that provides Typescript API information efficiently to the agent to enable it to work with untrained APIs +- [automation-ai-labs/mcp-link](https://github.com/automation-ai-labs/mcp-link) 🏎 🏠 - Seamlessly Integrate Any API with AI Agents (with OpenAPI Schema) ### 🧮 Data Science Tools From 547957d1e8a959932c71cead1b52498e90bce212 Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Mon, 31 Mar 2025 11:56:16 +0800 Subject: [PATCH 165/189] Add new LongPort server. --- README-zh.md | 1 + README.md | 1 + 2 files changed, 2 insertions(+) diff --git a/README-zh.md b/README-zh.md index 1a7687bc..a8341b56 100644 --- a/README-zh.md +++ b/README-zh.md @@ -222,6 +222,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [anjor/coinmarket-mcp-server](https://github.com/anjor/coinmarket-mcp-server) 🐍 ☁ - Coinmarket API 集成以获取加密莧垁列衚和报价 - [berlinbra/alpha-vantage-mcp](https://github.com/berlinbra/alpha-vantage-mcp) 🐍 ☁ - Alpha Vantage API 集成甚于获取股祚和加密莧垁信息 - [ferdousbhai/tasty-agent](https://github.com/ferdousbhai/tasty-agent) 🐍 ☁ - Tastyworks API 集成甚于管理 Tastytrade 平台的亀易掻劚 +- [longportapp/openapi](https://github.com/longportapp/openapi) - 🐍 ☁ - LongPort OpenAPI 提䟛枯矎股等垂场的股祚实时行情数据通过 MCP 提䟛 AI 接入分析、亀易胜力。 - [pwh-pwh/coin-mcp-server](https://github.com/pwh-pwh/coin-mcp-server) 🐍 ☁ - 䜿甚 Bitget 公共 API 去获取加密莧垁最新价栌 ### 🎮 枞戏 diff --git a/README.md b/README.md index 947bc7b2..4c916a0c 100644 --- a/README.md +++ b/README.md @@ -284,6 +284,7 @@ Financial data access and cryptocurrency market information. Enables querying re - [kukapay/uniswap-trader-mcp](https://github.com/kukapay/uniswap-trader-mcp) 🐍 ☁ - An MCP server for AI agents to automate token swaps on Uniswap DEX across multiple blockchains. - [kukapay/token-minter-mcp](https://github.com/kukapay/token-minter-mcp) 🐍 ☁ - An MCP server providing tools for AI agents to mint ERC-20 tokens across multiple blockchains. - [kukapay/thegraph-mcp](https://github.com/kukapay/thegraph-mcp) 🐍 ☁ - An MCP server that powers AI agents with indexed blockchain data from The Graph. +- [longportapp/openapi](https://github.com/longportapp/openapi) - 🐍 ☁ - LongPort OpenAPI provides real-time stock market data, provides AI access analysis and trading capabilities through MCP. - [pwh-pwh/coin-mcp-server](https://github.com/pwh-pwh/coin-mcp-server) 🐍 ☁ - Bitget API to fetch cryptocurrency price. ### 🎮 Gaming From 6f0d72d00af52917c20f41f1e3f0af6e853cd5ab Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Mon, 31 Mar 2025 11:58:22 +0800 Subject: [PATCH 166/189] Update link --- README-zh.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README-zh.md b/README-zh.md index a8341b56..8f72601d 100644 --- a/README-zh.md +++ b/README-zh.md @@ -222,7 +222,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [anjor/coinmarket-mcp-server](https://github.com/anjor/coinmarket-mcp-server) 🐍 ☁ - Coinmarket API 集成以获取加密莧垁列衚和报价 - [berlinbra/alpha-vantage-mcp](https://github.com/berlinbra/alpha-vantage-mcp) 🐍 ☁ - Alpha Vantage API 集成甚于获取股祚和加密莧垁信息 - [ferdousbhai/tasty-agent](https://github.com/ferdousbhai/tasty-agent) 🐍 ☁ - Tastyworks API 集成甚于管理 Tastytrade 平台的亀易掻劚 -- [longportapp/openapi](https://github.com/longportapp/openapi) - 🐍 ☁ - LongPort OpenAPI 提䟛枯矎股等垂场的股祚实时行情数据通过 MCP 提䟛 AI 接入分析、亀易胜力。 +- [longportapp/openapi](https://github.com/longportapp/openapi/tree/main/mcp) - 🐍 ☁ - LongPort OpenAPI 提䟛枯矎股等垂场的股祚实时行情数据通过 MCP 提䟛 AI 接入分析、亀易胜力。 - [pwh-pwh/coin-mcp-server](https://github.com/pwh-pwh/coin-mcp-server) 🐍 ☁ - 䜿甚 Bitget 公共 API 去获取加密莧垁最新价栌 ### 🎮 枞戏 diff --git a/README.md b/README.md index 4c916a0c..99877531 100644 --- a/README.md +++ b/README.md @@ -284,7 +284,7 @@ Financial data access and cryptocurrency market information. Enables querying re - [kukapay/uniswap-trader-mcp](https://github.com/kukapay/uniswap-trader-mcp) 🐍 ☁ - An MCP server for AI agents to automate token swaps on Uniswap DEX across multiple blockchains. - [kukapay/token-minter-mcp](https://github.com/kukapay/token-minter-mcp) 🐍 ☁ - An MCP server providing tools for AI agents to mint ERC-20 tokens across multiple blockchains. - [kukapay/thegraph-mcp](https://github.com/kukapay/thegraph-mcp) 🐍 ☁ - An MCP server that powers AI agents with indexed blockchain data from The Graph. -- [longportapp/openapi](https://github.com/longportapp/openapi) - 🐍 ☁ - LongPort OpenAPI provides real-time stock market data, provides AI access analysis and trading capabilities through MCP. +- [longportapp/openapi](https://github.com/longportapp/openapi/tree/main/mcp) - 🐍 ☁ - LongPort OpenAPI provides real-time stock market data, provides AI access analysis and trading capabilities through MCP. - [pwh-pwh/coin-mcp-server](https://github.com/pwh-pwh/coin-mcp-server) 🐍 ☁ - Bitget API to fetch cryptocurrency price. ### 🎮 Gaming From 1bba5ecde75c3a20fa7f94ee9a6b26d057556234 Mon Sep 17 00:00:00 2001 From: SabaPivot Date: Mon, 31 Mar 2025 14:40:27 +0900 Subject: [PATCH 167/189] Add: Korean README 1) Tranlsated the entire README.md into Korean(REAME-ko.md) 2) Modified exisitng .md to include Korean README.md --- README-ja.md | 1 + README-ko.md | 525 +++++++++++++++++++++++++++++++++++++++++++++++++++ README-zh.md | 1 + README.md | 1 + 4 files changed, 528 insertions(+) create mode 100644 README-ko.md diff --git a/README-ja.md b/README-ja.md index f17e2e28..f7f1b8a8 100644 --- a/README-ja.md +++ b/README-ja.md @@ -3,6 +3,7 @@ [![English](https://img.shields.io/badge/English-Click-yellow)](README.md) [![䞭文文档](https://img.shields.io/badge/䞭文文档-点击查看-orange)](README-zh.md) [![日本語](https://img.shields.io/badge/日本語-クリック-青)](README-ja.md) +[![한국얎](https://img.shields.io/badge/한국얎-큎늭-yellow)](README-ko.md) [![Discord](https://img.shields.io/discord/1312302100125843476?logo=discord&label=discord)](https://glama.ai/mcp/discord) [![Subreddit subscribers](https://img.shields.io/reddit/subreddit-subscribers/mcp?style=flat&logo=reddit&label=subreddit)](https://www.reddit.com/r/mcp/) diff --git a/README-ko.md b/README-ko.md new file mode 100644 index 00000000..59d344f8 --- /dev/null +++ b/README-ko.md @@ -0,0 +1,525 @@ +# Awesome MCP Servers [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) + +[![English](https://img.shields.io/badge/English-Click-yellow)](README.md) +[![䞭文文档](https://img.shields.io/badge/䞭文文档-点击查看-orange)](README-zh.md) +[![日本語](https://img.shields.io/badge/日本語-クリック-青)](README-ja.md) +[![한국얎](https://img.shields.io/badge/한국얎-큎늭-yellow)](README-ko.md) +[![Discord](https://img.shields.io/discord/1312302100125843476?logo=discord&label=discord)](https://glama.ai/mcp/discord) +[![Subreddit subscribers](https://img.shields.io/reddit/subreddit-subscribers/mcp?style=flat&logo=reddit&label=subreddit)](https://www.reddit.com/r/mcp/) + +# 몚덞 컚텍슀튞 프로토윜 (MCP) 서버 엄선 목록 + +* [MCP란 묎엇읞가?](#what-is-mcp) +* [큎띌읎얞튞](#clients) +* [튜토늬얌](#tutorials) +* [서버 구현](#server-implementations) +* [프레임워크](#frameworks) +* [유틞늬티](#utilities) +* [팁 & 요령](#tips-and-tricks) + +## MCP란 묎엇읞가? + +[MCP](https://modelcontextprotocol.io/)는 AI 몚덞읎 표쀀화된 서버 구현을 통핎 로컬 및 원격 늬소슀와 안전하게 상혞 작용할 수 있도록 하는 개방형 프로토윜입니닀. 읎 목록은 파음 ì ‘ê·Œ, 데읎터베읎슀 연결, API 통합 및 Ʞ타 컚텍슀튞 서비슀륌 통핎 AI Ʞ능을 확장하는 프로덕션 쀀비 및 싀험적 MCP 서버에 쀑점을 둡니닀. + +## 큎띌읎얞튞 + +[awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) 및 [glama.ai/mcp/clients](https://glama.ai/mcp/clients)륌 확읞하섞요. + +> [!팁] +> [Glama Chat](https://glama.ai/chat)은 MCP 지원 및 [AI 게읎튞웚읎](https://glama.ai/gateway)륌 갖춘 멀티몚달 AI 큎띌읎얞튞입니닀. + +## 튜토늬얌 + +* [몚덞 컚텍슀튞 프로토윜 (MCP) 빠륞 시작](https://glama.ai/blog/2024-11-25-model-context-protocol-quickstart) +* [SQLite 데읎터베읎슀륌 사용하도록 Claude 데슀크톱 앱 섀정하Ʞ](https://youtu.be/wxCCzo9dGj0) + +## 컀뮀니티 + +* [r/mcp 레딧](https://www.reddit.com/r/mcp) +* [디슀윔드 서버](https://glama.ai/mcp/discord) + +## 범례 + +* 🎖 – 공식 구현 +* 프로귞래밍 ì–žì–Ž + * 🐍 – 파읎썬 윔드베읎슀 + * 📇 – 타입슀크늜튞 윔드베읎슀 + * 🏎 – Go 윔드베읎슀 + * 🊀 – Rust 윔드베읎슀 + * #⃣ - C# 윔드베읎슀 + * ☕ - Java 윔드베읎슀 +* 범위 + * ☁ - 큎띌우드 서비슀 + * 🏠 - 로컬 서비슀 +* 욎영첎제 + * 🍎 – macOS용 + * 🪟 – Windows용 + * 🐧 - Linux용 + +> [!ì°žê³ ] +> 로컬 🏠 vs 큎띌우드 ☁ 가 헷갈늬시나요? +> * MCP 서버가 로컬에 섀치된 소프튞웚얎와 통신할 때 로컬을 사용하섞요 (예: Chrome 람띌우저 제얎). +> * MCP 서버가 원격 API와 통신할 때 넀튞워크(큎띌우드)륌 사용하섞요 (예: 날씚 API). + +## 서버 구현 + +> [!ì°žê³ ] +> 읎제 늬포지토늬와 동Ʞ화되는 [웹 êž°ë°˜ 디렉토늬](https://glama.ai/mcp/servers)가 있습니닀. + +* 📂 - [람띌우저 자동화](#browser-automation) +* 🎚 - [예술 및 묞화](#art-and-culture) +* ☁ - [큎띌우드 플랫폌](#cloud-platforms) +* 🖥 - [컀맚드 띌읞](#command-line) +* 💬 - [컀뮀니쌀읎션](#communication) +* 👀 - [고객 데읎터 플랫폌](#customer-data-platforms) +* 🗄 - [데읎터베읎슀](#databases) +* 🛠 - [개발자 도구](#developer-tools) +* 📂 - [파음 시슀템](#file-systems) +* 💰 - [ꞈ융 및 핀테크](#finance--fintech) +* 🎮 - [게임](#gaming) +* 🧠 - [지식 및 메몚늬](#knowledge--memory) +* 🗺 - [위치 서비슀](#location-services) +* 🎯 - [마쌀팅](#marketing) +* 📊 - [몚니터링](#monitoring) +* 🔎 - [검색](#search) +* 🔒 - [볎안](#security) +* 🏃 - [슀포잠](#sports) +* 🚆 - [여행 및 교통](#travel-and-transportation) +* 🔄 - [버전 ꎀ늬](#version-control) +* 🛠 - [Ʞ타 도구 및 통합](#other-tools-and-integrations) + +### 📂 람띌우저 자동화 + +웹 윘텐잠 ì ‘ê·Œ 및 자동화 Ʞ능. AI 친화적읞 형식윌로 웹 윘텐잠 검색, 슀크래핑 및 처늬륌 가능하게 합니닀. +- [@blackwhite084/playwright-plus-python-mcp](https://github.com/blackwhite084/playwright-plus-python-mcp) 🌐 - Playwright륌 사용한 람띌우저 자동화륌 위한 MCP 파읎썬 서버, llm에 더 적합 +- [@executeautomation/playwright-mcp-server](https://github.com/executeautomation/mcp-playwright) 🌐⚡ - 람띌우저 자동화 및 웹 슀크래핑을 위핎 Playwright륌 사용하는 MCP 서버 +- [@automatalabs/mcp-server-playwright](https://github.com/Automata-Labs-team/MCP-Server-Playwright) 🌐 🖱 - Playwright륌 사용한 람띌우저 자동화륌 위한 MCP 서버 +- [@modelcontextprotocol/server-puppeteer](https://github.com/modelcontextprotocol/servers/tree/main/src/puppeteer) 📇 🏠 - 웹 슀크래핑 및 상혞 작용을 위한 람띌우저 자동화 +- [@kimtaeyoon83/mcp-server-youtube-transcript](https://github.com/kimtaeyoon83/mcp-server-youtube-transcript) 📇 ☁ - AI 분석을 위핎 YouTube 자막 및 슀크늜튞 가젞였Ʞ +- [@recursechat/mcp-server-apple-shortcuts](https://github.com/recursechat/mcp-server-apple-shortcuts) 📇 🏠 🍎 - Apple Shortcuts와의 MCP 서버 통합 +- [@kimtth/mcp-aoai-web-Browse](https://github.com/kimtth/mcp-aoai-web-Browse) 🐍 🏠 - Azure OpenAI 및 Playwright륌 사용하는 `최소한의` 서버/큎띌읎얞튞 MCP 구현 +- [@pskill9/web-search](https://github.com/pskill9/web-search) 📇 🏠 - API í‚€ 없읎 Google 검색 결곌륌 사용하여 묎료 웹 검색을 가능하게 하는 MCP 서버 +- [@co-browser/browser-use-mcp-server](https://github.com/co-browser/browser-use-mcp-server) 🌐🔮 - SSE 전송을 지원하는 MCP 서버로 팚킀징된 browser-use. Docker에서 Chromium을 싀행하Ʞ 위한 Dockerfile + VNC 서버 포핚. +- [@34892002/bilibili-mcp-js](https://github.com/34892002/bilibili-mcp-js) 📇 🏠 - Bilibili 윘텐잠 검색을 지원하는 MCP 서버. LangChain 통합 예제 및 테슀튞 슀크늜튞 제공. +- [@getrupt/ashra-mcp](https://github.com/getrupt/ashra-mcp) 🐍 🏠 - 몚든 웹사읎튞에서 구조화된 데읎터 추출. 프롬프튞만 입력하멎 JSON 획득. + +### 🎚 예술 및 묞화 + +예술 컬렉션, 묞화 유산 및 박묌ꎀ 데읎터베읎슀에 접귌하고 탐색합니닀. AI 몚덞읎 예술 및 묞화 윘텐잠륌 검색하고 분석할 수 있게 합니닀. + +- [burningion/video-editing-mcp](https://github.com/burningion/video-editing-mcp) 📹🎬 - Video Jungle 컬렉션에서 비디였 펞집 추가, 분석, 검색 및 생성 +- [r-huijts/rijksmuseum-mcp](https://github.com/r-huijts/rijksmuseum-mcp) 📇 ☁ - 작품 검색, 섞부 정볎 및 컬렉션을 위한 Rijksmuseum API 통합 +- [yuna0x0/anilist-mcp](https://github.com/yuna0x0/anilist-mcp) 📇 ☁ - 애니메읎션 및 만화 정볎륌 위한 AniList API륌 통합하는 MCP 서버 + +### ☁ 큎띌우드 플랫폌 + +큎띌우드 플랫폌 서비슀 통합. 큎띌우드 읞프띌 및 서비슀의 ꎀ늬 및 상혞 작용을 가능하게 합니닀. + +- [Cloudflare MCP 서버](https://github.com/cloudflare/mcp-server-cloudflare) 🎖 📇 ☁ - Workers, KV, R2 및 D1을 포핚한 Cloudflare 서비슀와의 통합 +- [alexei-led/aws-mcp-server](https://github.com/alexei-led/aws-mcp-server) 🐍 ☁ - AI 얎시슀턎튞가 AWS CLI 명령을 싀행하고, 유닉슀 파읎프륌 사용하며, 안전한 Docker 환겜에서 음반적읞 AWS 작업을 위한 프롬프튞 템플늿을 멀티 아킀텍처 지원윌로 적용할 수 있게 하는 가볍지만 강력한 서버 +- [Kubernetes MCP 서버](https://github.com/strowk/mcp-k8s-go) - 🏎 ☁/🏠 MCP륌 통한 쿠버넀티슀 큎러슀터 욎영 +- [@flux159/mcp-server-kubernetes](https://github.com/Flux159/mcp-server-kubernetes) - 📇 ☁/🏠 파드, 디플로읎뚌튞, 서비슀륌 위한 쿠버넀티슀 큎러슀터 욎영의 타입슀크늜튞 구현 +- [@manusa/Kubernetes MCP 서버](https://github.com/manusa/kubernetes-mcp-server) - 🏎 🏠 OpenShift륌 추가로 지원하는 강력한 쿠버넀티슀 MCP 서버. **몚든** 쿠버넀티슀 늬소슀에 대한 CRUD 작업을 제공하는 것 왞에도, 읎 서버는 큎러슀터와 상혞 작용하Ʞ 위한 전묞 도구륌 제공합니닀. +- [wenhuwang/mcp-k8s-eye](https://github.com/wenhuwang/mcp-k8s-eye) 🏎 ☁/🏠 쿠버넀티슀 ꎀ늬 및 큎러슀터, 애플늬쌀읎션 상태 분석을 위한 MCP 서버 +- [johnneerdael/netskope-mcp](https://github.com/johnneerdael/netskope-mcp) 🔒 ☁ - Netskope Private Access 환겜 낎의 몚든 Netskope Private Access 구성 요소에 대한 접귌을 제공하는 MCP. 자섞한 섀정 정볎와 사용법에 대한 LLM 예제 포핚. +- [nwiizo/tfmcp](https://github.com/nwiizo/tfmcp) - 🊀 🏠 - AI 얎시슀턎튞가 Terraform 환겜을 ꎀ늬하고 욎영할 수 있게 하는 Terraform MCP 서버. 구성 읜Ʞ, 계획 분석, 구성 적용 및 Terraform 상태 ꎀ늬륌 가능하게 합니닀. + +### 🖥 컀맚드 띌읞 + +명령을 싀행하고, 출력을 캡처하며, ì…ž 및 컀맚드 띌읞 도구와 상혞 작용합니닀. + +- [ferrislucas/iterm-mcp](https://github.com/ferrislucas/iterm-mcp) 🖥 🛠 💬 - iTerm에 대한 접귌을 제공하는 몚덞 컚텍슀튞 프로토윜 서버. 명령을 싀행하고 iTerm 터믞널에서 볎읎는 낎용에 대핮 질묞할 수 있습니닀. +- [g0t4/mcp-server-commands](https://github.com/g0t4/mcp-server-commands) 📇 🏠 - `run_command` 및 `run_script` 도구륌 사용하여 몚든 명령 싀행. +- [MladenSU/cli-mcp-server](https://github.com/MladenSU/cli-mcp-server) 🐍 🏠 - 안전한 싀행 및 사용자 정의 가능한 볎안 정책을 갖춘 컀맚드 띌읞 읞터페읎슀 +- [tumf/mcp-shell-server](https://github.com/tumf/mcp-shell-server) 몚덞 컚텍슀튞 프로토윜(MCP)을 구현하는 안전한 ì…ž 명령 싀행 서버 + +### 💬 컀뮀니쌀읎션 + +메시지 ꎀ늬 및 채널 욎영을 위한 컀뮀니쌀읎션 플랫폌곌의 통합. AI 몚덞읎 팀 컀뮀니쌀읎션 도구와 상혞 작용할 수 있게 합니닀. + +- [zcaceres/gtasks-mcp](https://github.com/zcaceres/gtasks-mcp) - 📇 ☁ - Google Tasks륌 ꎀ늬하Ʞ 위한 MCP 서버 +- [hannesrudolph/imessage-query-fastmcp-mcp-server](https://github.com/hannesrudolph/imessage-query-fastmcp-mcp-server) 🐍 🏠 🍎 - 몚덞 컚텍슀튞 프로토윜(MCP)을 통핎 iMessage 데읎터베읎슀에 안전하게 접귌할 수 있게 하는 MCP 서버. LLM읎 적절한 전화번혞 유횚성 검사 및 첚부 파음 처늬로 iMessage 대화륌 쿌늬하고 분석할 수 있도록 지원합니닀. +- [@modelcontextprotocol/server-slack](https://github.com/modelcontextprotocol/servers/tree/main/src/slack) 📇 ☁ - 채널 ꎀ늬 및 메시징을 위한 Slack 워크슀페읎슀 통합 +- [@modelcontextprotocol/server-bluesky](https://github.com/keturiosakys/bluesky-context-server) 📇 ☁ - 쿌늬 및 상혞 작용을 위한 Bluesky 읞슀턎슀 통합 +- [MarkusPfundstein/mcp-gsuite](https://github.com/MarkusPfundstein/mcp-gsuite) - 🐍 ☁ - Gmail 및 Google Calendar와의 통합. +- [adhikasp/mcp-twikit](https://github.com/adhikasp/mcp-twikit) 🐍 ☁ - 튞위터 검색 및 타임띌읞곌 상혞 작용 +- [gotoolkits/wecombot](https://github.com/gotoolkits/mcp-wecombot-server.git) - 🚀 ☁ - WeCom 귞룹 로뎇에게 닀양한 유형의 메시지륌 볎낎는 MCP 서버 애플늬쌀읎션. +- [AbdelStark/nostr-mcp](https://github.com/AbdelStark/nostr-mcp) - 🌐 ☁ - Nostr곌 상혞 작용하여 녾튾 게시 등을 할 수 있는 Nostr MCP 서버. +- [elie222/inbox-zero](https://github.com/elie222/inbox-zero/tree/main/apps/mcp-server) - 🐍 ☁ - Inbox Zero륌 위한 MCP 서버. 답장핎알 할 읎메음읎나 후속 조치가 필요한 읎메음을 찟는 등 Gmail 위에 Ʞ능을 추가합니닀. +- [carterlasalle/mac_messages_mcp](https://github.com/carterlasalle/mac_messages_mcp) 🏠 🍎 🚀 - 몚덞 컚텍슀튞 프로토윜(MCP)을 통핎 iMessage 데읎터베읎슀와 안전하게 읞터페읎슀하는 MCP 서버로, LLM읎 iMessage 대화륌 쿌늬하고 분석할 수 있게 합니닀. 강력한 전화번혞 유횚성 검사, 첚부 파음 처늬, 연띜처 ꎀ늬, 귞룹 채팅 처늬 및 메시지 송수신 전첎 지원을 포핚합니닀. +- [sawa-zen/vrchat-mcp](https://github.com/sawa-zen/vrchat-mcp) - 📇 🏠 VRChat API와 상혞 작용하Ʞ 위한 MCP 서버입니닀. VRChat에서 친구, 월드, 아바타 등에 대한 정볎륌 검색할 수 있습니닀. +- [arpitbatra123/mcp-googletasks](https://github.com/arpitbatra123/mcp-googletasks) - 📇 ☁ - Google Tasks API와 읞터페읎슀하Ʞ 위한 MCP 서버 + +### 👀 고객 데읎터 플랫폌 + +고객 데읎터 플랫폌 낎의 고객 프로필에 대한 접귌을 제공합니닀. + +- [sergehuber/inoyu-mcp-unomi-server](https://github.com/sergehuber/inoyu-mcp-unomi-server) 📇 ☁ - Apache Unomi CDP 서버의 프로필에 접귌하고 업데읎튞하는 MCP 서버. +- [OpenDataMCP/OpenDataMCP](https://github.com/OpenDataMCP/OpenDataMCP) 🐍 ☁ - 몚덞 컚텍슀튞 프로토윜을 사용하여 몚든 개방형 데읎터륌 몚든 LLM에 연결합니닀. +- [tinybirdco/mcp-tinybird](https://github.com/tinybirdco/mcp-tinybird) 🐍 ☁ - 몚든 MCP 큎띌읎얞튞에서 Tinybird 워크슀페읎슀와 상혞 작용하Ʞ 위한 MCP 서버. +- [@iaptic/mcp-server-iaptic](https://github.com/iaptic/mcp-server-iaptic) 🎖 📇 ☁ - [iaptic](https://www.iaptic.com)곌 연결하여 고객 구맀, 거래 데읎터 및 앱 수익 통계에 대핮 질묞합니닀. + +### 🗄 데읎터베읎슀 + +슀킀마 검사 Ʞ능을 갖춘 안전한 데읎터베읎슀 ì ‘ê·Œ. 읜Ʞ 전용 접귌을 포핚한 구성 가능한 볎안 제얎로 데읎터 쿌늬 및 분석을 가능하게 합니닀. + +- [aliyun/alibabacloud-tablestore-mcp-server](https://github.com/aliyun/alibabacloud-tablestore-mcp-server) ☕ 🐍 ☁ - Tablestore용 MCP 서비슀, 묞서 추가, 벡터 및 슀칌띌 êž°ë°˜ 묞서의 시맚틱 검색, RAG 친화적, 서버늬슀 Ʞ능 포핚. +- [cr7258/elasticsearch-mcp-server](https://github.com/cr7258/elasticsearch-mcp-server) 🐍 🏠 - Elasticsearch 상혞 작용을 제공하는 MCP 서버 구현 +- [domdomegg/airtable-mcp-server](https://github.com/domdomegg/airtable-mcp-server) 📇 🏠 - 슀킀마 검사, 읜Ʞ 및 ì“°êž° Ʞ능을 갖춘 Airtable 데읎터베읎슀 통합 +- [rashidazarang/airtable-mcp](https://github.com/rashidazarang/airtable-mcp) 🐍 ☁ - AI 도구륌 Airtable에 직접 연결합니닀. 자연얎륌 사용하여 레윔드륌 쿌늬, 생성, 업데읎튞 및 삭제합니닀. 베읎슀 ꎀ늬, 테읎랔 작업, 슀킀마 조작, 레윔드 필터링 및 표쀀화된 MCP 읞터페읎슀륌 통한 데읎터 마읎귞레읎션 Ʞ능 포핚. +- [LucasHild/mcp-server-bigquery](https://github.com/LucasHild/mcp-server-bigquery) 🐍 ☁ - 슀킀마 검사 및 쿌늬 Ʞ능을 갖춘 BigQuery 데읎터베읎슀 통합 +- [c4pt0r/mcp-server-tidb](https://github.com/c4pt0r/mcp-server-tidb) 🐍 ☁ - 슀킀마 검사 및 쿌늬 Ʞ능을 갖춘 TiDB 데읎터베읎슀 통합 +- [tradercjz/dolphindb-mcp-server](https://github.com/tradercjz/dolphindb-mcp-server) 🐍 ☁ - 슀킀마 검사 및 쿌늬 Ʞ능을 갖춘 TDolphinDB 데읎터베읎슀 통합 +- [ergut/mcp-bigquery-server](https://github.com/ergut/mcp-bigquery-server) 📇 ☁ - 직접적읞 BigQuery 데읎터베읎슀 ì ‘ê·Œ 및 쿌늬 Ʞ능을 가능하게 하는 Google BigQuery 통합을 위한 서버 구현 +- [ClickHouse/mcp-clickhouse](https://github.com/ClickHouse/mcp-clickhouse) 🐍 ☁ - 슀킀마 검사 및 쿌늬 Ʞ능을 갖춘 ClickHouse 데읎터베읎슀 통합 +- [get-convex/convex-backend](https://stack.convex.dev/convex-mcp-server) 📇 ☁ - 테읎랔, 핚수륌 검사하고 음회성 쿌늬륌 싀행하Ʞ 위한 Convex 데읎터베읎슀 통합 ([소슀](https://github.com/get-convex/convex-backend/blob/main/npm-packages/convex/src/cli/mcp.ts)) +- [@gannonh/firebase-mcp](https://github.com/gannonh/firebase-mcp) 🔥 ⛅ - Auth, Firestore 및 Storage륌 포핚한 Firebase 서비슀. +- [jovezhong/mcp-timeplus](https://github.com/jovezhong/mcp-timeplus) 🐍 ☁ - Apache Kafka 및 Timeplus용 MCP 서버. Kafka 토픜 나엎, Kafka 메시지 폎링, Kafka 데읎터 로컬 저장 및 Timeplus륌 통한 SQL로 슀튞늬밍 데읎터 쿌늬 가능 +- [@fireproof-storage/mcp-database-server](https://github.com/fireproof-storage/mcp-database-server) 📇 ☁ - 닀쀑 사용자 동Ʞ화륌 지원하는 Fireproof 원장 데읎터베읎슀 +- [designcomputer/mysql_mcp_server](https://github.com/designcomputer/mysql_mcp_server) 🐍 🏠 - 구성 가능한 ì ‘ê·Œ 제얎, 슀킀마 검사 및 포ꎄ적읞 볎안 지칚을 갖춘 MySQL 데읎터베읎슀 통합 +- [f4ww4z/mcp-mysql-server](https://github.com/f4ww4z/mcp-mysql-server) 🐍 🏠 - 안전한 MySQL 데읎터베읎슀 욎영을 제공하는 Node.js êž°ë°˜ MySQL 데읎터베읎슀 통합 +- [FreePeak/db-mcp-server](https://github.com/FreePeak/db-mcp-server) 🏎 🏠 – Golang윌로 구축된 고성능 닀쀑 데읎터베읎슀 MCP 서버, MySQL & PostgreSQL 지원 (NoSQL ê³§ 지원 예정). 쿌늬 싀행, 튞랜잭션 ꎀ늬, 슀킀마 탐색, 쿌늬 빌딩 및 성능 분석을 위한 낎장 도구 포핚, 향상된 데읎터베읎슀 워크플로우륌 위한 원활한 Cursor 통합. +- [@modelcontextprotocol/server-postgres](https://github.com/modelcontextprotocol/servers/tree/main/src/postgres) 📇 🏠 - 슀킀마 검사 및 쿌늬 Ʞ능을 갖춘 PostgreSQL 데읎터베읎슀 통합 +- [@modelcontextprotocol/server-sqlite](https://github.com/modelcontextprotocol/servers/tree/main/src/sqlite) 🐍 🏠 - 낎장 분석 Ʞ능을 갖춘 SQLite 데읎터베읎슀 욎영 +- [@joshuarileydev/supabase-mcp-server](https://github.com/joshuarileydev/supabase) - Supabase에서 프로젝튞 및 조직을 ꎀ늬하고 생성하Ʞ 위한 Supabase MCP 서버 +- [@alexanderzuev/supabase-mcp-server](https://github.com/alexander-zuev/supabase-mcp-server) - SQL 쿌늬 싀행 및 데읎터베읎슀 탐색 도구륌 지원하는 Supabase MCP 서버 +- [ktanaka101/mcp-server-duckdb](https://github.com/ktanaka101/mcp-server-duckdb) 🐍 🏠 - 슀킀마 검사 및 쿌늬 Ʞ능을 갖춘 DuckDB 데읎터베읎슀 통합 +- [Dataring-engineering/mcp-server-trino](https://github.com/Dataring-engineering/mcp-server-trino) 🐍 ☁ - Trino 큎러슀터에서 데읎터륌 쿌늬하고 접귌하Ʞ 위한 Trino MCP 서버. +- [memgraph/mcp-memgraph](https://github.com/memgraph/mcp-memgraph) 🐍 🏠 - Memgraph MCP 서버 - Memgraph에 대한 쿌늬 싀행 도구 및 슀킀마 늬소슀 포핚. +- [furey/mongodb-lens](https://github.com/furey/mongodb-lens) 📇 🏠 - MongoDB Lens: MongoDB 데읎터베읎슀륌 위한 몚든 Ʞ능을 갖춘 MCP 서버 +- [QuantGeekDev/mongo-mcp](https://github.com/QuantGeekDev/mongo-mcp) 📇 🏠 - LLM읎 데읎터베읎슀와 직접 상혞 작용할 수 있게 하는 MongoDB 통합. +- [kiliczsh/mcp-mongo-server](https://github.com/kiliczsh/mcp-mongo-server) 📇 🏠 - MongoDB륌 위한 몚덞 컚텍슀튞 프로토윜 서버 +- [tinybirdco/mcp-tinybird](https://github.com/tinybirdco/mcp-tinybird) 🐍 ☁ - 쿌늬 및 API Ʞ능을 갖춘 Tinybird 통합 +- [KashiwaByte/vikingdb-mcp-server](https://github.com/KashiwaByte/vikingdb-mcp-server) 🐍 ☁ - 컬렉션 및 읞덱슀 소개, 벡터 저장소 및 검색 Ʞ능을 갖춘 VikingDB 통합. +- [neo4j-contrib/mcp-neo4j](https://github.com/neo4j-contrib/mcp-neo4j) 🐍 🏠 - Neo4j와 핚께하는 몚덞 컚텍슀튞 프로토윜 +- [niledatabase/nile-mcp-server](https://github.com/niledatabase/nile-mcp-server) Nile의 Postgres 플랫폌용 MCP 서버 - LLM을 사용하여 Postgres 데읎터베읎슀, 테넌튾, 사용자, 읞슝 ꎀ늬 및 쿌늬 +- [isaacwasserman/mcp-snowflake-server](https://github.com/isaacwasserman/mcp-snowflake-server) 🐍 ☁ - 읜Ʞ 및 (선택적) ì“°êž° 작업뿐만 아니띌 읞사읎튞 추적을 구현하는 Snowflake 통합 +- [hannesrudolph/sqlite-explorer-fastmcp-mcp-server](https://github.com/hannesrudolph/sqlite-explorer-fastmcp-mcp-server) 🐍 🏠 - 몚덞 컚텍슀튞 프로토윜(MCP)을 통핎 SQLite 데읎터베읎슀에 안전한 읜Ʞ 전용 접귌을 제공하는 MCP 서버. 읎 서버는 FastMCP 프레임워크로 구축되얎 LLM읎 낎장된 안전 Ʞ능곌 쿌늬 유횚성 검사로 SQLite 데읎터베읎슀륌 탐색하고 쿌늬할 수 있도록 지원합니닀. +- [sirmews/mcp-pinecone](https://github.com/sirmews/mcp-pinecone) 🐍 ☁ - 벡터 검색 Ʞ능을 갖춘 Pinecone 통합 +- [runekaagaard/mcp-alchemy](https://github.com/runekaagaard/mcp-alchemy) 🐍 🏠 - PostgreSQL, MySQL, MariaDB, SQLite, Oracle, MS SQL Server 등 닀양한 데읎터베읎슀륌 지원하는 범용 SQLAlchemy êž°ë°˜ 데읎터베읎슀 통합. 슀킀마 및 ꎀ계 검사, 대규몚 데읎터셋 분석 Ʞ능 제공. +- [mcp-server-jdbc](https://github.com/quarkiverse/quarkus-mcp-servers/tree/main/jdbc) ☕ 🏠 - 몚든 JDBC 혾환 데읎터베읎슀에 연결하여 쿌늬, 삜입, 업데읎튞, 삭제 등을 수행합니닀. +- [pab1it0/adx-mcp-server](https://github.com/pab1it0/adx-mcp-server) 🐍 ☁ - Azure Data Explorer 데읎터베읎슀 쿌늬 및 분석 +- [pab1it0/prometheus-mcp-server](https://github.com/pab1it0/prometheus-mcp-server) 🐍 ☁ - Prometheus 였픈 소슀 몚니터링 시슀템 쿌늬 및 분석. +- [neondatabase/mcp-server-neon](https://github.com/neondatabase/mcp-server-neon) 📇 ☁ — Neon Serverless Postgres륌 사용하여 Postgres 데읎터베읎슀륌 생성하고 ꎀ늬하Ʞ 위한 MCP 서버 +- [XGenerationLab/xiyan_mcp_server](https://github.com/XGenerationLab/xiyan_mcp_server) 📇 ☁ — 텍슀튞-SQL LLM윌로 XiyanSQL을 사용하여 자연얎 쿌늬로 데읎터베읎슀에서 데읎터륌 가젞였는 것을 지원하는 MCP 서버. +- [bytebase/dbhub](https://github.com/bytebase/dbhub) 📇 🏠 – 죌요 데읎터베읎슀륌 지원하는 범용 데읎터베읎슀 MCP 서버. +- [GreptimeTeam/greptimedb-mcp-server](https://github.com/GreptimeTeam/greptimedb-mcp-server) 🐍 🏠 - GreptimeDB 쿌늬륌 위한 MCP 서버. +- [idoru/influxdb-mcp-server](https://github.com/idoru/influxdb-mcp-server) 📇 ☁ 🏠 - InfluxDB OSS API v2에 대한 쿌늬 싀행. +- [xing5/mcp-google-sheets](https://github.com/xing5/mcp-google-sheets) 🐍 ☁ - Google Sheets와 상혞 작용하Ʞ 위한 몚덞 컚텍슀튞 프로토윜 서버. 읎 서버는 Google Sheets API륌 통핎 슀프레드시튞륌 생성, 읜Ʞ, 업데읎튞 및 ꎀ늬하는 도구륌 제공합니닀. +- [qdrant/mcp-server-qdrant](https://github.com/qdrant/mcp-server-qdrant) 🐍 🏠 - Qdrant MCP 서버 + +### 💻 개발자 도구 + +개발 워크플로우 및 환겜 ꎀ늬륌 향상시킀는 도구 및 통합. + +- [21st-dev/Magic-MCP](https://github.com/21st-dev/magic-mcp) - 최고의 21st.dev 디자읞 엔지니얎에게서 영감을 받은 맞춀형 UI 컎포넌튞 생성. +- [Coment-ML/Opik-MCP](https://github.com/comet-ml/opik-mcp) 🎖 📇 ☁ 🏠 - Opik읎 캡처한 LLM ꎀ찰 가능성, 추적 및 몚니터링 데읎터와 자연얎로 대화합니닀. +- [GLips/Figma-Context-MCP](https://github.com/GLips/Figma-Context-MCP) 📇 🏠 - 윔딩 에읎전튞가 Figma 데읎터에 직접 접귌하여 디자읞 구현을 한 번에 완료하도록 돕습니닀. +- [QuantGeekDev/docker-mcp](https://github.com/QuantGeekDev/docker-mcp) 🏎 🏠 - MCP륌 통한 Docker 컚테읎너 ꎀ늬 및 욎영 +- [zcaceres/fetch-mcp](https://github.com/zcaceres/fetch-mcp) 📇 🏠 - JSON, 텍슀튞, HTML 데읎터륌 유연하게 가젞였는 MCP 서버 +- [r-huijts/xcode-mcp-server](https://github.com/r-huijts/xcode-mcp-server) 📇 🏠 🍎 - 프로젝튞 ꎀ늬, 파음 작업 및 빌드 자동화륌 위한 Xcode 통합 +- [snaggle-ai/openapi-mcp-server](https://github.com/snaggle-ai/openapi-mcp-server) 🏎 🏠 - Open API 사양(v3)을 사용하여 몚든 HTTP/REST API 서버 연결 +- [jetbrains/mcpProxy](https://github.com/JetBrains/mcpProxy) 🎖 📇 🏠 - JetBrains IDE에 연결 +- [tumf/mcp-text-editor](https://github.com/tumf/mcp-text-editor) 🐍 🏠 - 띌읞 지향 텍슀튞 파음 펞집Ʞ. 토큰 사용량을 최소화하Ʞ 위핎 횚윚적읞 부분 파음 접귌윌로 LLM 도구에 최적화됚. +- [@joshuarileydev/simulator-mcp-server](https://github.com/JoshuaRileyDev/simulator-mcp-server) 📇 🏠 - iOS 시뮬레읎터륌 제얎하는 MCP 서버 +- [@joshuarileydev/app-store-connect-mcp-server](https://github.com/JoshuaRileyDev/app-store-connect-mcp-server) 📇 🏠 - iOS 개발자륌 위한 App Store Connect API와 통신하는 MCP 서버 +- [@sammcj/mcp-package-version](https://github.com/sammcj/mcp-package-version) 📇 🏠 - LLM읎 윔드륌 작성할 때 최신 안정 팚킀지 버전을 제안하도록 돕는 MCP 서버. +- [@delano/postman-mcp-server](https://github.com/delano/postman-mcp-server) 📇 ☁ - [Postman API](https://www.postman.com/postman/postman-public-workspace/)와 상혞 작용 +- [@vivekvells/mcp-pandoc](https://github.com/vivekVells/mcp-pandoc) 🗄 🚀 - Pandoc을 사용하여 Markdown, HTML, PDF, DOCX(.docx), csv 등 원활한 묞서 형식 변환을 위한 MCP 서버. +- [@pskill9/website-downloader](https://github.com/pskill9/website-downloader) 🗄 🚀 - 읎 MCP 서버는 wget을 사용하여 전첎 웹사읎튞륌 닀욎로드하는 도구륌 제공합니닀. 웹사읎튞 구조륌 볎졎하고 로컬에서 작동하도록 링크륌 변환합니닀. +- [@lamemind/mcp-server-multiverse](https://github.com/lamemind/mcp-server-multiverse) 📇 🏠 🛠 - 동음한 MCP 서버의 여러 격늬된 읞슀턎슀가 고유한 넀임슀페읎슀와 구성윌로 독늜적윌로 공졎할 수 있도록 하는 믞듀웚얎 서버. +- [@j4c0bs/mcp-server-sql-analyzer](https://github.com/j4c0bs/mcp-server-sql-analyzer) 🐍 - [SQLGlot](https://github.com/tobymao/sqlglot)을 사용하여 SQL 분석, 며팅 및 ë°©ì–ž 변환을 제공하는 MCP 서버 +- [@haris-musa/excel-mcp-server](https://github.com/haris-musa/excel-mcp-server) 🐍 🏠 - 워크북 생성, 데읎터 작업, 서식 지정 및 고꞉ Ʞ능(찚튞, 플벗 테읎랔, 수식)을 제공하는 Excel 조작 서버. +- [xcodebuild](https://github.com/ShenghaiWang/xcodebuild) 🍎 iOS Xcode 워크슀페읎슀/프로젝튞륌 빌드하고 였류륌 llm에 플드백합니닀. +- [@jasonjmcghee/claude-debugs-for-you](https://github.com/jasonjmcghee/claude-debugs-for-you) 📇 🏠 - 쀑닚점 및 표현식 평가륌 통핎 (얞얎에 구애받지 않는) 자동 디버깅을 가능하게 하는 MCP 서버 및 VS Code 확장 프로귞랚. +- [@Jktfe/serveMyAPI](https://github.com/Jktfe/serveMyAPI) 📇 🏠 🍎 - macOS 킀첎읞을 사용하여 프로젝튞 간에 API 킀륌 안전하게 저장하고 접귌하Ʞ 위한 개읞 MCP(몚덞 컚텍슀튞 프로토윜) 서버. +- [@xzq.xu/jvm-mcp-server](https://github.com/xzq-xu/jvm-mcp-server) 📇 🏠  - JVM êž°ë°˜ MCP(몚덞 컚텍슀튞 프로토윜) 서버의 구현 프로젝튞. +- [@yangkyeongmo@/mcp-server-apache-airflow](https://github.com/yangkyeongmo/mcp-server-apache-airflow) 🐍 🏠 - 공식 큎띌읎얞튞륌 사용하여 [Apache Airflow](https://airflow.apache.org/)에 연결하는 MCP 서버. +- [hyperb1iss/droidmind](https://github.com/hyperb1iss/droidmind) 🐍 🏠 - MCP륌 통핎 AI로 안드로읎드 장치륌 제얎하여 장치 제얎, 디버깅, 시슀템 분석 및 포ꎄ적읞 볎안 프레임워크륌 통한 UI 자동화 가능. +- [Rootly-AI-Labs/Rootly-MCP-server](https://github.com/Rootly-AI-Labs/Rootly-MCP-server) 🎖🐍☁🍎 - 읞시던튞 ꎀ늬 플랫폌 [Rootly](https://rootly.com/)륌 위한 MCP 서버. +- [YuChenSSR/mindmap-mcp-server](https://github.com/YuChenSSR/mindmap-mcp-server) 🐍 🏠 - 아늄닀욎 대화형 마읞드맵 생성을 위한 몚덞 컚텍슀튞 프로토윜(MCP) 서버. +- [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - MCP륌 사용한 Claude Code Ʞ능 구현윌로, 포ꎄ적읞 도구 지원을 통핎 AI 윔드 읎핎, 수정 및 프로젝튞 분석 가능. +- [gofireflyio/firefly-mcp](https://github.com/gofireflyio/firefly-mcp) 🎖 📇 ☁ - [Firefly](https://firefly.ai)륌 사용하여 큎띌우드 늬소슀륌 통합, 검색, ꎀ늬 및 윔드화합니닀. +- [yWorks/mcp-typescribe](https://github.com/yWorks/mcp-typescribe) 📇 🏠 - 에읎전튞가 학습되지 않은 API로 작업할 수 있도록 타입슀크늜튞 API 정볎륌 횚윚적윌로 제공하는 MCP 서버 + +### 🧮 데읎터 곌학 도구 + +데읎터 탐색, 분석을 닚순화하고 데읎터 곌학 워크플로우륌 향상시킀Ʞ 위핎 섀계된 통합 및 도구. +- [ChronulusAI/chronulus-mcp](https://github.com/ChronulusAI/chronulus-mcp) 🐍 ☁ - Chronulus AI 예잡 및 예잡 에읎전튞로 묎엇읎든 예잡하섞요. +- [zcaceres/markdownify-mcp](https://github.com/zcaceres/markdownify-mcp) 📇 🏠 - 거의 몚든 파음읎나 웹 윘텐잠륌 마크닀욎윌로 변환하는 MCP 서버 +- [@reading-plus-ai/mcp-server-data-exploration](https://github.com/reading-plus-ai/mcp-server-data-exploration) 🐍 ☁ - .csv êž°ë°˜ 데읎터셋에 대한 자윚적읞 데읎터 탐색을 가능하게 하여 최소한의 녞력윌로 지능적읞 통찰력 제공. + +### 📂 파음 시슀템 + +구성 가능한 권한윌로 로컬 파음 시슀템에 직접 접귌을 제공합니닀. AI 몚덞읎 지정된 디렉토늬 낎에서 파음을 읜고, 쓰고, ꎀ늬할 수 있게 합니닀. + +- [@modelcontextprotocol/server-filesystem](https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem) 📇 🏠 - 로컬 파음 시슀템 직접 ì ‘ê·Œ. +- [@modelcontextprotocol/server-google-drive](https://github.com/modelcontextprotocol/servers/tree/main/src/gdrive) 📇 ☁ - 파음 목록 조회, 읜Ʞ 및 검색을 위한 Google Drive 통합 +- [hmk/box-mcp-server](https://github.com/hmk/box-mcp-server) 📇 ☁ - 파음 목록 조회, 읜Ʞ 및 검색을 위한 Box 통합 +- [mark3labs/mcp-filesystem-server](https://github.com/mark3labs/mcp-filesystem-server) 🏎 🏠 - 로컬 파음 시슀템 접귌을 위한 Golang 구현. +- [mamertofabian/mcp-everything-search](https://github.com/mamertofabian/mcp-everything-search) 🐍 🏠 🪟 - Everything SDK륌 사용한 빠륞 Windows 파음 검색 +- [cyberchitta/llm-context.py](https://github.com/cyberchitta/llm-context.py) 🐍 🏠 - MCP 또는 큎늜볎드륌 통핎 LLM곌 윔드 컚텍슀튞 공유 +- [filesystem@quarkiverse/quarkus-mcp-servers](https://github.com/quarkiverse/quarkus-mcp-servers/tree/main/filesystem) ☕ 🏠 - Quarkus륌 사용하여 Java로 구현된 파음 탐색 및 펞집을 허용하는 파음 시슀템. jar 또는 넀읎티람 읎믞지로 사용 가능. +- [Xuanwo/mcp-server-opendal](https://github.com/Xuanwo/mcp-server-opendal) 🐍 🏠 ☁ - Apache OpenDAL™을 사용하여 몚든 슀토늬지에 ì ‘ê·Œ + +### 💰 ꞈ융 및 핀테크 + +ꞈ융 데읎터 ì ‘ê·Œ 및 암혞화폐 시장 정볎. 싀시간 시장 데읎터, 암혞화폐 가격 및 ꞈ융 분석 쿌늬륌 가능하게 합니닀. + +- [heurist-network/heurist-mesh-mcp-server](https://github.com/heurist-network/heurist-mesh-mcp-server) 🎖 ⛅ 🏠 🐍 - Heurist Mesh 넀튞워크륌 통핎 랔록첎읞 분석, 슀마튞 계앜 볎안 감사, 토큰 메튞늭 평가 및 옚첎읞 상혞 작용을 위한 특화된 웹3 AI 에읎전튞에 접귌합니닀. 여러 랔록첎읞에 걞쳐 DeFi 분석, NFT 가치 평가 및 튞랜잭션 몚니터링을 위한 포ꎄ적읞 도구륌 제공합니닀. +- [@base/base-mcp](https://github.com/base/base-mcp) 🎖 📇 ☁ - 옚첎읞 도구륌 위한 Base 넀튞워크 통합윌로, Base 넀튞워크 및 Coinbase API와 상혞 작용하여 지갑 ꎀ늬, 자ꞈ 읎첎, 슀마튞 계앜 및 DeFi 욎영 가능 +- [QuantGeekDev/coincap-mcp](https://github.com/QuantGeekDev/coincap-mcp) 📇 ☁ - CoinCap의 공개 API륌 사용한 싀시간 암혞화폐 시장 데읎터 통합윌로, API í‚€ 없읎 암혞화폐 가격 및 시장 정볎 ì ‘ê·Œ 제공 +- [anjor/coinmarket-mcp-server](https://github.com/anjor/coinmarket-mcp-server) 🐍 ☁ - 암혞화폐 목록 및 시섞륌 가젞였Ʞ 위한 Coinmarket API 통합 +- [berlinbra/alpha-vantage-mcp](https://github.com/berlinbra/alpha-vantage-mcp) 🐍 ☁ - 죌식 및 암혞화폐 정볎륌 몚두 가젞였Ʞ 위한 Alpha Vantage API 통합 +- [ferdousbhai/tasty-agent](https://github.com/ferdousbhai/tasty-agent) 🐍 ☁ - Tastytrade에서의 거래 활동을 처늬하Ʞ 위한 Tastyworks API 통합 +- [ferdousbhai/investor-agent](https://github.com/ferdousbhai/investor-agent) 🐍 ☁ - 옵션 추천을 포핚한 죌식 시장 데읎터륌 가젞였Ʞ 위한 Yahoo Finance 통합 +- [mcpdotdirect/evm-mcp-server](https://github.com/mcpdotdirect/evm-mcp-server) 📇 ☁ - 30개 읎상의 EVM 넀튞워크륌 위한 포ꎄ적읞 랔록첎읞 서비슀, 넀읎티람 토큰, ERC20, NFT, 슀마튞 계앜, 튞랜잭션 및 ENS 확읞 지원. +- [bankless/onchain-mcp](https://github.com/Bankless/onchain-mcp/) 📇 ☁ - 슀마튞 계앜곌 상혞 작용하고 튞랜잭션 및 토큰 정볎륌 쿌늬하는 Bankless Onchain API +- [kukapay/cryptopanic-mcp-server](https://github.com/kukapay/cryptopanic-mcp-server) 🐍 ☁ - CryptoPanic Ʞ반의 최신 암혞화폐 뉎슀륌 AI 에읎전튞에게 제공. +- [kukapay/whale-tracker-mcp](https://github.com/kukapay/whale-tracker-mcp) 🐍 ☁ - 암혞화폐 고래 거래 추적을 위한 mcp 서버. +- [kukapay/crypto-feargreed-mcp](https://github.com/kukapay/crypto-feargreed-mcp) 🐍 ☁ - 싀시간 및 곌거의 암혞화폐 공포 및 탐욕 지수 데읎터 제공. +- [kukapay/dune-analytics-mcp](https://github.com/kukapay/dune-analytics-mcp) 🐍 ☁ - Dune Analytics 데읎터륌 AI 에읎전튞에게 연결하는 mcp 서버. +- [kukapay/pancakeswap-poolspy-mcp](https://github.com/kukapay/pancakeswap-poolspy-mcp) 🐍 ☁ - Pancake Swap에서 새로 생성된 풀을 추적하는 MCP 서버. +- [kukapay/uniswap-poolspy-mcp](https://github.com/kukapay/uniswap-poolspy-mcp) 🐍 ☁ - 여러 랔록첎읞에서 Uniswap에 새로 생성된 유동성 풀을 추적하는 MCP 서버. +- [kukapay/uniswap-trader-mcp](https://github.com/kukapay/uniswap-trader-mcp) 🐍 ☁ - 여러 랔록첎읞에서 Uniswap DEX의 토큰 슀왑을 자동화하는 AI 에읎전튞륌 위한 MCP 서버. +- [kukapay/token-minter-mcp](https://github.com/kukapay/token-minter-mcp) 🐍 ☁ - 여러 랔록첎읞에서 ERC-20 토큰을 발행하는 도구륌 AI 에읎전튞에게 제공하는 MCP 서버. +- [kukapay/thegraph-mcp](https://github.com/kukapay/thegraph-mcp) 🐍 ☁ - The Graph의 읞덱싱된 랔록첎읞 데읎터로 AI 에읎전튞륌 강화하는 MCP 서버. +- [pwh-pwh/coin-mcp-server](https://github.com/pwh-pwh/coin-mcp-server) 🐍 ☁ - 암혞화폐 가격을 가젞였Ʞ 위한 Bitget API. + +### 🎮 게임 + +게임 ꎀ렚 데읎터, 게임 엔진 및 서비슀와의 통합 + +- [Coding-Solo/godot-mcp](https://github.com/Coding-Solo/godot-mcp) 📇 🏠 - Godot 게임 엔진곌 상혞 작용하Ʞ 위한 MCP 서버, Godot 프로젝튞에서 장멎 펞집, 싀행, 디버깅 및 ꎀ늬 도구 제공. +- [rishijatia/fantasy-pl-mcp](https://github.com/rishijatia/fantasy-pl-mcp/) 🐍 ☁ - 싀시간 판타지 프늬믞얎 늬귞 데읎터 및 분석 도구륌 위한 MCP 서버. +- [CoderGamester/mcp-unity](https://github.com/CoderGamester/mcp-unity) 📇 #⃣ 🏠 - 게임 개발을 위한 Unity3d 게임 엔진 통합용 MCP 서버 + +### 🧠 지식 및 메몚늬 + +지식 귞래프 구조륌 사용한 영구 메몚늬 저장. AI 몚덞읎 섞션 간에 구조화된 정볎륌 유지하고 쿌늬할 수 있게 합니닀. +- [@modelcontextprotocol/server-memory](https://github.com/modelcontextprotocol/servers/tree/main/src/memory) 📇 🏠 - 컚텍슀튞 유지륌 위한 지식 귞래프 êž°ë°˜ 영구 메몚늬 시슀템 +- [/CheMiguel23/MemoryMesh](https://github.com/CheMiguel23/MemoryMesh) 📇 🏠 - AI 역할극 및 슀토늬 생성에 쀑점을 둔 향상된 귞래프 êž°ë°˜ 메몚늬 +- [/topoteretes/cognee](https://github.com/topoteretes/cognee/tree/dev/cognee-mcp) 📇 🏠 - 닀양한 귞래프 및 벡터 저장소륌 사용하고 30개 읎상의 데읎터 소슀에서 수집을 허용하는 AI 앱 및 에읎전튞용 메몚늬 ꎀ늬자 +- [@hannesrudolph/mcp-ragdocs](https://github.com/hannesrudolph/mcp-ragdocs) 🐍 🏠 - 벡터 검색을 통핎 묞서륌 검색하고 처늬하는 도구륌 제공하는 MCP 서버 구현윌로, AI 얎시슀턎튞가 ꎀ렚 묞서 컚텍슀튞로 응답을 볎강할 수 있도록 지원합니닀. +- [@kaliaboi/mcp-zotero](https://github.com/kaliaboi/mcp-zotero) 📇 ☁ - LLM읎 Zotero 큎띌우드의 컬렉션 및 소슀와 핚께 작업할 수 있도록 하는 컀넥터 +- [mcp-summarizer](https://github.com/0xshellming/mcp-summarizer) 📕 ☁ - AI 요앜 MCP 서버, 여러 윘텐잠 유형 지원: 음반 텍슀튞, 웹 페읎지, PDF 묞서, EPUB 책, HTML 윘텐잠 +- [graphlit-mcp-server](https://github.com/graphlit/graphlit-mcp-server) 📇 ☁ - Slack, Discord, 웹사읎튞, Google Drive, Linear 또는 GitHub에서 묎엇읎든 Graphlit 프로젝튞로 수집한 닀음 Cursor, Windsurf 또는 Cline곌 같은 MCP 큎띌읎얞튞 낎에서 ꎀ렚 지식을 검색하고 검색합니닀. +- [@mem0ai/mem0-mcp](https://github.com/mem0ai/mem0-mcp) 🐍 🏠 - 윔딩 선혞도 및 팹턮 ꎀ늬륌 돕는 Mem0용 몚덞 컚텍슀튞 프로토윜 서버로, Cursor 및 Windsurf와 같은 IDE에서 윔드 구현, 몚범 사례 및 Ʞ술 묞서륌 저장, 검색 및 의믞론적윌로 처늬하는 도구륌 제공합니닀. + +### 🗺 위치 서비슀 + +지늬 및 위치 êž°ë°˜ 서비슀 통합. 지도 데읎터, êžžì°Ÿêž° 및 장소 정볎에 대한 접귌을 가능하게 합니닀. + +- [@modelcontextprotocol/server-google-maps](https://github.com/modelcontextprotocol/servers/tree/main/src/google-maps) 📇 ☁ - 위치 서비슀, 겜로 안낎 및 장소 섞부 정볎륌 위한 Google 지도 통합 +- [SecretiveShell/MCP-timeserver](https://github.com/SecretiveShell/MCP-timeserver) 🐍 🏠 - 몚든 시간대의 시간에 접귌하고 현재 현지 시간 확읞 +- [webcoderz/MCP-Geo](https://github.com/webcoderz/MCP-Geo) 🐍 🏠 - nominatim, ArcGIS, Bing을 위한 지였윔딩 MCP 서버 +- [@briandconnelly/mcp-server-ipinfo](https://github.com/briandconnelly/mcp-server-ipinfo) 🐍 ☁  - IPInfo API륌 사용한 IP 죌소 지늬 위치 및 넀튞워크 정볎 +- [QGIS MCP](https://github.com/jjsantos01/qgis_mcp) - QGIS 데슀크톱을 MCP륌 통핎 Claude AI에 연결합니닀. 읎 통합은 프롬프튞 지원 프로젝튞 생성, 레읎얎 로딩, 윔드 싀행 등을 가능하게 합니닀. +- [kukapay/nearby-search-mcp](https://github.com/kukapay/nearby-search-mcp) 🐍 ☁ - IP êž°ë°˜ 위치 감지륌 통한 죌변 장소 검색을 위한 MCP 서버. + +### 🎯 마쌀팅 + +마쌀팅 윘텐잠 생성 및 펞집, 웹 메타 데읎터 작업, 제품 포지셔닝 및 펞집 가읎드 작업을 위한 도구. + +- [Open Strategy Partners 마쌀팅 도구](https://github.com/open-strategy-partners/osp_marketing_tools) 🐍 🏠 - Ꞁ쓰Ʞ 슀타음, 펞집 윔드, 제품 마쌀팅 가치 ë§µ 생성을 포핚한 Open Strategy Partners의 마쌀팅 도구 몚음. + +### 📊 몚니터링 + +애플늬쌀읎션 몚니터링 데읎터 ì ‘ê·Œ 및 분석. AI 몚덞읎 였류 볎고서 및 성능 지표륌 검토할 수 있게 합니닀. + +- [@modelcontextprotocol/server-sentry](https://github.com/modelcontextprotocol/servers/tree/main/src/sentry) 🐍 ☁ - 였류 추적 및 성능 몚니터링을 위한 Sentry.io 통합 +- [@modelcontextprotocol/server-raygun](https://github.com/MindscapeHQ/mcp-server-raygun) 📇 ☁ - 충돌 볎고 및 싀제 사용자 몚니터링을 위한 Raygun API V3 통합 +- [metoro-io/metoro-mcp-server](https://github.com/metoro-io/metoro-mcp-server) 🎖 🏎 ☁ - Metoro로 몚니터링되는 쿠버넀티슀 환겜 쿌늬 및 상혞 작용 +- [grafana/mcp-grafana](https://github.com/grafana/mcp-grafana) 🎖 🐍 🏠 ☁ - Grafana 읞슀턎슀에서 대시볎드 검색, 읞시던튞 조사 및 데읎터 소슀 쿌늬 +- [pydantic/logfire-mcp](https://github.com/pydantic/logfire-mcp) 🎖 🐍 ☁ - Logfire륌 통핎 OpenTelemetry 추적 및 메튞늭에 대한 ì ‘ê·Œ 제공 +- [seekrays/mcp-monitor](https://github.com/seekrays/mcp-monitor) 🏎 🏠 - 몚덞 컚텍슀튞 프로토윜(MCP)을 통핎 시슀템 메튞늭을 녞출하는 시슀템 몚니터링 도구. 읎 도구륌 사용하멎 LLM읎 MCP 혾환 읞터페읎슀륌 통핎 싀시간 시슀템 정볎륌 검색할 수 있습니닀. (CPU, 메몚늬, 디슀크, 넀튞워크, 혞슀튞, 프로섞슀 지원) +- [hyperb1iss/lucidity-mcp](https://github.com/hyperb1iss/lucidity-mcp) 🐍 🏠 - 복잡성에서 볎안 췚앜점에 읎륎Ʞ까지 10가지 쀑요한 찚원에 걞쳐 지능적읎고 프롬프튞 êž°ë°˜ 분석을 통핎 AI 생성 윔드 품질 향상 + +### 🔎 검색 + +- [@modelcontextprotocol/server-brave-search](https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search) 📇 ☁ - Brave의 검색 API륌 사용한 웹 검색 Ʞ능 +- [@angheljf/nyt](https://github.com/angheljf/nyt) 📇 ☁ - NYTimes API륌 사용하여 Ʞ사 검색 +- [@modelcontextprotocol/server-fetch](https://github.com/modelcontextprotocol/servers/tree/main/src/fetch) 🐍 🏠 ☁ - AI 소비륌 위한 횚윚적읞 웹 윘텐잠 가젞였Ʞ 및 처늬 +- [ac3xx/mcp-servers-kagi](https://github.com/ac3xx/mcp-servers-kagi) 📇 ☁ - Kagi 검색 API 통합 +- [exa-labs/exa-mcp-server](https://github.com/exa-labs/exa-mcp-server) 🎖 📇 ☁ – 몚덞 컚텍슀튞 프로토윜(MCP) 서버는 Claude와 같은 AI 얎시슀턎튞가 웹 검색을 위핎 Exa AI 검색 API륌 사용할 수 있게 합니닀. 읎 섀정은 AI 몚덞읎 안전하고 통제된 방식윌로 싀시간 웹 정볎륌 얻을 수 있도록 합니닀. +- [fatwang2/search1api-mcp](https://github.com/fatwang2/search1api-mcp) 📇 ☁ - search1api륌 통한 검색 (유료 API í‚€ 필요) +- [Tomatio13/mcp-server-tavily](https://github.com/Tomatio13/mcp-server-tavily) ☁ 🐍 – Tavily AI 검색 API +- [kshern/mcp-tavily](https://github.com/kshern/mcp-tavily.git) ☁ 📇 – Tavily AI 검색 API +- [blazickjp/arxiv-mcp-server](https://github.com/blazickjp/arxiv-mcp-server) ☁ 🐍 - ArXiv 연구 녌묞 검색 +- [mzxrai/mcp-webresearch](https://github.com/mzxrai/mcp-webresearch) 🔍📚 - Google 검색 및 몚든 죌제에 대한 심잵 웹 늬서치 수행 +- [andybrandt/mcp-simple-arxiv](https://github.com/andybrandt/mcp-simple-arxiv) - 🐍 ☁  arXiv에서 녌묞을 검색하고 읜Ʞ 위한 LLM용 MCP +- [andybrandt/mcp-simple-pubmed](https://github.com/andybrandt/mcp-simple-pubmed) - 🐍 ☁  PubMed에서 의료/생명 곌학 녌묞을 검색하고 읜Ʞ 위한 MCP. +- [apify/mcp-server-rag-web-browser](https://github.com/apify/mcp-server-rag-web-browser) 📇 ☁ - Apify의 였픈 소슀 RAG 웹 람띌우저 액터륌 위한 MCP 서버로 웹 검색, URL 슀크래핑 및 마크닀욎 형식윌로 윘텐잠 반환 수행. +- [SecretiveShell/MCP-searxng](https://github.com/SecretiveShell/MCP-searxng) 🐍 🏠 - searXNG 읞슀턎슀에 연결하Ʞ 위한 MCP 서버 +- [Bigsy/Clojars-MCP-Server](https://github.com/Bigsy/Clojars-MCP-Server) 📇 ☁ - Clojure 띌읎람러늬의 최신 의졎성 정볎륌 위한 Clojars MCP 서버 +- [Ihor-Sokoliuk/MCP-SearXNG](https://github.com/ihor-sokoliuk/mcp-searxng) 📇 🏠/☁ - [SearXNG](https://docs.searxng.org)륌 위한 몚덞 컚텍슀튞 프로토윜 서버 +- [erithwik/mcp-hn](https://github.com/erithwik/mcp-hn) 🐍 ☁ - 핎컀 뉎슀 검색, 읞Ʞ Ʞ사 가젞였Ʞ 등을 위한 MCP 서버. +- [chanmeng/google-news-mcp-server](https://github.com/ChanMeng666/server-google-news) 📇 ☁ - 자동 죌제 분류, 닀국얎 지원 및 [SerpAPI](https://serpapi.com/)륌 통한 헀드띌읞, Ʞ사 및 ꎀ렚 죌제륌 포핚한 포ꎄ적읞 검색 Ʞ능을 갖춘 Google 뉎슀 통합. +- [devflowinc/trieve](https://github.com/devflowinc/trieve/tree/main/clients/mcp-server) 🎖 📇 ☁ 🏠 - [Trieve](https://trieve.ai)륌 통핎 데읎터셋에서 정볎륌 크례링, 임베딩, 청킹, 검색 및 검색합니닀. +- [nickclyde/duckduckgo-mcp-server](https://github.com/nickclyde/duckduckgo-mcp-server) 🐍 ☁ - DuckDuckGo륌 사용한 웹 검색 +- [zhsama/duckduckgo-mcp-server](https://github.com/zhsama/duckduckgo-mpc-server/) 📇 🏠 ☁ - DuckDuckGo 검색 Ʞ능을 제공하는 TypeScript êž°ë°˜ MCP 서버입니닀. +- [vectorize-io/vectorize-mcp-server](https://github.com/vectorize-io/vectorize-mcp-server/) ☁ 📇 - 고꞉ 검색, 비공개 심잵 연구, 몚든 것을 마크닀욎윌로 변환하는 파음 추출 및 텍슀튞 청킹을 위한 [Vectorize](https://vectorize.io) MCP 서버. +- [jae-jae/fetcher-mcp](https://github.com/jae-jae/fetcher-mcp) 📇 🏠 - Playwright 헀드늬슀 람띌우저륌 사용하여 웹 페읎지 윘텐잠륌 가젞였는 MCP 서버, Javascript 렌더링 및 지능형 윘텐잠 추출 지원, 마크닀욎 또는 HTML 형식 출력. + +### 🔒 볎안 + +- [dnstwist MCP 서버](https://github.com/BurtTheCoder/mcp-dnstwist) 📇 🪟 ☁ - 타읎포슀쿌팅, 플싱 및 êž°ì—… 슀파읎 활동 탐지륌 돕는 강력한 DNS 퍌징 도구읞 dnstwist용 MCP 서버. +- [Maigret MCP 서버](https://github.com/BurtTheCoder/mcp-maigret) 📇 🪟 ☁ - 닀양한 공개 소슀에서 사용자 계정 정볎륌 수집하는 강력한 OSINT 도구읞 maigret용 MCP 서버. 읎 서버는 소셜 넀튞워크에서 사용자 읎늄 검색 및 URL 분석 도구륌 제공합니닀. +- [Shodan MCP 서버](https://github.com/BurtTheCoder/mcp-shodan) 📇 🪟 ☁ - Shodan API 및 Shodan CVEDB 쿌늬륌 위한 MCP 서버. 읎 서버는 IP 조회, 장치 검색, DNS 조회, 췚앜점 쿌늬, CPE 조회 등을 위한 도구륌 제공합니닀. +- [VirusTotal MCP 서버](https://github.com/BurtTheCoder/mcp-virustotal) 📇 🪟 ☁ - VirusTotal API 쿌늬륌 위한 MCP 서버. 읎 서버는 URL 슀캔, 파음 핎시 분석 및 IP 죌소 볎고서 검색 도구륌 제공합니닀. +- [ORKL MCP 서버](https://github.com/fr0gger/MCP_Security) 📇 🛡 ☁ - ORKL API 쿌늬륌 위한 MCP 서버. 읎 서버는 위협 볎고서 가젞였Ʞ, 위협 행위자 분석 및 읞텔늬전슀 소슀 검색 도구륌 제공합니닀. +- [Security Audit MCP 서버](https://github.com/qianniuspace/mcp-security-audit) 📇 🛡 ☁ 볎안 췚앜점에 대핮 npm 팚킀지 의졎성을 감사하는 강력한 MCP(몚덞 컚텍슀튞 프로토윜) 서버. 싀시간 볎안 검사륌 위한 원격 npm 레지슀튞늬 통합윌로 구축됚. +- [ROADRecon MCP 서버](https://github.com/atomicchonk/roadrecon_mcp_server) 🐍 🪟 🏠 Azure 테넌튾 엎거에서 ROADrecon 수집 결곌 분석을 위한 MCP 서버 + +### 🏃 슀포잠 + +슀포잠 ꎀ렚 데읎터, 결곌 및 통계에 접귌하Ʞ 위한 도구. + +- [r-huijts/firstcycling-mcp](https://github.com/r-huijts/firstcycling-mcp) 📇 ☁ - 자연얎륌 통핎 사읎큎링 겜죌 데읎터, 결곌 및 통계에 접귌합니닀. firstcycling.com에서 출발 목록, 겜죌 결곌 및 띌읎더 정볎 검색 Ʞ능 포핚. + +### 🚆 여행 및 교통 + +여행 및 교통 정볎 ì ‘ê·Œ. 음정, 겜로 및 싀시간 여행 데읎터 쿌늬륌 가능하게 합니닀. + +- [Airbnb MCP 서버](https://github.com/openbnb-org/mcp-server-airbnb) 📇 ☁ - Airbnb 검색 및 숙소 섞부 정볎 가젞였Ʞ 도구 제공. +- [NS 여행 정볎 MCP 서버](https://github.com/r-huijts/ns-mcp-server) 📇 ☁ - 넀덜란드 철도(NS) 여행 정볎, 음정 및 싀시간 업데읎튞 ì ‘ê·Œ +- [KyrieTangSheng/mcp-server-nationalparks](https://github.com/KyrieTangSheng/mcp-server-nationalparks) 📇 ☁ - 믞국 국늜 공원의 공원 섞부 정볎, 겜고, 방묞자 섌터, 캠프장 및 읎벀튞에 대한 최신 정볎륌 제공하는 국늜 공원 서비슀 API 통합 +- [pab1it0/tripadvisor-mcp](https://github.com/pab1it0/tripadvisor-mcp) 📇 🐍 - LLM읎 Tripadvisor API와 상혞 작용할 수 있게 하는 MCP 서버로, 표쀀화된 MCP 읞터페읎슀륌 통핎 위치 데읎터, 늬뷰 및 사진 지원 + +### 🔄 버전 ꎀ늬 + +Git 늬포지토늬 및 버전 ꎀ늬 플랫폌곌 상혞 작용합니닀. 표쀀화된 API륌 통핎 늬포지토늬 ꎀ늬, 윔드 분석, 풀 늬퀘슀튞 처늬, 읎슈 추적 및 Ʞ타 버전 ꎀ늬 작업을 가능하게 합니닀. + +- [@modelcontextprotocol/server-github](https://github.com/modelcontextprotocol/servers/tree/main/src/github) 📇 ☁ - 늬포지토늬 ꎀ늬, PR, 읎슈 등을 위한 GitHub API 통합 +- [@modelcontextprotocol/server-gitlab](https://github.com/modelcontextprotocol/servers/tree/main/src/gitlab) 📇 ☁ 🏠 - 프로젝튞 ꎀ늬 및 CI/CD 욎영을 위한 GitLab 플랫폌 통합 +- [@oschina/mcp-gitee](https://github.com/oschina/gitee) 🏎 ☁ 🏠 - Gitee API 통합, 늬포지토늬, 읎슈 및 풀 늬퀘슀튞 ꎀ늬 등. +- [@modelcontextprotocol/server-git](https://github.com/modelcontextprotocol/servers/tree/main/src/git) 🐍 🏠 - 로컬 늬포지토늬 읜Ʞ, 검색 및 분석을 포핚한 직접적읞 Git 늬포지토늬 욎영 +- [adhikasp/mcp-git-ingest](https://github.com/adhikasp/mcp-git-ingest) 🐍 🏠 - LLM윌로 GitHub 늬포지토늬 읜Ʞ 및 분석 + +### 🛠 Ʞ타 도구 및 통합 + +- [apify/actors-mcp-server](https://github.com/apify/actors-mcp-server) 📇 ☁ - 액터띌고 알렀진 3,000개 읎상의 사전 구축된 큎띌우드 도구륌 사용하여 웹사읎튞, 전자 상거래, 소셜 믞디얎, 검색 엔진, 지도 등에서 데읎터 추출 +- [ivo-toby/contentful-mcp](https://github.com/ivo-toby/contentful-mcp) 📇 🏠 - Contentful Space에서 윘텐잠, 윘텐잠 몚덞 및 에셋 업데읎튞, 생성, 삭제 +- [mzxrai/mcp-openai](https://github.com/mzxrai/mcp-openai) 📇 ☁ - OpenAI의 가장 똑똑한 몚덞곌 채팅 +- [mrjoshuak/godoc-mcp](https://github.com/mrjoshuak/godoc-mcp) 🏎 🏠 - 전첎 소슀 파음을 읜지 않고 AI 얎시슀턎튞에게 팚킀지 묞서 및 유형에 대한 슀마튞한 접귌을 제공하는 토큰 횚윚적읞 Go 묞서 서버 +- [pierrebrunelle/mcp-server-openai](https://github.com/pierrebrunelle/mcp-server-openai) 🐍 ☁ - MCP 프로토윜을 사용하여 Claude에서 직접 OpenAI 몚덞 쿌늬 +- [@modelcontextprotocol/server-everything](https://github.com/modelcontextprotocol/servers/tree/main/src/everything) 📇 🏠 - MCP 프로토윜의 몚든 Ʞ능을 싀행하는 MCP 서버 +- [baba786/phabricator-mcp-server](https://github.com/baba786/phabricator-mcp-server) 🐍 ☁ - Phabricator API와 상혞 작용 +- [MarkusPfundstein/mcp-obsidian](https://github.com/MarkusPfundstein/mcp-obsidian) 🐍 ☁ 🏠 - REST API륌 통핎 Obsidian곌 상혞 작용 +- [calclavia/mcp-obsidian](https://github.com/calclavia/mcp-obsidian) 📇 🏠 - Claude 데슀크톱(또는 몚든 MCP 큎띌읎얞튞)읎 마크닀욎 녾튾(예: Obsidian 볎ꎀ소)륌 포핚하는 몚든 디렉토늬륌 읜고 검색할 수 있도록 하는 컀넥터입니닀. +- [anaisbetts/mcp-youtube](https://github.com/anaisbetts/mcp-youtube) 📇 ☁ - YouTube 자막 가젞였Ʞ +- [Seym0n/tiktok-mcp](https://github.com/Seym0n/tiktok-mcp) 📇 ☁ - TikTok 동영상곌 상혞 작용 +- [danhilse/notion_mcp](https://github.com/danhilse/notion_mcp) 🐍 ☁ - 개읞 할 음 목록 ꎀ늬륌 위핎 Notion의 API와 통합 +- [rusiaaman/wcgw](https://github.com/rusiaaman/wcgw/blob/main/src/wcgw/client/mcp_server/Readme.md) 🐍 🏠 - 자윚 ì…ž 싀행, 컎퓚터 제얎 및 윔딩 에읎전튞. (Mac) +- [reeeeemo/ancestry-mcp](https://github.com/reeeeemo/ancestry-mcp) 🐍 🏠 - AI가 .ged 파음 및 유전 데읎터 읜Ʞ 가능 +- [sirmews/apple-notes-mcp](https://github.com/sirmews/apple-notes-mcp) 🐍 🏠 - AI가 로컬 Apple Notes 데읎터베읎슀에서 읜Ʞ 가능 (macOS 전용) +- [anjor/coinmarket-mcp-server](https://github.com/anjor/coinmarket-mcp-server) 🐍 🏠 - 암혞화폐 목록 및 시섞륌 가젞였Ʞ 위한 Coinmarket API 통합 +- [suekou/mcp-notion-server](https://github.com/suekou/mcp-notion-server) 📇 🏠 - Notion API와 상혞 작용 +- [amidabuddha/unichat-mcp-server](https://github.com/amidabuddha/unichat-mcp-server) 🐍/📇 ☁ - 도구 또는 사전 정의된 프롬프튞륌 통핎 MCP 프로토윜을 사용하여 OpenAI, MistralAI, Anthropic, xAI, Google AI 또는 DeepSeek에 요청 볎낎Ʞ. 공꞉업첎 API í‚€ 필요 +- [evalstate/mcp-miro](https://github.com/evalstate/mcp-miro) 📇 ☁ - MIRO 화읎튞볎드 ì ‘ê·Œ, 항목 대량 생성 및 읜Ʞ. REST API용 OAUTH í‚€ 필요. +- [@tacticlaunch/mcp-linear](https://github.com/tacticlaunch/mcp-linear) 📇 ☁ 🍎 🪟 🐧 - Linear 프로젝튞 ꎀ늬 시슀템곌 통합 +- [KS-GEN-AI/jira-mcp-server](https://github.com/KS-GEN-AI/jira-mcp-server) 📇 ☁ 🍎 🪟 - JQL 및 API륌 통핎 Jira 데읎터 읜Ʞ 및 티쌓 생성 및 펞집 요청 싀행. +- [KS-GEN-AI/confluence-mcp-server](https://github.com/KS-GEN-AI/confluence-mcp-server) 📇 ☁ 🍎 🪟 - CQL을 통핎 Confluence 데읎터 가젞였Ʞ 및 페읎지 읜Ʞ. +- [sooperset/mcp-atlassian](https://github.com/sooperset/mcp-atlassian) 🐍 ☁ - Atlassian 제품(Confluence 및 Jira)용 MCP 서버. Confluence Cloud, Jira Cloud 및 Jira Server/Data Center 지원. Atlassian 작업 공간 전반에 걞쳐 윘텐잠 검색, 읜Ʞ, 생성 및 ꎀ늬륌 위한 포ꎄ적읞 도구 제공. +- [pyroprompts/any-chat-completions-mcp](https://github.com/pyroprompts/any-chat-completions-mcp) - Perplexity, Groq, xAI 등곌 같은 닀륞 OpenAI SDK 혾환 채팅 완료 API와 채팅 +- [anaisbetts/mcp-installer](https://github.com/anaisbetts/mcp-installer) 🐍 🏠 -  닀륞 MCP 서버륌 섀치핎죌는 MCP 서버. +- [tanigami/mcp-server-perplexity](https://github.com/tanigami/mcp-server-perplexity) 🐍 ☁ - Perplexity API와 상혞 작용. +- [future-audiences/wikimedia-enterprise-model-context-protocol](https://gitlab.wikimedia.org/repos/future-audiences/wikimedia-enterprise-model-context-protocol) 🐍 ☁  - 위킀백곌 Ʞ사 조회 API +- [andybrandt/mcp-simple-timeserver](https://github.com/andybrandt/mcp-simple-timeserver) 🐍 🏠☁ - 큎띌읎얞튞 뚞신의 현지 시간 또는 NTP 서버의 현재 UTC 시간을 확읞할 수 있는 MCP 서버 +- [andybrandt/mcp-simple-openai-assistant](https://github.com/andybrandt/mcp-simple-openai-assistant) - 🐍 ☁  OpenAI 얎시슀턎튞와 대화하Ʞ 위한 MCP (Claude는 몚든 GPT 몚덞을 얎시슀턎튞로 사용할 수 있음) +- [@llmindset/mcp-hfspace](https://github.com/evalstate/mcp-hfspace) 📇 ☁ - Claude에서 직접 HuggingFace Spaces 사용. 였픈 소슀 읎믞지 생성, 채팅, 비전 작업 등 사용. 읎믞지, 였디였 및 텍슀튞 업로드/닀욎로드 지원. +- [zueai/mcp-manager](https://github.com/zueai/mcp-manager) 📇 ☁ - Claude 데슀크톱 앱용 MCP 서버륌 섀치하고 ꎀ늬하는 간닚한 웹 UI. +- [wong2/mcp-cli](https://github.com/wong2/mcp-cli) 📇 🏠 - MCP 서버 테슀튞용 CLI 도구 +- [chrishayuk/mcp-cli](https://github.com/chrishayuk/mcp-cli) 🐍 🏠 - MCP 서버 테슀튞륌 위한 또 닀륞 CLI 도구 +- [isaacwasserman/mcp-vegalite-server](https://github.com/isaacwasserman/mcp-vegalite-server) 🐍 🏠 - VegaLite 형식 및 렌더러륌 사용하여 가젞옚 데읎터에서 시각화 생성. +- [tevonsb/homeassistant-mcp](https://github.com/tevonsb/homeassistant-mcp) 📇 🏠 - Home Assistant 데읎터 ì ‘ê·Œ 및 장치(조명, 슀위치, 옚도 조절Ʞ 등) 제얎. +- [allenporter/mcp-server-home-assistant](https://github.com/allenporter/mcp-server-home-assistant) 🐍 🏠 - 몚덞 컚텍슀튞 프로토윜 서버륌 통핎 몚든 Home Assistant 음성 읞텐튞륌 녞출하여 홈 제얎 가능. +- [@magarcia/mcp-server-giphy](https://github.com/magarcia/mcp-server-giphy) 📇 ☁ - Giphy API륌 통핎 Giphy의 방대한 띌읎람러늬에서 GIF 검색 및 검색. +- [nguyenvanduocit/all-in-one-model-context-protocol](https://github.com/nguyenvanduocit/all-in-one-model-context-protocol) 🏎 🏠 - 개발자륌 위한 유용한 도구 몚음, 엔지니얎가 필요로 하는 거의 몚든 것: confluence, Jira, Youtube, 슀크늜튞 싀행, 지식 êž°ë°˜ RAG, URL 가젞였Ʞ, Youtube 채널 ꎀ늬, 읎메음, 캘늰더, gitlab +- [@joshuarileydev/mac-apps-launcher-mcp-server](https://github.com/JoshuaRileyDev/mac-apps-launcher) 📇 🏠 - MacOS에서 애플늬쌀읎션을 나엎하고 싀행하는 MCP 서버 +- [ZeparHyfar/mcp-datetime](https://github.com/ZeparHyfar/mcp-datetime) - 닀양한 형식의 날짜 및 시간 핚수륌 제공하는 MCP 서버 +- [SecretiveShell/MCP-wolfram-alpha](https://github.com/SecretiveShell/MCP-wolfram-alpha) 🐍 ☁ - Wolfram Alpha API 쿌늬륌 위한 MCP 서버. +- [Amazon Bedrock Nova Canvas](https://github.com/zxkane/mcp-server-amazon-bedrock) 📇 ☁ - 읎믞지 생성을 위핎 Amazon Nova Canvas 몚덞 사용. +- [apinetwork/piapi-mcp-server](https://github.com/apinetwork/piapi-mcp-server) 📇 ☁ PiAPI MCP 서버는 사용자가 Claude 또는 닀륞 MCP 혾환 앱에서 직접 Midjourney/Flux/Kling/Hunyuan/Udio/Trellis로 믞디얎 윘텐잠륌 생성할 수 있게 합니닀. +- [gotoolkits/DifyWorkflow](https://github.com/gotoolkits/mcp-difyworkflow-server) - 🏎 ☁ Dify 워크플로우 쿌늬 및 싀행 도구 +- [@pskill9/hn-server](https://github.com/pskill9/hn-server) - 📇 ☁ news.ycombinator.com(핎컀 뉎슀)의 HTML 윘텐잠륌 파싱하고 닀양한 유형의 슀토늬(읞Ʞ, 신규, 질묞, 쇌, 채용)에 대한 구조화된 데읎터 제공. +- [@mediar-ai/screenpipe](https://github.com/mediar-ai/screenpipe) - 🎖 🊀 🏠 🍎 타임슀탬프 읞덱싱, SQL/임베딩 저장소, 시맚틱 검색, LLM êž°ë°˜ Ʞ록 분석 및 읎벀튞 튞늬거 작업을 통핎 화멎/였디였륌 캡처하는 로컬 우선 시슀템 - NextJS 플러귞읞 생태계륌 통핎 컚텍슀튞 읞식 AI 에읎전튞 구축 가능. +- [akseyh/bear-mcp-server](https://github.com/akseyh/bear-mcp-server) - AI가 Bear Notes에서 읜을 수 있도록 허용 (macOS 전용) +- [mcp-server-jfx](https://github.com/quarkiverse/quarkus-mcp-servers/tree/main/jfx) ☕ 🏠 - JavaFX 캔버슀에 귞늬Ʞ. +- [hmk/attio-mcp-server](https://github.com/hmk/attio-mcp-server) - 📇 ☁ AI 큎띌읎얞튞가 Attio CRM에서 레윔드 및 녞튞륌 ꎀ늬할 수 있도록 허용 +- [roychri/mcp-server-asana](https://github.com/roychri/mcp-server-asana) - 📇 ☁ 읎 몚덞 컚텍슀튞 프로토윜 서버의 Asana 구현은 Anthropic의 Claude 데슀크톱 애플늬쌀읎션곌 같은 MCP 큎띌읎얞튞에서 Asana API와 통신할 수 있게 합니닀. +- [ws-mcp](https://github.com/nick1udwig/ws-mcp) - WebSocket윌로 MCP 서버 래핑 ([kitbitz](https://github.com/nick1udwig/kibitz)와 핚께 사용하Ʞ 위핎) +- [AbdelStark/bitcoin-mcp](https://github.com/AbdelStark/bitcoin-mcp) - ₿ AI 몚덞읎 비튞윔읞곌 상혞 작용하여 í‚€ 생성, 죌소 유횚성 검사, 튞랜잭션 디윔딩, 랔록첎읞 쿌늬 등을 할 수 있도록 하는 몚덞 컚텍슀튞 프로토윜(MCP) 서버. +- [tomekkorbak/strava-mcp-server](https://github.com/tomekkorbak/strava-mcp-server) 🐍 ☁ - 신첎 욎동 추적 앱읞 Strava용 MCP 서버 +- [tomekkorbak/oura-mcp-server](https://github.com/tomekkorbak/oura-mcp-server) 🐍 ☁ - 수멎 추적 앱읞 Oura용 MCP 서버 +- [rember/rember-mcp](https://github.com/rember/rember-mcp) 📇 🏠 - 채팅에서 배욎 낎용을 Ʞ억하Ʞ 위핎 [Rember](https://rember.com)에 간격 반복 플래시 칎드 만듀Ʞ. +- [hiromitsusasaki/raindrop-io-mcp-server](https://github.com/hiromitsusasaki/raindrop-io-mcp-server) 📇 ☁ - LLM읎 몚덞 컚텍슀튞 프로토윜(MCP)을 사용하여 Raindrop.io 북마크와 상혞 작용할 수 있도록 하는 통합. +- [@makehq/mcp-server](https://github.com/integromat/make-mcp-server) 🎖 📇 🏠 - [Make](https://www.make.com/) 시나늬였륌 AI 얎시슀턎튞가 혞출할 수 있는 도구로 변환합니닀. +- [NON906/omniparser-autogui-mcp](https://github.com/NON906/omniparser-autogui-mcp) - 🐍 화멎 GUI 자동 조작. +- [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ AI 몚덞읎 [Kibela](https://kibe.la/)와 상혞 작용할 수 있도록 허용 +- [blurrah/mcp-graphql](https://github.com/blurrah/mcp-graphql) 📇 ☁ - AI가 GraphQL 서버륌 쿌늬할 수 있도록 허용 +- [@awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - Replicate의 API륌 통핎 읎믞지 생성 Ʞ능 제공. +- [kenliao94/mcp-server-rabbitmq](https://github.com/kenliao94/mcp-server-rabbitmq) 🐍 🏠 - RabbitMQ와의 상혞 작용(ꎀ늬 작업, 메시지 읞큐/디큐) 가능 +- [marcelmarais/Spotify](https://github.com/marcelmarais/spotify-mcp-server) - 📇 🏠 Spotify 재생 제얎 및 재생 목록 ꎀ늬. +- [NakaokaRei/swift-mcp-gui](https://github.com/NakaokaRei/swift-mcp-gui.git) 🏠 🍎 - 킀볎드 입력, 마우슀 읎동곌 같은 명령을 싀행할 수 있는 MCP 서버 +- [awwaiid/mcp-server-taskwarrior](https://github.com/awwaiid/mcp-server-taskwarrior) 🏠 📇 - Ʞ볞적읞 로컬 taskwarrior 사용(작업 추가, 업데읎튞, 제거)을 위한 MCP 서버 + +## 프레임워크 + +- [FastMCP](https://github.com/jlowin/fastmcp) 🐍 - 파읎썬윌로 MCP 서버륌 구축하Ʞ 위한 고수쀀 프레임워크 +- [FastMCP](https://github.com/punkpeye/fastmcp) 📇 - 타입슀크늜튞로 MCP 서버륌 구축하Ʞ 위한 고수쀀 프레임워크 +- [Foxy Contexts](https://github.com/strowk/foxy-contexts) 🏎 - 핚수형 테슀튞륌 포핚하여 선얞적윌로 MCP 서버륌 작성하Ʞ 위한 Golang 띌읎람러늬 +- [Genkit MCP](https://github.com/firebase/genkit/tree/main/js/plugins/mcp) 📇 – [Genkit](https://github.com/firebase/genkit/tree/main)곌 몚덞 컚텍슀튞 프로토윜(MCP) 간의 통합 제공. +- [LiteMCP](https://github.com/wong2/litemcp) 📇 - JavaScript/TypeScript로 MCP 서버륌 구축하Ʞ 위한 고수쀀 프레임워크 +- [mark3labs/mcp-go](https://github.com/mark3labs/mcp-go) 🏎 - MCP 서버 및 큎띌읎얞튞 구축을 위한 Golang SDK. +- [mcp-framework](https://github.com/QuantGeekDev/mcp-framework) 📇 - MCP 서버 구축을 위한 빠륎고 우아한 타입슀크늜튞 프레임워크 +- [mcp-proxy](https://github.com/punkpeye/mcp-proxy) - 📇 `stdio` 전송을 사용하는 MCP 서버륌 위한 타입슀크늜튞 SSE 프록시. +- [mcp-rs-template](https://github.com/linux-china/mcp-rs-template) 🊀 - Rust용 MCP CLI 서버 템플늿 +- [metoro-io/mcp-golang](https://github.com/metoro-io/mcp-golang) 🏎 - 타입 안전성에 쀑점을 둔 MCP 서버 구축을 위한 Golang 프레임워크 +- [rectalogic/langchain-mcp](https://github.com/rectalogic/langchain-mcp) 🐍 - LangChain에서 MCP 도구 혞출 지원을 제공하여 MCP 도구륌 LangChain 워크플로우에 통합 가능. +- [salty-flower/ModelContextProtocol.NET](https://github.com/salty-flower/ModelContextProtocol.NET) #⃣ 🏠 - NativeAOT 혞환성윌로 .NET 9에서 MCP 서버륌 구축하Ʞ 위한 C# SDK ⚡ 🔌 +- [spring-projects-experimental/spring-ai-mcp](https://github.com/spring-projects-experimental/spring-ai-mcp) ☕ 🌱 - 닀양한 플러귞형 전송 옵션윌로 MCP 큎띌읎얞튞 및 MCP 서버 구축을 위한 Java SDK 및 Spring 프레임워크 통합. +- [@marimo-team/codemirror-mcp](https://github.com/marimo-team/codemirror-mcp) - 늬소슀 얞꞉ 및 프롬프튞 명령을 위한 몚덞 컚텍슀튞 프로토윜(MCP)을 구현하는 CodeMirror 확장 프로귞랚. +- [quarkiverse/quarkus-mcp-server](https://github.com/quarkiverse/quarkus-mcp-server) ☕ - Quarkus륌 사용하여 MCP 서버륌 구축하Ʞ 위한 Java SDK. +- [lastmile-ai/mcp-agent](https://github.com/lastmile-ai/mcp-agent) 🀖 🔌 - 간닚하고 구성 가능한 팚턎을 사용하여 MCP 서버로 횚곌적읞 에읎전튞 구축. +- [mullerhai/sakura-mcp](https://github.com/mullerhai/sakura-mcp) 🊀 ☕ - modelcontextprotocol.io에서 가젞옚 MCP 서버 및 MCP 큎띌읎얞튞로 횚곌적읞 에읎전튞륌 구축하Ʞ 위한 Scala MCP 프레임워크. + +## 유틞늬티 + +- [boilingdata/mcp-server-and-gw](https://github.com/boilingdata/mcp-server-and-gw) 📇 - 예제 서버 및 MCP 큎띌읎얞튞가 포핚된 MCP stdio에서 HTTP SSE 전송 게읎튞웚읎. +- [isaacwasserman/mcp-langchain-ts-client](https://github.com/isaacwasserman/mcp-langchain-ts-client) 📇 – LangChain.js에서 MCP 제공 도구 사용 +- [lightconetech/mcp-gateway](https://github.com/lightconetech/mcp-gateway) 📇 - MCP SSE 서버용 게읎튞웚읎 데몚. +- [mark3labs/mcphost](https://github.com/mark3labs/mcphost) 🏎 -  대규몚 ì–žì–Ž 몚덞(LLM)읎 몚덞 컚텍슀튞 프로토윜(MCP)을 통핎 왞부 도구와 상혞 작용할 수 있도록 하는 CLI 혞슀튞 애플늬쌀읎션. +- [MCP-Connect](https://github.com/EvalsOne/MCP-Connect) 📇 - 큎띌우드 êž°ë°˜ AI 서비슀가 HTTP/HTTPS 요청을 통핎 로컬 Stdio êž°ë°˜ MCP 서버에 접귌할 수 있도록 하는 작은 도구. +- [SecretiveShell/MCP-Bridge](https://github.com/SecretiveShell/MCP-Bridge) 🐍 – Ʞ졎의 몚든 openAI 혾환 큎띌읎얞튞에서 mcp륌 사용하Ʞ 위한 openAI 믞듀웚얎 프록시 +- [sparfenyuk/mcp-proxy](https://github.com/sparfenyuk/mcp-proxy) 🐍 – MCP stdio에서 SSE 전송 게읎튞웚읎. +- [upsonic/gpt-computer-assistant](https://github.com/Upsonic/gpt-computer-assistant) 🐍 – 수직 AI 에읎전튞 구축 프레임워크 +- [kukapay/whereami-mcp](https://github.com/kukapay/whereami-mcp) 🐍 ☁ -  현재 IP륌 Ʞ반윌로 현재 위치륌 정확히 알렀죌는 겜량 mcp 서버. +- [kukapay/whattimeisit-mcp](https://github.com/kukapay/whattimeisit-mcp) 🐍 ☁ - 현재 시간을 정확히 알렀죌는 겜량 mcp 서버. +- [kukapay/whoami-mcp](https://github.com/kukapay/whoami-mcp) 🐍 🏠 - 현재 사용자가 누구읞지 정확히 알렀죌는 겜량 MCP 서버. +- [flux159/mcp-chat](https://github.com/flux159/mcp-chat) 📇🖥 - 몚든 MCP 서버와 채팅하고 연결하는 CLI êž°ë°˜ 큎띌읎얞튞. MCP 서버 개발 및 테슀튞 쀑에 유용합니닀. +- [TBXark/mcp-proxy](https://github.com/TBXark/mcp-proxy) 🏎 - 여러 MCP 늬소슀 서버륌 닚음 http 서버륌 통핎 집계하고 제공하는 MCP 프록시 서버. + +## 팁곌 요령 + +### LLM에게 MCP 사용 방법을 알늬는 공식 프롬프튞 + +Claude에게 몚덞 컚텍슀튞 프로토윜에 대핮 묌얎볎고 싶윌신가요? + +프로젝튞륌 생성한 닀음 읎 파음을 추가하섞요: + +https://modelcontextprotocol.io/llms-full.txt + +Claude에게 MCP 서버 작성 및 작동 방식에 대한 질묞핎볎섞요! + +- https://www.reddit.com/r/ClaudeAI/comments/1h3g01r/want_to_ask_claude_about_model_context_protocol/ + +## 슀타 히슀토늬 + + + + + + Star History Chart + + diff --git a/README-zh.md b/README-zh.md index 1a7687bc..1cded880 100644 --- a/README-zh.md +++ b/README-zh.md @@ -3,6 +3,7 @@ [![English](https://img.shields.io/badge/English-Click-yellow)](README.md) [![䞭文文档](https://img.shields.io/badge/䞭文文档-点击查看-orange)](README-zh.md) [![日本語](https://img.shields.io/badge/日本語-クリック-青)](README-ja.md) +[![한국얎](https://img.shields.io/badge/한국얎-큎늭-yellow)](README-ko.md) [![Discord](https://img.shields.io/discord/1312302100125843476?logo=discord&label=discord)](https://glama.ai/mcp/discord) [![Subreddit subscribers](https://img.shields.io/reddit/subreddit-subscribers/mcp?style=flat&logo=reddit&label=subreddit)](https://www.reddit.com/r/mcp/) diff --git a/README.md b/README.md index 947bc7b2..f4756271 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ [![English](https://img.shields.io/badge/English-Click-yellow)](README.md) [![䞭文文档](https://img.shields.io/badge/䞭文文档-点击查看-orange)](README-zh.md) [![日本語](https://img.shields.io/badge/日本語-クリック-青)](README-ja.md) +[![한국얎](https://img.shields.io/badge/한국얎-큎늭-yellow)](README-ko.md) [![Discord](https://img.shields.io/discord/1312302100125843476?logo=discord&label=discord)](https://glama.ai/mcp/discord) [![Subreddit subscribers](https://img.shields.io/reddit/subreddit-subscribers/mcp?style=flat&logo=reddit&label=subreddit)](https://www.reddit.com/r/mcp/) From 3540fc537900458ffa12bc2512fdc9f0273f65aa Mon Sep 17 00:00:00 2001 From: Jaeger Date: Mon, 31 Mar 2025 14:16:07 +0800 Subject: [PATCH 168/189] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 947bc7b2..a09b8fdc 100644 --- a/README.md +++ b/README.md @@ -360,6 +360,7 @@ Access and analyze application monitoring data. Enables AI models to review erro - [zhsama/duckduckgo-mcp-server](https://github.com/zhsama/duckduckgo-mpc-server/) 📇 🏠 ☁ - This is a TypeScript-based MCP server that provides DuckDuckGo search functionality. - [vectorize-io/vectorize-mcp-server](https://github.com/vectorize-io/vectorize-mcp-server/) ☁ 📇 - [Vectorize](https://vectorize.io) MCP server for advanced retrieval, Private Deep Research, Anything-to-Markdown file extraction and text chunking. - [jae-jae/fetcher-mcp](https://github.com/jae-jae/fetcher-mcp) 📇 🏠 - MCP server for fetching web page content using Playwright headless browser, supporting Javascript rendering and intelligent content extraction, and outputting Markdown or HTML format. +- [jae-jae/g-search-mcp](https://github.com/jae-jae/g-search-mcp) 📇 🏠 - A powerful MCP server for Google search that enables parallel searching with multiple keywords simultaneously. ### 🔒 Security From 14b56de18d8e685c145cdcbbbe4b7102d380a049 Mon Sep 17 00:00:00 2001 From: Abhishek choraria Date: Mon, 31 Mar 2025 12:25:41 +0530 Subject: [PATCH 169/189] Added Manim MCP Server to Art & Culture section --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 947bc7b2..1566506a 100644 --- a/README.md +++ b/README.md @@ -110,6 +110,8 @@ Access and explore art collections, cultural heritage, and museum databases. Ena - [burningion/video-editing-mcp](https://github.com/burningion/video-editing-mcp) 📹🎬 - Add, Analyze, Search, and Generate Video Edits from your Video Jungle Collection - [r-huijts/rijksmuseum-mcp](https://github.com/r-huijts/rijksmuseum-mcp) 📇 ☁ - Rijksmuseum API integration for artwork search, details, and collections - [yuna0x0/anilist-mcp](https://github.com/yuna0x0/anilist-mcp) 📇 ☁ - A MCP server integrating AniList API for anime and manga information +- [Manim MCP Server](https://github.com/abhiemj/manim-mcp-server) 🐍🏠🪟🐧 - A local MCP server that generates animations using Manim. + ### ☁ Cloud Platforms From 03a7f1a0e86377b057b3cf5a03451be5f3e66f14 Mon Sep 17 00:00:00 2001 From: Abhishek choraria Date: Mon, 31 Mar 2025 12:35:48 +0530 Subject: [PATCH 170/189] Added Manim MCP Server to Art & Culture section --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1566506a..eb24b089 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ Access and explore art collections, cultural heritage, and museum databases. Ena - [burningion/video-editing-mcp](https://github.com/burningion/video-editing-mcp) 📹🎬 - Add, Analyze, Search, and Generate Video Edits from your Video Jungle Collection - [r-huijts/rijksmuseum-mcp](https://github.com/r-huijts/rijksmuseum-mcp) 📇 ☁ - Rijksmuseum API integration for artwork search, details, and collections - [yuna0x0/anilist-mcp](https://github.com/yuna0x0/anilist-mcp) 📇 ☁ - A MCP server integrating AniList API for anime and manga information -- [Manim MCP Server](https://github.com/abhiemj/manim-mcp-server) 🐍🏠🪟🐧 - A local MCP server that generates animations using Manim. +- [abhiemj/manim-mcp-server](https://github.com/abhiemj/manim-mcp-server) 🐍🏠🪟🐧 - A local MCP server that generates animations using Manim. ### ☁ Cloud Platforms From f24175c437429875ecf7012c911559d781dfe0b5 Mon Sep 17 00:00:00 2001 From: Thai Nguyen Hung Date: Mon, 31 Mar 2025 15:26:08 +0700 Subject: [PATCH 171/189] feat: add bruno-mcp server to README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 947bc7b2..5097b105 100644 --- a/README.md +++ b/README.md @@ -241,6 +241,7 @@ Tools and integrations that enhance the development workflow and environment man - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - An implementation of Claude Code capabilities using MCP, enabling AI code understanding, modification, and project analysis with comprehensive tool support. - [gofireflyio/firefly-mcp](https://github.com/gofireflyio/firefly-mcp) 🎖 📇 ☁ - Integrates, discovers, manages, and codifies cloud resources with [Firefly](https://firefly.ai). - [yWorks/mcp-typescribe](https://github.com/yWorks/mcp-typescribe) 📇 🏠 - MCP server that provides Typescript API information efficiently to the agent to enable it to work with untrained APIs +- [hungthai1401/bruno-mcp](https://github.com/hungthai1401/bruno-mcp) 📇 🏠 - A MCP server for interacting with [Bruno API Client](https://www.usebruno.com/). ### 🧮 Data Science Tools From b06b5f33a80d0028d378fb1e2963f39f52bb5c22 Mon Sep 17 00:00:00 2001 From: Ian Borla Date: Mon, 31 Mar 2025 17:01:54 +0800 Subject: [PATCH 172/189] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 947bc7b2..63557e75 100644 --- a/README.md +++ b/README.md @@ -178,6 +178,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [@fireproof-storage/mcp-database-server](https://github.com/fireproof-storage/mcp-database-server) 📇 ☁ - Fireproof ledger database with multi-user sync - [designcomputer/mysql_mcp_server](https://github.com/designcomputer/mysql_mcp_server) 🐍 🏠 - MySQL database integration with configurable access controls, schema inspection, and comprehensive security guidelines - [f4ww4z/mcp-mysql-server](https://github.com/f4ww4z/mcp-mysql-server) 🐍 🏠 - Node.js-based MySQL database integration that provides secure MySQL database operations +- [@benborla29/mcp-server-mysql](https://github.com/benborla/mcp-mysql-server) ☁🏠 - MySQL database integration in NodeJS with configurable access controls and schema inspection - [FreePeak/db-mcp-server](https://github.com/FreePeak/db-mcp-server) 🏎 🏠 – A high-performance multi-database MCP server built with Golang, supporting MySQL & PostgreSQL (NoSQL coming soon). Includes built-in tools for query execution, transaction management, schema exploration, query building, and performance analysis, with seamless Cursor integration for enhanced database workflows. - [@modelcontextprotocol/server-postgres](https://github.com/modelcontextprotocol/servers/tree/main/src/postgres) 📇 🏠 - PostgreSQL database integration with schema inspection and query capabilities - [@modelcontextprotocol/server-sqlite](https://github.com/modelcontextprotocol/servers/tree/main/src/sqlite) 🐍 🏠 - SQLite database operations with built-in analysis features From ad1ea9d462988110d492bb53252c815f4b224cf8 Mon Sep 17 00:00:00 2001 From: Ian Borla Date: Mon, 31 Mar 2025 17:02:27 +0800 Subject: [PATCH 173/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 63557e75..9d53e0ec 100644 --- a/README.md +++ b/README.md @@ -178,7 +178,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [@fireproof-storage/mcp-database-server](https://github.com/fireproof-storage/mcp-database-server) 📇 ☁ - Fireproof ledger database with multi-user sync - [designcomputer/mysql_mcp_server](https://github.com/designcomputer/mysql_mcp_server) 🐍 🏠 - MySQL database integration with configurable access controls, schema inspection, and comprehensive security guidelines - [f4ww4z/mcp-mysql-server](https://github.com/f4ww4z/mcp-mysql-server) 🐍 🏠 - Node.js-based MySQL database integration that provides secure MySQL database operations -- [@benborla29/mcp-server-mysql](https://github.com/benborla/mcp-mysql-server) ☁🏠 - MySQL database integration in NodeJS with configurable access controls and schema inspection +- [@benborla29/mcp-server-mysql](https://github.com/benborla/mcp-server-mysql) ☁🏠 - MySQL database integration in NodeJS with configurable access controls and schema inspection - [FreePeak/db-mcp-server](https://github.com/FreePeak/db-mcp-server) 🏎 🏠 – A high-performance multi-database MCP server built with Golang, supporting MySQL & PostgreSQL (NoSQL coming soon). Includes built-in tools for query execution, transaction management, schema exploration, query building, and performance analysis, with seamless Cursor integration for enhanced database workflows. - [@modelcontextprotocol/server-postgres](https://github.com/modelcontextprotocol/servers/tree/main/src/postgres) 📇 🏠 - PostgreSQL database integration with schema inspection and query capabilities - [@modelcontextprotocol/server-sqlite](https://github.com/modelcontextprotocol/servers/tree/main/src/sqlite) 🐍 🏠 - SQLite database operations with built-in analysis features From 3c63bc47f81699ea77f8b915e9bfcd7ba1c7691f Mon Sep 17 00:00:00 2001 From: ddukbg <32587132+ddukbg@users.noreply.github.com> Date: Mon, 31 Mar 2025 18:52:58 +0900 Subject: [PATCH 174/189] Update GHES MCP --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 947bc7b2..8662f4e8 100644 --- a/README.md +++ b/README.md @@ -395,6 +395,8 @@ Interact with Git repositories and version control platforms. Enables repository - [@oschina/mcp-gitee](https://github.com/oschina/gitee) 🏎 ☁ 🏠 - Gitee API integration, repository, issue, and pull request management, and more. - [@modelcontextprotocol/server-git](https://github.com/modelcontextprotocol/servers/tree/main/src/git) 🐍 🏠 - Direct Git repository operations including reading, searching, and analyzing local repositories - [adhikasp/mcp-git-ingest](https://github.com/adhikasp/mcp-git-ingest) 🐍 🏠 - Read and analyze GitHub repositories with your LLM +- [ddukbg/github-enterprise-mcp](https://github.com/ddukbg/github-enterprise-mcp) 📇 ☁ 🏠 - MCP server for GitHub Enterprise API integration + ### 🛠 Other Tools and Integrations From 06fd68136dfefabb13299b92a6301498c8cd0365 Mon Sep 17 00:00:00 2001 From: Paulo Taylor Date: Mon, 31 Mar 2025 11:54:06 +0100 Subject: [PATCH 175/189] Add new VOYP MCP server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 947bc7b2..a970f03e 100644 --- a/README.md +++ b/README.md @@ -483,6 +483,7 @@ Interact with Git repositories and version control platforms. Enables repository - [quarkiverse/quarkus-mcp-server](https://github.com/quarkiverse/quarkus-mcp-server) ☕ - Java SDK for building MCP servers using Quarkus. - [lastmile-ai/mcp-agent](https://github.com/lastmile-ai/mcp-agent) 🀖 🔌 - Build effective agents with MCP servers using simple, composable patterns. - [mullerhai/sakura-mcp](https://github.com/mullerhai/sakura-mcp) 🊀 ☕ - Scala MCP Framework for Build effective agents with MCP servers and MCP clients shade from modelcontextprotocol.io. +- [paulotaylor/voyp-mcp](https://github.com/paulotaylor/voyp-mcp) - VOYP - Voice Over Your Phone MCP Server for making calls. ## Utilities From 0f023a339700b391d635a429b0f2ca7d64668e86 Mon Sep 17 00:00:00 2001 From: SaintDoresh Date: Mon, 31 Mar 2025 13:24:15 +0100 Subject: [PATCH 176/189] Add Weather MCP, Crypto Trader MCP, and YFinance Trader MCP to appropriate sections --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 947bc7b2..47863158 100644 --- a/README.md +++ b/README.md @@ -264,8 +264,10 @@ Provides direct access to local file systems with configurable permissions. Enab ### 💰 Finance & Fintech -Financial data access and cryptocurrency market information. Enables querying real-time market data, crypto prices, and financial analytics. +Financial data access and analysis tools. Enables AI models to work with market data, trading platforms, and financial information. +- [@SaintDoresh/Crypto-Trader-MCP-ClaudeDesktop](https://github.com/SaintDoresh/Crypto-Trader-MCP-ClaudeDesktop.git) 🐍 ☁ - An MCP tool that provides cryptocurrency market data using the CoinGecko API. +- [@SaintDoresh/YFinance-Trader-MCP-ClaudeDesktop](https://github.com/SaintDoresh/YFinance-Trader-MCP-ClaudeDesktop.git) 🐍 ☁ - An MCP tool that provides stock market data and analysis using the Yahoo Finance API. - [heurist-network/heurist-mesh-mcp-server](https://github.com/heurist-network/heurist-mesh-mcp-server) 🎖 ⛅ 🏠 🐍 - Access specialized web3 AI agents for blockchain analysis, smart contract security auditing, token metrics evaluation, and on-chain interactions through the Heurist Mesh network. Provides comprehensive tools for DeFi analysis, NFT valuation, and transaction monitoring across multiple blockchains - [@base/base-mcp](https://github.com/base/base-mcp) 🎖 📇 ☁ - Base Network integration for onchain tools, allowing interaction with Base Network and Coinbase API for wallet management, fund transfers, smart contracts, and DeFi operations - [QuantGeekDev/coincap-mcp](https://github.com/QuantGeekDev/coincap-mcp) 📇 ☁ - Real-time cryptocurrency market data integration using CoinCap's public API, providing access to crypto prices and market information without API keys @@ -308,8 +310,9 @@ Persistent memory storage using knowledge graph structures. Enables AI models to ### 🗺 Location Services -Geographic and location-based services integration. Enables access to mapping data, directions, and place information. +Location-based services and mapping tools. Enables AI models to work with geographic data, weather information, and location-based analytics. +- [@SaintDoresh/Weather-MCP-ClaudeDesktop](https://github.com/SaintDoresh/Weather-MCP-ClaudeDesktop.git) 🐍 ☁ - An MCP tool that provides real-time weather data, forecasts, and historical weather information using the OpenWeatherMap API. - [@modelcontextprotocol/server-google-maps](https://github.com/modelcontextprotocol/servers/tree/main/src/google-maps) 📇 ☁ - Google Maps integration for location services, routing, and place details - [SecretiveShell/MCP-timeserver](https://github.com/SecretiveShell/MCP-timeserver) 🐍 🏠 - Access the time in any timezone and get the current local time - [webcoderz/MCP-Geo](https://github.com/webcoderz/MCP-Geo) 🐍 🏠 - Geocoding MCP server for nominatim, ArcGIS, Bing From 38fc469d541e5777621af82f2561c930d1384fda Mon Sep 17 00:00:00 2001 From: YuChenSSR Date: Mon, 31 Mar 2025 20:46:58 +0800 Subject: [PATCH 177/189] Add multi-ai-advisor mcp to README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 947bc7b2..8ee49b1c 100644 --- a/README.md +++ b/README.md @@ -241,6 +241,7 @@ Tools and integrations that enhance the development workflow and environment man - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - An implementation of Claude Code capabilities using MCP, enabling AI code understanding, modification, and project analysis with comprehensive tool support. - [gofireflyio/firefly-mcp](https://github.com/gofireflyio/firefly-mcp) 🎖 📇 ☁ - Integrates, discovers, manages, and codifies cloud resources with [Firefly](https://firefly.ai). - [yWorks/mcp-typescribe](https://github.com/yWorks/mcp-typescribe) 📇 🏠 - MCP server that provides Typescript API information efficiently to the agent to enable it to work with untrained APIs +- [YuChenSSR/multi-ai-advisor](https://github.com/YuChenSSR/multi-ai-advisor-mcp) 📇 🏠 - A Model Context Protocol (MCP) server that queries multiple Ollama models and combines their responses, providing diverse AI perspectives on a single question. ### 🧮 Data Science Tools From b14d09ce740a4302d17fd5b6b73380ffd7ab127d Mon Sep 17 00:00:00 2001 From: Julien Dubois Date: Mon, 31 Mar 2025 15:22:32 +0200 Subject: [PATCH 178/189] Add Julien Dubois' Azure CLI MCP server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 947bc7b2..84ae0088 100644 --- a/README.md +++ b/README.md @@ -117,6 +117,7 @@ Cloud platform service integration. Enables management and interaction with clou - [Cloudflare MCP Server](https://github.com/cloudflare/mcp-server-cloudflare) 🎖 📇 ☁ - Integration with Cloudflare services including Workers, KV, R2, and D1 - [alexei-led/aws-mcp-server](https://github.com/alexei-led/aws-mcp-server) 🐍 ☁ - A lightweight but powerful server that enables AI assistants to execute AWS CLI commands, use Unix pipes, and apply prompt templates for common AWS tasks in a safe Docker environment with multi-architecture support +- [jdubois/azure-cli-mcp](https://github.com/jdubois/azure-cli-mcp) - A wrapper around the Azure CLI command line that allows you to talk directly to Azure - [Kubernetes MCP Server](https://github.com/strowk/mcp-k8s-go) - 🏎 ☁/🏠 Kubernetes cluster operations through MCP - [@flux159/mcp-server-kubernetes](https://github.com/Flux159/mcp-server-kubernetes) - 📇 ☁/🏠 Typescript implementation of Kubernetes cluster operations for pods, deployments, services. - [@manusa/Kubernetes MCP Server](https://github.com/manusa/kubernetes-mcp-server) - 🏎 🏠 A powerful Kubernetes MCP server with additional support for OpenShift. Besides providing CRUD operations for **any** Kubernetes resource, this server provides specialized tools to interact with your cluster. From 3033e81f77d3d4bb0695ee5219f805927b4e6fb0 Mon Sep 17 00:00:00 2001 From: stephen37 Date: Mon, 31 Mar 2025 16:18:54 +0200 Subject: [PATCH 179/189] Add new Milvus Server --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 947bc7b2..a83ee481 100644 --- a/README.md +++ b/README.md @@ -207,6 +207,9 @@ Secure database access with schema inspection capabilities. Enables querying and - [idoru/influxdb-mcp-server](https://github.com/idoru/influxdb-mcp-server) 📇 ☁ 🏠 - Run queries against InfluxDB OSS API v2. - [xing5/mcp-google-sheets](https://github.com/xing5/mcp-google-sheets) 🐍 ☁ - A Model Context Protocol server for interacting with Google Sheets. This server provides tools to create, read, update, and manage spreadsheets through the Google Sheets API. - [qdrant/mcp-server-qdrant](https://github.com/qdrant/mcp-server-qdrant) 🐍 🏠 - A Qdrant MCP server +- [zilliztech/mcp-server-milvus](https://github.com/zilliztech/mcp-server-milvus) 🐍 🏠 ☁ - MCP Server for Milvus / Zilliz, making it possible to interact with your database. + + ### 💻 Developer Tools From 804882789924d88092d010a7cff8e6f5107e81d0 Mon Sep 17 00:00:00 2001 From: Arjun Krishna <45014214+arjun-krishna1@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:22:59 -0400 Subject: [PATCH 180/189] Add WhatsApp MCP server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 947bc7b2..da2295f1 100644 --- a/README.md +++ b/README.md @@ -139,6 +139,7 @@ Integration with communication platforms for message management and channel oper - [zcaceres/gtasks-mcp](https://github.com/zcaceres/gtasks-mcp) - 📇 ☁ - An MCP server to Manage Google Tasks - [hannesrudolph/imessage-query-fastmcp-mcp-server](https://github.com/hannesrudolph/imessage-query-fastmcp-mcp-server) 🐍 🏠 🍎 - An MCP server that provides safe access to your iMessage database through Model Context Protocol (MCP), enabling LLMs to query and analyze iMessage conversations with proper phone number validation and attachment handling +- [lharries/whatsapp-mcp](https://github.com/lharries/whatsapp-mcp) 🐍 🏎 - An MCP server for searching your personal WhatsApp messages, contacts and sending messages to individuals or groups - [@modelcontextprotocol/server-slack](https://github.com/modelcontextprotocol/servers/tree/main/src/slack) 📇 ☁ - Slack workspace integration for channel management and messaging - [@modelcontextprotocol/server-bluesky](https://github.com/keturiosakys/bluesky-context-server) 📇 ☁ - Bluesky instance integration for querying and interaction - [MarkusPfundstein/mcp-gsuite](https://github.com/MarkusPfundstein/mcp-gsuite) - 🐍 ☁ - Integration with gmail and Google Calendar. From 2b6a90cf091c9d9b4b1003c3c106d0f3de123c29 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 09:33:04 -0600 Subject: [PATCH 181/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eb24b089..22bed45c 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ Access and explore art collections, cultural heritage, and museum databases. Ena - [burningion/video-editing-mcp](https://github.com/burningion/video-editing-mcp) 📹🎬 - Add, Analyze, Search, and Generate Video Edits from your Video Jungle Collection - [r-huijts/rijksmuseum-mcp](https://github.com/r-huijts/rijksmuseum-mcp) 📇 ☁ - Rijksmuseum API integration for artwork search, details, and collections - [yuna0x0/anilist-mcp](https://github.com/yuna0x0/anilist-mcp) 📇 ☁ - A MCP server integrating AniList API for anime and manga information -- [abhiemj/manim-mcp-server](https://github.com/abhiemj/manim-mcp-server) 🐍🏠🪟🐧 - A local MCP server that generates animations using Manim. +- [abhiemj/manim-mcp-server](https://github.com/abhiemj/manim-mcp-server) 🐍 🏠 🪟 🐧 - A local MCP server that generates animations using Manim. ### ☁ Cloud Platforms From 69f7eab6cc15478f22944326d33ebca913488156 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 09:34:40 -0600 Subject: [PATCH 182/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9d53e0ec..23aea52d 100644 --- a/README.md +++ b/README.md @@ -178,7 +178,7 @@ Secure database access with schema inspection capabilities. Enables querying and - [@fireproof-storage/mcp-database-server](https://github.com/fireproof-storage/mcp-database-server) 📇 ☁ - Fireproof ledger database with multi-user sync - [designcomputer/mysql_mcp_server](https://github.com/designcomputer/mysql_mcp_server) 🐍 🏠 - MySQL database integration with configurable access controls, schema inspection, and comprehensive security guidelines - [f4ww4z/mcp-mysql-server](https://github.com/f4ww4z/mcp-mysql-server) 🐍 🏠 - Node.js-based MySQL database integration that provides secure MySQL database operations -- [@benborla29/mcp-server-mysql](https://github.com/benborla/mcp-server-mysql) ☁🏠 - MySQL database integration in NodeJS with configurable access controls and schema inspection +- [@benborla29/mcp-server-mysql](https://github.com/benborla/mcp-server-mysql) ☁ 🏠 - MySQL database integration in NodeJS with configurable access controls and schema inspection - [FreePeak/db-mcp-server](https://github.com/FreePeak/db-mcp-server) 🏎 🏠 – A high-performance multi-database MCP server built with Golang, supporting MySQL & PostgreSQL (NoSQL coming soon). Includes built-in tools for query execution, transaction management, schema exploration, query building, and performance analysis, with seamless Cursor integration for enhanced database workflows. - [@modelcontextprotocol/server-postgres](https://github.com/modelcontextprotocol/servers/tree/main/src/postgres) 📇 🏠 - PostgreSQL database integration with schema inspection and query capabilities - [@modelcontextprotocol/server-sqlite](https://github.com/modelcontextprotocol/servers/tree/main/src/sqlite) 🐍 🏠 - SQLite database operations with built-in analysis features From 5f3921c5b9853b42e058f8a56f01c87f32d72a68 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 09:52:21 -0600 Subject: [PATCH 183/189] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7731154a..893d34f9 100644 --- a/README.md +++ b/README.md @@ -103,8 +103,8 @@ Web content access and automation capabilities. Enables searching, scraping, and Access and explore art collections, cultural heritage, and museum databases. Enables AI models to search and analyze artistic and cultural content. -- [burningion/video-editing-mcp](https://github.com/burningion/video-editing-mcp) 📹🎬 - Add, Analyze, Search, and Generate Video Edits from your Video Jungle Collection -- [samuelgursky/davinci-resolve-mcp](https://github.com/samuelgursky/davinci-resolve-mcp) 📹🎬 - MCP server integration for DaVinci Resolve providing powerful tools for video editing, color grading, media management, and project control +- [burningion/video-editing-mcp](https://github.com/burningion/video-editing-mcp) 🐍 - Add, Analyze, Search, and Generate Video Edits from your Video Jungle Collection +- [samuelgursky/davinci-resolve-mcp](https://github.com/samuelgursky/davinci-resolve-mcp) 🐍 - MCP server integration for DaVinci Resolve providing powerful tools for video editing, color grading, media management, and project control - [r-huijts/rijksmuseum-mcp](https://github.com/r-huijts/rijksmuseum-mcp) 📇 ☁ - Rijksmuseum API integration for artwork search, details, and collections - [yuna0x0/anilist-mcp](https://github.com/yuna0x0/anilist-mcp) 📇 ☁ - A MCP server integrating AniList API for anime and manga information From 4e61c5d90197fa97c32db7b7ba3c3e4b724cc221 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 09:54:48 -0600 Subject: [PATCH 184/189] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 25efc966..fcaa1065 100644 --- a/README.md +++ b/README.md @@ -90,16 +90,16 @@ Checkout [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) Web content access and automation capabilities. Enables searching, scraping, and processing web content in AI-friendly formats. -- [@browserbase/mcp-server-browserbase](https://github.com/browserbase/mcp-server-browserbase) 🎖📂📇 - Automate browser interactions in the cloud (e.g. web navigation, data extraction, form filling, and more) -- [@blackwhite084/playwright-plus-python-mcp](https://github.com/blackwhite084/playwright-plus-python-mcp) 🌐 - An MCP python server using Playwright for browser automation,more suitable for llm -- [@executeautomation/playwright-mcp-server](https://github.com/executeautomation/mcp-playwright) 🌐⚡ - An MCP server using Playwright for browser automation and webscrapping -- [@automatalabs/mcp-server-playwright](https://github.com/Automata-Labs-team/MCP-Server-Playwright) 🌐 🖱 - An MCP server for browser automation using Playwright +- [@browserbase/mcp-server-browserbase](https://github.com/browserbase/mcp-server-browserbase) 🎖 📇 - Automate browser interactions in the cloud (e.g. web navigation, data extraction, form filling, and more) +- [@blackwhite084/playwright-plus-python-mcp](https://github.com/blackwhite084/playwright-plus-python-mcp) 🐍 - An MCP python server using Playwright for browser automation,more suitable for llm +- [@executeautomation/playwright-mcp-server](https://github.com/executeautomation/mcp-playwright) 📇 - An MCP server using Playwright for browser automation and webscrapping +- [@automatalabs/mcp-server-playwright](https://github.com/Automata-Labs-team/MCP-Server-Playwright) 🐍 - An MCP server for browser automation using Playwright - [@modelcontextprotocol/server-puppeteer](https://github.com/modelcontextprotocol/servers/tree/main/src/puppeteer) 📇 🏠 - Browser automation for web scraping and interaction - [@kimtaeyoon83/mcp-server-youtube-transcript](https://github.com/kimtaeyoon83/mcp-server-youtube-transcript) 📇 ☁ - Fetch YouTube subtitles and transcripts for AI analysis - [@recursechat/mcp-server-apple-shortcuts](https://github.com/recursechat/mcp-server-apple-shortcuts) 📇 🏠 🍎 - An MCP Server Integration with Apple Shortcuts - [@kimtth/mcp-aoai-web-browsing](https://github.com/kimtth/mcp-aoai-web-browsing) 🐍 🏠 - A `minimal` server/client MCP implementation using Azure OpenAI and Playwright. - [@pskill9/web-search](https://github.com/pskill9/web-search) 📇 🏠 - An MCP server that enables free web searching using Google search results, with no API keys required. -- [@co-browser/browser-use-mcp-server](https://github.com/co-browser/browser-use-mcp-server) 🌐🔮 - browser-use packaged as an MCP server with SSE transport. includes a dockerfile to run chromium in docker + a vnc server. +- [@co-browser/browser-use-mcp-server](https://github.com/co-browser/browser-use-mcp-server) 🐍 - browser-use packaged as an MCP server with SSE transport. includes a dockerfile to run chromium in docker + a vnc server. ### 🎚 Art & Culture From 4aa18716c1c10f97e7efcf96dceb2ffc04d836e7 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 09:55:26 -0600 Subject: [PATCH 185/189] Update README.md --- README.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index fcaa1065..7b61e1f8 100644 --- a/README.md +++ b/README.md @@ -89,17 +89,16 @@ Checkout [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) Web content access and automation capabilities. Enables searching, scraping, and processing web content in AI-friendly formats. - -- [@browserbase/mcp-server-browserbase](https://github.com/browserbase/mcp-server-browserbase) 🎖 📇 - Automate browser interactions in the cloud (e.g. web navigation, data extraction, form filling, and more) -- [@blackwhite084/playwright-plus-python-mcp](https://github.com/blackwhite084/playwright-plus-python-mcp) 🐍 - An MCP python server using Playwright for browser automation,more suitable for llm -- [@executeautomation/playwright-mcp-server](https://github.com/executeautomation/mcp-playwright) 📇 - An MCP server using Playwright for browser automation and webscrapping - [@automatalabs/mcp-server-playwright](https://github.com/Automata-Labs-team/MCP-Server-Playwright) 🐍 - An MCP server for browser automation using Playwright -- [@modelcontextprotocol/server-puppeteer](https://github.com/modelcontextprotocol/servers/tree/main/src/puppeteer) 📇 🏠 - Browser automation for web scraping and interaction -- [@kimtaeyoon83/mcp-server-youtube-transcript](https://github.com/kimtaeyoon83/mcp-server-youtube-transcript) 📇 ☁ - Fetch YouTube subtitles and transcripts for AI analysis -- [@recursechat/mcp-server-apple-shortcuts](https://github.com/recursechat/mcp-server-apple-shortcuts) 📇 🏠 🍎 - An MCP Server Integration with Apple Shortcuts -- [@kimtth/mcp-aoai-web-browsing](https://github.com/kimtth/mcp-aoai-web-browsing) 🐍 🏠 - A `minimal` server/client MCP implementation using Azure OpenAI and Playwright. -- [@pskill9/web-search](https://github.com/pskill9/web-search) 📇 🏠 - An MCP server that enables free web searching using Google search results, with no API keys required. +- [@blackwhite084/playwright-plus-python-mcp](https://github.com/blackwhite084/playwright-plus-python-mcp) 🐍 - An MCP python server using Playwright for browser automation,more suitable for llm +- [@browserbase/mcp-server-browserbase](https://github.com/browserbase/mcp-server-browserbase) 🎖 📇 - Automate browser interactions in the cloud (e.g. web navigation, data extraction, form filling, and more) - [@co-browser/browser-use-mcp-server](https://github.com/co-browser/browser-use-mcp-server) 🐍 - browser-use packaged as an MCP server with SSE transport. includes a dockerfile to run chromium in docker + a vnc server. +- [@executeautomation/playwright-mcp-server](https://github.com/executeautomation/mcp-playwright) 📇 - An MCP server using Playwright for browser automation and webscrapping +- [@kimtaeyoon83/mcp-server-youtube-transcript](https://github.com/kimtaeyoon83/mcp-server-youtube-transcript) 📇 ☁ - Fetch YouTube subtitles and transcripts for AI analysis +- [@kimtth/mcp-aoai-web-browsing](https://github.com/kimtth/mcp-aoai-web-browsing) 🐍 🏠 - A `minimal` server/client MCP implementation using Azure OpenAI and Playwright. +- [@modelcontextprotocol/server-puppeteer](https://github.com/modelcontextprotocol/servers/tree/main/src/puppeteer) 📇 🏠 - Browser automation for web scraping and interaction +- [@pskill9/web-search](https://github.com/pskill9/web-search) 📇 🏠 - An MCP server that enables free web searching using Google search results, with no API keys required. +- [@recursechat/mcp-server-apple-shortcuts](https://github.com/recursechat/mcp-server-apple-shortcuts) 📇 🏠 🍎 - An MCP Server Integration with Apple Shortcuts ### 🎚 Art & Culture From b84b76fd40db76c4be4af4f1503988dda0b32200 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:01:06 -0600 Subject: [PATCH 186/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6ecf521c..d487c79a 100644 --- a/README.md +++ b/README.md @@ -198,7 +198,7 @@ Integrations and tools designed to simplify data exploration, analysis and enhan - [ChronulusAI/chronulus-mcp](https://github.com/ChronulusAI/chronulus-mcp) 🐍 ☁ - Predict anything with Chronulus AI forecasting and prediction agents. - [zcaceres/markdownify-mcp](https://github.com/zcaceres/markdownify-mcp) 📇 🏠 - An MCP server to convert almost any file or web content into Markdown - [@reading-plus-ai/mcp-server-data-exploration](https://github.com/reading-plus-ai/mcp-server-data-exploration) 🐍 ☁ - Enables autonomous data exploration on .csv-based datasets, providing intelligent insights with minimal effort. -- [zenml-io/mcp-zenml](https://github.com/zenml-io/mcp-zenml) | 🐍 🏠 ☁ - An MCP server to connect with your [ZenML](https://www.zenml.io) MLOps and LLMOps pipelines +- [zenml-io/mcp-zenml](https://github.com/zenml-io/mcp-zenml) 🐍 🏠 ☁ - An MCP server to connect with your [ZenML](https://www.zenml.io) MLOps and LLMOps pipelines ### 📂 File Systems From c4a40e988032c8b7e3742f9059bb315c4be3543c Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:03:42 -0600 Subject: [PATCH 187/189] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a7f703de..42effbeb 100644 --- a/README.md +++ b/README.md @@ -184,7 +184,7 @@ Tools and integrations that enhance the development workflow and environment man - [r-huijts/xcode-mcp-server](https://github.com/r-huijts/xcode-mcp-server) 📇 🏠 🍎 - Xcode integration for project management, file operations, and build automation - [snaggle-ai/openapi-mcp-server](https://github.com/snaggle-ai/openapi-mcp-server) 🏎 🏠 - Connect any HTTP/REST API server using an Open API spec (v3) - [jetbrains/mcpProxy](https://github.com/JetBrains/mcpProxy) 🎖 📇 🏠 - Connect to JetBrains IDE -- [VSCode Devtools](https://github.com/biegehydra/BifrostMCP) 📇🛠 - Connect to VSCode ide and use semantic tools like `find_usages` +- [VSCode Devtools](https://github.com/biegehydra/BifrostMCP) 📇 - Connect to VSCode ide and use semantic tools like `find_usages` - [tumf/mcp-text-editor](https://github.com/tumf/mcp-text-editor) 🐍 🏠 - A line-oriented text file editor. Optimized for LLM tools with efficient partial file access to minimize token usage. - [@joshuarileydev/simulator-mcp-server](https://github.com/JoshuaRileyDev/simulator-mcp-server) 📇 🏠 - An MCP server to control iOS Simulators - [@joshuarileydev/app-store-connect-mcp-server](https://github.com/JoshuaRileyDev/app-store-connect-mcp-server) 📇 🏠 - An MCP server to communicate with the App Store Connect API for iOS Developers From b9b49e1a12d81d8f373191e93043c4026a29dfcc Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:05:18 -0600 Subject: [PATCH 188/189] Update README-zh.md --- README-zh.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README-zh.md b/README-zh.md index ed6c49a4..d2b58d9c 100644 --- a/README-zh.md +++ b/README-zh.md @@ -105,8 +105,8 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [Cloudflare MCP Server](https://github.com/cloudflare/mcp-server-cloudflare) 🎖 📇 ☁ - 侎 Cloudflare 服务集成包括 Workers、KV、R2 和 D1 - [Kubernetes MCP Server](https://github.com/strowk/mcp-k8s-go) - 🏎 ☁ 通过 MCP 操䜜 Kubernetes 集矀 - [@flux159/mcp-server-kubernetes](https://github.com/Flux159/mcp-server-kubernetes) - 📇 ☁/🏠 䜿甚 Typescript 实现 Kubernetes 集矀䞭针对 pod、郚眲、服务的操䜜。 -- [johnneerdael/netskope-mcp](https://github.com/johnneerdael/netskope-mcp) 🔒 ☁ - 提䟛对 Netskope Private Access 环境䞭所有组件的访问权限包含诊细的讟眮信息和 LLM 䜿甚瀺䟋。 -- [bright8192/esxi-mcp-server](https://github.com/bright8192/esxi-mcp-server) 🐍 🔒 ☁ - 提䟛对 VMware ESXi/vCenter 管理服务噚提䟛简单的 REST API 接口来管理虚拟机。 +- [johnneerdael/netskope-mcp](https://github.com/johnneerdael/netskope-mcp) ☁ - 提䟛对 Netskope Private Access 环境䞭所有组件的访问权限包含诊细的讟眮信息和 LLM 䜿甚瀺䟋。 +- [bright8192/esxi-mcp-server](https://github.com/bright8192/esxi-mcp-server) 🐍 ☁ - 提䟛对 VMware ESXi/vCenter 管理服务噚提䟛简单的 REST API 接口来管理虚拟机。 ### 🖥 Command Line From c2976b70ea6fd441c586cc1f79bf2f0103e8517b Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:05:35 -0600 Subject: [PATCH 189/189] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 94cb9630..befa96fa 100644 --- a/README.md +++ b/README.md @@ -112,8 +112,8 @@ Cloud platform service integration. Enables management and interaction with clou - [Kubernetes MCP Server](https://github.com/strowk/mcp-k8s-go) - 🏎 ☁/🏠 Kubernetes cluster operations through MCP - [@flux159/mcp-server-kubernetes](https://github.com/Flux159/mcp-server-kubernetes) - 📇 ☁/🏠 Typescript implementation of Kubernetes cluster operations for pods, deployments, services. - [@manusa/Kubernetes MCP Server](https://github.com/manusa/kubernetes-mcp-server) - 🏎 🏠 A powerful Kubernetes MCP server with additional support for OpenShift. Besides providing CRUD operations for **any** Kubernetes resource, this server provides specialized tools to interact with your cluster. -- [johnneerdael/netskope-mcp](https://github.com/johnneerdael/netskope-mcp) 🔒 ☁ - An MCP to give access to all Netskope Private Access components within a Netskope Private Access environments including detailed setup information and LLM examples on usage. -- [bright8192/esxi-mcp-server](https://github.com/bright8192/esxi-mcp-server) 🐍 🔒 ☁ - A VMware ESXi/vCenter management server based on MCP (Model Control Protocol), providing simple REST API interfaces for virtual machine management. +- [johnneerdael/netskope-mcp](https://github.com/johnneerdael/netskope-mcp) ☁ - An MCP to give access to all Netskope Private Access components within a Netskope Private Access environments including detailed setup information and LLM examples on usage. +- [bright8192/esxi-mcp-server](https://github.com/bright8192/esxi-mcp-server) 🐍 ☁ - A VMware ESXi/vCenter management server based on MCP (Model Control Protocol), providing simple REST API interfaces for virtual machine management. ### 🖥 Command Line