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/275] 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/275] 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/275] 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/275] 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/275] 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/275] 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/275] 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/275] 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/275] 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/275] 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/275] 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/275] 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/275] 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/275] 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/275] 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/275] 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/275] 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/275] 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/275] 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/275] 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/275] 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 11fac32a215bcb627d7eabc5536cf2f614b5b794 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Hoelt Date: Thu, 13 Mar 2025 13:11:21 +0200 Subject: [PATCH 022/275] Add mcp-speach server, "speak" text using OpenAI's text-to-speech. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 054758bc..f1401f93 100644 --- a/README.md +++ b/README.md @@ -280,6 +280,7 @@ Interact with Git repositories and version control platforms. Enables repository ### 🛠 Other Tools and Integrations +- [j3k0/speech.sh](https://github.com/j3k0/speech.sh/blob/main/MCP_README.md) 🎚 🏠 - Let the agent speak things out loud, notify you when he's done working with a quick summary - [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 5589f5beebd97454736a43f7004e1fb6eb54e5df Mon Sep 17 00:00:00 2001 From: XGenerationLab Date: Thu, 13 Mar 2025 19:56:38 +0800 Subject: [PATCH 023/275] 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 024/275] 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 025/275] 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 026/275] 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 027/275] 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 028/275] 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 029/275] 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 030/275] 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 a929072fb289919370f803b56b0858f249cd0cc9 Mon Sep 17 00:00:00 2001 From: bart6114 Date: Fri, 14 Mar 2025 09:15:26 +0100 Subject: [PATCH 031/275] Update README.md add bart6114/my-bear-mcp-server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index eeb98ead..730957d5 100644 --- a/README.md +++ b/README.md @@ -324,6 +324,7 @@ Interact with Git repositories and version control platforms. Enables repository - [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 +- [bart6114/my-bear-mcp-server](https://github.com/bart6114/my-bear-mcp-server/) 🐻 🏠 - Allows to read notes and tags for the Bear Note taking app, through a direct integration with the Bear sqlitedb. - [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 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 032/275] 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 033/275] 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 f0c2a3d10ef5f7716e4d9e63552f9ba15783ac0f Mon Sep 17 00:00:00 2001 From: lloydzhou Date: Fri, 14 Mar 2025 21:55:41 +0800 Subject: [PATCH 034/275] add openai-websearch-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..b0ef9792 100644 --- a/README-ja.md +++ b/README-ja.md @@ -166,6 +166,7 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [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) 🐍 ☁ - Hacker Newsの怜玢、トップストヌリヌの取埗などを行うMCPサヌバヌ。 - [chanmeng/google-news-mcp-server](https://github.com/ChanMeng666/server-google-news) 📇 ☁ - 自動トピック分類、倚蚀語サポヌト、[SerpAPI](https://serpapi.com/)を通じたヘッドラむン、ストヌリヌ、関連トピックの包括的な怜玢機胜を備えたGoogle News統合。 +- [ConechoAI/openai-websearch-mcp](https://github.com/ConechoAI/openai-websearch-mcp/) 🐍 🏠 ☁ - OpenAI の組み蟌み `web_search` ツヌルを MCP サヌバヌに倉換しお䜿甚したす。 ### 🔒 セキュリティ diff --git a/README-zh.md b/README-zh.md index c4bcff23..9294be47 100644 --- a/README-zh.md +++ b/README-zh.md @@ -266,6 +266,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [erithwik/mcp-hn](https://github.com/erithwik/mcp-hn) 🐍 ☁ - 䞀䞪甚于搜玢 Hacker News、获取热闚故事等的 MCP 服务噚。 - [chanmeng/google-news-mcp-server](https://github.com/ChanMeng666/server-google-news) 📇 ☁ - Google News 集成具有自劚䞻题分类、倚语蚀支持以及通过 [SerpAPI](https://serpapi.com/) 提䟛的标题、故事和盞关䞻题的绌合搜玢功胜。 - [devflowinc/trieve](https://github.com/devflowinc/trieve/tree/main/clients/mcp-server) 🎖📇☁🏠 - 通过 [Trieve](https://trieve.ai) 爬取、嵌入、分块、搜玢和检玢数据集䞭的信息 +- [ConechoAI/openai-websearch-mcp](https://github.com/ConechoAI/openai-websearch-mcp/) 🐍 🏠 ☁ - 将OpenAI内眮的`web_search`工具封蜬成MCP服务噚䜿甚. ### 🔒 安党 diff --git a/README.md b/README.md index eeb98ead..08b9e24d 100644 --- a/README.md +++ b/README.md @@ -290,6 +290,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. +- [ConechoAI/openai-websearch-mcp](https://github.com/ConechoAI/openai-websearch-mcp/) 🐍 🏠 ☁ - This is a Python-based MCP server that provides OpenAI `web_search` build-in tool. ### 🔒 Security From 006abc7fbee7b4b384431097876a124c1ed4c2f5 Mon Sep 17 00:00:00 2001 From: fakepixels Date: Fri, 14 Mar 2025 10:06:38 -0400 Subject: [PATCH 035/275] 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 bc420218780de8bdcab1d18cc80cd8be9587a5bf Mon Sep 17 00:00:00 2001 From: exoticknight Date: Sat, 15 Mar 2025 01:49:36 +0800 Subject: [PATCH 036/275] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index eeb98ead..756aeaa6 100644 --- a/README.md +++ b/README.md @@ -220,6 +220,7 @@ Provides direct access to local file systems with configurable permissions. Enab - [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 - [Xuanwo/mcp-server-opendal](https://github.com/Xuanwo/mcp-server-opendal) 🐍 🏠 ☁ - Access any storage with Apache OpenDAL™ +- [exoticknight/mcp-file-merger](https://github.com/exoticknight/mcp-file-merger) 🏎 🏠 - File merger tool, suitable for AI chat length limits. ### 💰 Finance & Fintech From e41d67389fe0e9d0e34d57bcb23169ded8b5fb42 Mon Sep 17 00:00:00 2001 From: exoticknight Date: Sat, 15 Mar 2025 01:52:15 +0800 Subject: [PATCH 037/275] Update README-zh.md --- README-zh.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README-zh.md b/README-zh.md index c4bcff23..92d5f70f 100644 --- a/README-zh.md +++ b/README-zh.md @@ -201,6 +201,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [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 共享代码䞊䞋文 - [Xuanwo/mcp-server-opendal](https://github.com/Xuanwo/mcp-server-opendal) 🐍 🏠 ☁ - 䜿甚 Apache OpenDAL™ 访问任䜕存傚 +- [exoticknight/mcp-file-merger](https://github.com/exoticknight/mcp-file-merger) 📇 🏠 - 文件合并工具适配AI长床限制 ### 💰 金融 & 金融科技 From 278456f73a792e666e3f2a3631e8cbb413453bd7 Mon Sep 17 00:00:00 2001 From: exoticknight Date: Sat, 15 Mar 2025 01:53:25 +0800 Subject: [PATCH 038/275] Update README-ja.md --- README-ja.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README-ja.md b/README-ja.md index ee389301..a1b341aa 100644 --- a/README-ja.md +++ b/README-ja.md @@ -128,6 +128,7 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [@modelcontextprotocol/server-google-drive](https://github.com/modelcontextprotocol/servers/tree/main/src/gdrive) 📇 ☁ - ファむルのリスト、読み取り、怜玢のためのGoogle Drive統合 - [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™ でどのストレヌゞにもアクセスできたす +- [exoticknight/mcp-file-merger](https://github.com/exoticknight/mcp-file-merger) 📇 🏠 - AI Chatの長さ制限に適応するファむルマヌゞツヌル ### 🧠 知識ず蚘憶 From 36582b26e6c43d5c2fccee0549ffcfde5259928f Mon Sep 17 00:00:00 2001 From: exoticknight Date: Sat, 15 Mar 2025 01:53:48 +0800 Subject: [PATCH 039/275] 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 92d5f70f..b2ec6580 100644 --- a/README-zh.md +++ b/README-zh.md @@ -201,7 +201,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [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 共享代码䞊䞋文 - [Xuanwo/mcp-server-opendal](https://github.com/Xuanwo/mcp-server-opendal) 🐍 🏠 ☁ - 䜿甚 Apache OpenDAL™ 访问任䜕存傚 -- [exoticknight/mcp-file-merger](https://github.com/exoticknight/mcp-file-merger) 📇 🏠 - 文件合并工具适配AI长床限制 +- [exoticknight/mcp-file-merger](https://github.com/exoticknight/mcp-file-merger) 📇 🏠 - 文件合并工具适配AI Chat长床限制 ### 💰 金融 & 金融科技 From b316f75c8f7d1035e6348975901a9f4a7ddcc8c9 Mon Sep 17 00:00:00 2001 From: Yaroslav Boiko Date: Fri, 14 Mar 2025 19:43:41 +0100 Subject: [PATCH 040/275] 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 041/275] 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 807e27a8b3d7ee9841f0ca40dc546867b0cdc393 Mon Sep 17 00:00:00 2001 From: Roland <33993199+rolznz@users.noreply.github.com> Date: Sat, 15 Mar 2025 12:31:18 +0700 Subject: [PATCH 042/275] Add new NWC MCP Server --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index add274dd..b86af2cb 100644 --- a/README.md +++ b/README.md @@ -233,6 +233,8 @@ 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. +- [getalby/nwc-mcp-server](https://github.com/getalby/nwc-mcp-server) 📇 🏠 - Bitcoin Lightning wallet integration powered by Nostr Wallet Connect. + ### 🧠 Knowledge & Memory From 8c0f5c44010f9d097b7065e117c9c3f3bf4bc9b2 Mon Sep 17 00:00:00 2001 From: Roland <33993199+rolznz@users.noreply.github.com> Date: Sat, 15 Mar 2025 12:33:34 +0700 Subject: [PATCH 043/275] fix: order --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b86af2cb..47585d10 100644 --- a/README.md +++ b/README.md @@ -231,9 +231,9 @@ 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 +- [getalby/nwc-mcp-server](https://github.com/getalby/nwc-mcp-server) 📇 🏠 - Bitcoin Lightning wallet integration powered by Nostr Wallet Connect - [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. -- [getalby/nwc-mcp-server](https://github.com/getalby/nwc-mcp-server) 📇 🏠 - Bitcoin Lightning wallet integration powered by Nostr Wallet Connect. ### 🧠 Knowledge & Memory From fe7fb5e9f442f3208af67b5548b4cd8e9ec1d5bd Mon Sep 17 00:00:00 2001 From: Roland <33993199+rolznz@users.noreply.github.com> Date: Sat, 15 Mar 2025 12:34:35 +0700 Subject: [PATCH 044/275] fix: remove new line --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 47585d10..45fb2424 100644 --- a/README.md +++ b/README.md @@ -235,7 +235,6 @@ 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. - ### 🧠 Knowledge & Memory Persistent memory storage using knowledge graph structures. Enables AI models to maintain and query structured information across sessions. From 3d97c57f976c3c6ec2668077e55965fd87308391 Mon Sep 17 00:00:00 2001 From: Mahesh P Chandran Date: Sat, 15 Mar 2025 07:42:58 +0000 Subject: [PATCH 045/275] 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 c68bb18f7d50b6cc07979819bea6f810f0137a24 Mon Sep 17 00:00:00 2001 From: isqlmap Date: Sat, 15 Mar 2025 17:59:11 +0800 Subject: [PATCH 046/275] Add ZoomEye MCP Server --- README-zh.md | 2 +- README.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README-zh.md b/README-zh.md index c4bcff23..696d647c 100644 --- a/README-zh.md +++ b/README-zh.md @@ -266,7 +266,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [erithwik/mcp-hn](https://github.com/erithwik/mcp-hn) 🐍 ☁ - 䞀䞪甚于搜玢 Hacker News、获取热闚故事等的 MCP 服务噚。 - [chanmeng/google-news-mcp-server](https://github.com/ChanMeng666/server-google-news) 📇 ☁ - Google News 集成具有自劚䞻题分类、倚语蚀支持以及通过 [SerpAPI](https://serpapi.com/) 提䟛的标题、故事和盞关䞻题的绌合搜玢功胜。 - [devflowinc/trieve](https://github.com/devflowinc/trieve/tree/main/clients/mcp-server) 🎖📇☁🏠 - 通过 [Trieve](https://trieve.ai) 爬取、嵌入、分块、搜玢和检玢数据集䞭的信息 - +- [zoomeye-ai/mcp_zoomeye](https://github.com/zoomeye-ai/mcp_zoomeye) 📇 ☁ - 䜿甚 ZoomEye API 搜玢党球眑络空闎资产 ### 🔒 安党 - [dnstwist MCP Server](https://github.com/BurtTheCoder/mcp-dnstwist) 📇🪟☁ - dnstwist 的 MCP 服务噚这是䞀䞪区倧的 DNS 暡糊测试工具可垮助检测域名抢泚、钓鱌和䌁䞚窃密行䞺 diff --git a/README.md b/README.md index add274dd..c59d8743 100644 --- a/README.md +++ b/README.md @@ -291,6 +291,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. +- [zoomeye-ai/mcp_zoomeye](https://github.com/zoomeye-ai/mcp_zoomeye) 📇 ☁ - Querying network asset information by ZoomEye MCP Server ### 🔒 Security From 45636ccf1f62882428f8db6d8eae5ae32918fd2b Mon Sep 17 00:00:00 2001 From: Sergey Bunas Date: Sat, 15 Mar 2025 18:19:09 +0800 Subject: [PATCH 047/275] 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 048/275] 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 049/275] 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 050/275] 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 051/275] 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 052/275] 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 053/275] 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 054/275] 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 055/275] 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 056/275] 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 057/275] 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 058/275] 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 059/275] 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 060/275] 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 061/275] 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 062/275] 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 5ab4ec8ca6f5353c9ee4906e1dd086f4825f1887 Mon Sep 17 00:00:00 2001 From: bart6114 Date: Mon, 17 Mar 2025 08:42:16 +0100 Subject: [PATCH 063/275] Update README.md Fixed emoji usage. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 730957d5..b113b14e 100644 --- a/README.md +++ b/README.md @@ -324,7 +324,7 @@ Interact with Git repositories and version control platforms. Enables repository - [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 -- [bart6114/my-bear-mcp-server](https://github.com/bart6114/my-bear-mcp-server/) 🐻 🏠 - Allows to read notes and tags for the Bear Note taking app, through a direct integration with the Bear sqlitedb. +- [bart6114/my-bear-mcp-server](https://github.com/bart6114/my-bear-mcp-server/) 📇 🏠 🍎 - Allows to read notes and tags for the Bear Note taking app, through a direct integration with Bear's sqlitedb. - [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 From e4bd6f5c7402a49dddbf4b7ed92a180445c8086e Mon Sep 17 00:00:00 2001 From: Frad LEE Date: Sat, 15 Feb 2025 02:29:06 +0800 Subject: [PATCH 064/275] docs: add `mcp-server-apple-reminders` and update browser automation 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 fdf69ce6..eadb8c43 100644 --- a/README-ja.md +++ b/README-ja.md @@ -64,6 +64,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実装。 +- [@fradser/mcp-server-apple-reminders](https://github.com/FradSer/mcp-server-apple-reminders) 📇 🏠 🍎 - macOS 甚の Apple Reminders ず統合された MCP サヌバヌです。 ### ☁ クラりドプラットフォヌム diff --git a/README-zh.md b/README-zh.md index 72cb2798..7fab4cc4 100644 --- a/README-zh.md +++ b/README-zh.md @@ -86,6 +86,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [@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) 📇 ☁ - 获取 YouTube 字幕和文字记圕以䟛 AI 分析 - [@recursechat/mcp-server-apple-shortcuts](https://github.com/recursechat/mcp-server-apple-shortcuts) 📇 🏠 🍎 - MCP 服务噚䞎 Apple Shortcuts 的集成 +- [@fradser/mcp-server-apple-reminders](https://github.com/FradSer/mcp-server-apple-reminders) 📇 🏠 🍎 - macOS 侊侎 Apple Reminders 集成的 MCP 服务噚 - [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 密钥 diff --git a/README.md b/README.md index 88dea8d4..2362aa91 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,7 @@ Web content access and automation capabilities. Enables searching, scraping, and - [@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 +- [@fradser/mcp-server-apple-reminders](https://github.com/FradSer/mcp-server-apple-reminders) 📇 🏠 🍎 - An MCP server for interacting with Apple Reminders on macOS - [@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. From f7b51ec3eb7d674215fc65ecffe992c8e9cc60db Mon Sep 17 00:00:00 2001 From: Badhan Sen Date: Mon, 17 Mar 2025 13:09:07 +0000 Subject: [PATCH 065/275] docs(readme): added notion-mcp server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 263cf17f..4d3b82e0 100644 --- a/README.md +++ b/README.md @@ -362,6 +362,7 @@ Interact with Git repositories and version control platforms. Enables repository - [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 +- [Badhansen/notion-mcp](https://github.com/Badhansen/notion-mcp) 🐍 ☁ - A Model Context Protocol (MCP) server that integrates with Notion's API to manage personal todo lists efficiently. - [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 7aa6f8b03287809d7236040817f9b1bbe756fe8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jannik=20Maierh=C3=B6fer?= <48529566+jannikmaierhoefer@users.noreply.github.com> Date: Mon, 17 Mar 2025 15:09:21 +0100 Subject: [PATCH 066/275] add Langfuse Prompt Management MCP Server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 263cf17f..8457c067 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. +- [@langfuse/mcp-server-langfuse](https://github.com/langfuse/mcp-server-langfuse) 🐍 🏠 - MCP server to access and manage LLM application prompts created with [Langfuse]([https://langfuse.com/](https://langfuse.com/docs/prompts/get-started)) Prompt Management. ### 🧮 Data Science Tools From c5fdf2aac441d5ac56bb5ffcc69fecbec6a570b7 Mon Sep 17 00:00:00 2001 From: Minhyeok Lee Date: Tue, 18 Mar 2025 00:39:41 +0900 Subject: [PATCH 067/275] Add Ledger CLI MCP server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 263cf17f..cc4f7798 100644 --- a/README.md +++ b/README.md @@ -255,6 +255,7 @@ 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. +- [minhyeoky/mcp-server-ledger](https://github.com/minhyeoky/mcp-server-ledger) 🐍 🏠 - A ledger-cli integration for managing financial transactions and generating reports. ### 🎮 Gaming From 45c6e479cb4691277d7df315010fe180d91ae617 Mon Sep 17 00:00:00 2001 From: Mark Phelps <209477+markphelps@users.noreply.github.com> Date: Mon, 17 Mar 2025 15:46:32 -0400 Subject: [PATCH 068/275] chore: add Flipt MCP server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 263cf17f..56348046 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. +- [flipt-io/mcp-server-flipt](https://github.com/flipt-io/mcp-server-flipt) 📇 🏠 - Enable AI assistants to interact with your feature flags in [Flipt](https://flipt.io). ### 🧮 Data Science Tools 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 069/275] 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 070/275] 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 071/275] 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 072/275] 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 073/275] 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 074/275] 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 075/275] 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 076/275] 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 077/275] 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 078/275] 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 079/275] 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 080/275] 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 081/275] 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 082/275] 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 083/275] 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 084/275] 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 085/275] 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 086/275] 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 087/275] 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 088/275] 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 089/275] 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 090/275] 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 091/275] 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 092/275] 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 093/275] 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 094/275] 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 095/275] 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 096/275] 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 097/275] 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 098/275] 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 099/275] 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 100/275] 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 101/275] 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 102/275] 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 103/275] 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 104/275] 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 105/275] 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 106/275] 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 107/275] 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 108/275] 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 109/275] 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 110/275] 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 111/275] 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 112/275] 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 113/275] 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 114/275] 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 115/275] 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 116/275] 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 117/275] 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 118/275] 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 119/275] 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 120/275] 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 121/275] 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 122/275] 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 123/275] 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 124/275] 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 125/275] 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 126/275] 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 127/275] 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 128/275] 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 129/275] 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 130/275] 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 131/275] 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 132/275] 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 133/275] 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 134/275] 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 c51383405f2412315468cfb9e74a041c75f9d43b Mon Sep 17 00:00:00 2001 From: Marc Tremblay Date: Sun, 23 Mar 2025 07:09:13 +0100 Subject: [PATCH 135/275] Add sonarqube-mcp-server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 28934162..fe469461 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. +* [@sapientpants/sonarqube-mcp-server](https://github.com/sapientpants/sonarqube-mcp-server) 🊀 ☁ 🏠 - A Model Context Protocol (MCP) server that integrates with SonarQube to provide AI assistants with access to code quality metrics, issues, and quality gate statuses ### 🧮 Data Science Tools From d704e6be3b4a6072ae88e8fdb9b45a788cc8edae Mon Sep 17 00:00:00 2001 From: Pruthvi Date: Sun, 23 Mar 2025 20:54:45 +0530 Subject: [PATCH 136/275] Update README.md Added Vibe Check --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 28934162..5bcd0f51 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) +- [PV-Bhat/vibe-check-mcp-server](https://github.com/PV-Bhat/vibe-check-mcp-server) 📇 ☁ - An MCP server that prevents cascading errors and scope creep by calling a "Vibe-check" agent to ensure user alignment. ## Frameworks From 467f350af224d79af288be20f29a9873157d7ea2 Mon Sep 17 00:00:00 2001 From: vcart Date: Sun, 23 Mar 2025 13:45:31 -0400 Subject: [PATCH 137/275] Add Starknet MCP server to README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 28934162..0b41e250 100644 --- a/README.md +++ b/README.md @@ -264,6 +264,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. +- [mcpdotdirect/starknet-mcp-server](https://github.com/mcpdotdirect/starknet-mcp-server) 📇 ☁ - Comprehensive Starknet blockchain integration with support for native tokens (ETH, STRK), smart contracts, StarknetID resolution, and token transfers. - [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 2bf3fec5ad6b0ca5ae48776768cf623c58787839 Mon Sep 17 00:00:00 2001 From: Alexey Elizarov Date: Sun, 23 Mar 2025 21:46:44 +0300 Subject: [PATCH 138/275] 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 139/275] 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 140/275] 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 141/275] 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 c154a3f49521ed98b2ae8148c374e1a5d2e0324e Mon Sep 17 00:00:00 2001 From: David Lin Date: Sun, 23 Mar 2025 22:50:37 -0400 Subject: [PATCH 142/275] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0b386a14..3967e400 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. +- [davidlin2k/pox-mcp-server](https://github.com/davidlin2k/pox-mcp-server) 🐍 🏠 - MCP server for the POX SDN controller to provides network control and management capabilities. ### 🧮 Data Science Tools From db9b6478b813f1184ab24bd1bad6101a247f943f Mon Sep 17 00:00:00 2001 From: Linh Doan Date: Mon, 24 Mar 2025 11:13:02 +0700 Subject: [PATCH 143/275] 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 b078be5a434a8ad429841d68c8df320f0d1ad18b Mon Sep 17 00:00:00 2001 From: Francesco Date: Mon, 24 Mar 2025 12:06:57 +0100 Subject: [PATCH 144/275] Add Aiven within Databases --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8538c029..b57f6eac 100644 --- a/README.md +++ b/README.md @@ -120,6 +120,7 @@ Cloud platform service integration. Enables management and interaction with clou - [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 Run commands, capture output and otherwise interact with shells and command line tools. @@ -200,6 +201,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. +- [Aiven MCP Server](https://github.com/Aiven-Open/mcp-aiven) - 🐍 ☁ - Navigate your [Aiven projects](https://go.aiven.io/mcp-server) and interact with the PostgreSQL®, Apache Kafka®, ClickHouse® and OpenSearch® services ### 💻 Developer Tools From 8b6deeaf1ef47ecc7015763c068a734314172196 Mon Sep 17 00:00:00 2001 From: Francesco Date: Mon, 24 Mar 2025 12:08:01 +0100 Subject: [PATCH 145/275] Added official --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b57f6eac..0888d37e 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,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. -- [Aiven MCP Server](https://github.com/Aiven-Open/mcp-aiven) - 🐍 ☁ - Navigate your [Aiven projects](https://go.aiven.io/mcp-server) and interact with the PostgreSQL®, Apache Kafka®, ClickHouse® and OpenSearch® services +- [Aiven MCP Server](https://github.com/Aiven-Open/mcp-aiven) - 🐍 ☁ 🎖 - Navigate your [Aiven projects](https://go.aiven.io/mcp-server) and interact with the PostgreSQL®, Apache Kafka®, ClickHouse® and OpenSearch® services ### 💻 Developer Tools From c936f9351545ea7a904c96abe49fd5963856950b Mon Sep 17 00:00:00 2001 From: Francesco Date: Mon, 24 Mar 2025 12:08:26 +0100 Subject: [PATCH 146/275] removed extra new line --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 0888d37e..be5c7aad 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,6 @@ Cloud platform service integration. Enables management and interaction with clou - [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 Run commands, capture output and otherwise interact with shells and command line tools. From 2d2ae65aebda4da4b4a031cf467d9c23c99b46bd Mon Sep 17 00:00:00 2001 From: Lukas Boekenoogen <30448651+falcon030@users.noreply.github.com> Date: Mon, 24 Mar 2025 15:37:49 +0100 Subject: [PATCH 147/275] Update README.md Added Official Microsoft Playwright MCP server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8538c029..441f9368 100644 --- a/README.md +++ b/README.md @@ -94,6 +94,7 @@ Web content access and automation capabilities. Enables searching, scraping, and - [@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 +- [@microsoft/playwright-mcp](https://github.com/microsoft/playwright-mcp) 🌐 - Official Microsoft Playwright MCP server, enabling LLMs to interact with web pages through structured accessibility snapshots - [@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. From 5733eae739acf212aebd81720e8443b9041548d2 Mon Sep 17 00:00:00 2001 From: brandon Date: Mon, 24 Mar 2025 10:42:00 -0400 Subject: [PATCH 148/275] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8538c029..38a866b2 100644 --- a/README.md +++ b/README.md @@ -358,6 +358,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. +- [GhidraMCP](https://github.com/13bm/GhidraMCP) 🐍☕🏠 - MCP server for integrating Ghidra with AI assistants. This plugin enables binary analysis, providing tools for function inspection, decompilation, memory exploration, and import/export analysis via the Model Context Protocol. ### 🚆 Travel & Transportation From 5eb41f82cc31b22cf4bdb930fd65640d4ea1b9ec Mon Sep 17 00:00:00 2001 From: brandon Date: Mon, 24 Mar 2025 10:44:31 -0400 Subject: [PATCH 149/275] 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 1e543669..0d5d495e 100644 --- a/README-zh.md +++ b/README-zh.md @@ -292,7 +292,8 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [Shodan MCP Server](https://github.com/BurtTheCoder/mcp-shodan) 📇 ☁ - MCP 服务噚甚于查询 Shodan API 和 Shodan CVEDB。歀服务噚提䟛 IP 查扟、讟倇搜玢、DNS 查扟、挏掞查询、CPE 查扟等工具。 - [VirusTotal MCP Server](https://github.com/BurtTheCoder/mcp-virustotal) 📇 ☁ - 甚于查询 VirusTotal API 的 MCP 服务噚。歀服务噚提䟛甚于扫描 URL、分析文件哈垌和检玢 IP 地址报告的工具。 - [ORKL MCP Server](https://github.com/fr0gger/MCP_Security) 📇🛡☁ - 甚于查询 ORKL API 的 MCP 服务噚。歀服务噚提䟛获取嚁胁报告、分析嚁胁行䞺者和检玢嚁胁情报来源的工具。 -- [Security Audit MCP Server](https://github.com/qianniuspace/mcp-security-audit) 📇🛡☁ 䞀䞪区倧的 MCP (暡型䞊䞋文协议) 服务噚审计 npm 包䟝赖项的安党挏掞。内眮远皋 npm 泚册衚集成以进行实时安党检查。 +- [Security Audit MCP Server](https://github.com/qianniuspace/mcp-security-audit) 📇🛡☁ 䞀䞪区倧的 MCP (暡型䞊䞋文协议) 服务噚审计 npm 包䟝赖项的安党挏掞。内眮远皋 npm 泚册衚集成以进行实时安党检查 +- [GhidraMCP](https://github.com/13bm/GhidraMCP) 🐍☕🏠 - 甚于将Ghidra侎AI助手集成的MCP服务噚。该插件实现二进制分析提䟛凜数检查、反猖译、内存探玢和富入/富出分析等工具党郚基于暡型䞊䞋文协议Model Context Protocol。 ### 🚆 旅行䞎亀通 From d4cb1aee7f1265dc1773ccd87e408536ef770500 Mon Sep 17 00:00:00 2001 From: brandon Date: Mon, 24 Mar 2025 10:45:29 -0400 Subject: [PATCH 150/275] Update README-ja.md --- README-ja.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README-ja.md b/README-ja.md index a94556e6..ae53b309 100644 --- a/README-ja.md +++ b/README-ja.md @@ -196,6 +196,7 @@ aliyun/alibabacloud-tablestore-mcp-server ☕ 🐍 ☁ - 阿里云衚栌存 ### 🔒 セキュリティ - [Security Audit MCP Server](https://github.com/qianniuspace/mcp-security-audit) 📇🛡☁ 匷力なモデルコンテキストプロトコルMCPサヌバヌで、npmパッケヌゞ䟝存関係のセキュリティ脆匱性を監査したす。リモヌトnpmレゞストリ統合を備えたリアルタむムセキュリティチェックを䜿甚しお構築されおいたす。 +- [GhidraMCP](https://github.com/13bm/GhidraMCP) 🐍☕🏠 - GhidraをAIアシスタントず統合するためのMCPサヌバヌ。このプラグむンはバむナリ分析を可胜にし、モデルコンテキストプロトコルを通じお関数怜査、逆コンパむル、メモリ探玢、むンポヌト/゚クスポヌト分析などのツヌルを提䟛したす。 ### 🚆 旅行ず亀通 From 55aed776d0da6e99c6d5cd8764f779970590f6be Mon Sep 17 00:00:00 2001 From: Drew Dennison Date: Mon, 24 Mar 2025 13:53:32 -0700 Subject: [PATCH 151/275] Add Security > Semgrep MCP server Add the official Semgrep MCP server github.com/semgrep/mcp --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8538c029..55cc3095 100644 --- a/README.md +++ b/README.md @@ -358,6 +358,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. +- [Semgrep MCP Server](https://github.com/semgrep/mcp-security-audit) 📇🛡☁ Allow AI agents to scan code for security vulnerabilites using [Semgrep](https://semgrep.dev). ### 🚆 Travel & Transportation From 47e8a303bf199c0f91304d16f25412dc258bb34d Mon Sep 17 00:00:00 2001 From: Teddyzxcv Date: Tue, 25 Mar 2025 03:51:26 +0300 Subject: [PATCH 152/275] Add new ntfy 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..e9491d59 100644 --- a/README-ja.md +++ b/README-ja.md @@ -92,6 +92,7 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [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のフレンドやワヌルド、アバタヌなどの情報を取埗するこずができたす。 +- [ntfy-mcp](https://github.com/teddyzxcv/ntfy-mcp) (by teddyzxcv) ntfy を䜿甚しおスマヌトフォンに通知を送信し、情報を確実に䌝達する MCP サヌバヌです。 ### 👀 顧客デヌタプラットフォヌム diff --git a/README-zh.md b/README-zh.md index 1e543669..fcb41488 100644 --- a/README-zh.md +++ b/README-zh.md @@ -132,6 +132,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [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的奜友、䞖界、化身等信息。 +- [ntfy-mcp](https://github.com/teddyzxcv/ntfy-mcp) (by teddyzxcv) 通过䜿甚 ntfy 向手机发送通知实时曎新信息的 MCP 服务噚。 ### 👀 数据平台 diff --git a/README.md b/README.md index 8538c029..a8d24b16 100644 --- a/README.md +++ b/README.md @@ -145,6 +145,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 +- [ntfy-mcp](https://github.com/teddyzxcv/ntfy-mcp) (by teddyzxcv) - The MCP server that keeps you informed by sending the notification on phone using ntfy ### 👀 Customer Data Platforms From d2874e2c8456ec43ff66ccedea201851d55ff821 Mon Sep 17 00:00:00 2001 From: Bharath <44696641+cb-bharathvaj@users.noreply.github.com> Date: Tue, 25 Mar 2025 12:10:13 +0530 Subject: [PATCH 153/275] Add Chargebee MCP --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8538c029..471fa1ef 100644 --- a/README.md +++ b/README.md @@ -275,6 +275,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. +- [@chargebee/mcp](https://github.com/chargebee/agentkit/tree/main/modelcontextprotocol) - MCP Server that connects AI agents to [Chargebee platform](https://www.chargebee.com/). ### 🎮 Gaming From 09de63cb194359d3fee738fe349db72f05389df7 Mon Sep 17 00:00:00 2001 From: horw Date: Tue, 25 Mar 2025 19:32:01 +0800 Subject: [PATCH 154/275] Add MCP Server to fix ESP build issues --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 8538c029..70e89f8b 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ Checkout [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) * scope * ☁ - Cloud Service * 🏠 - Local Service + * 📟 - Embedded Systems * operating system * 🍎 – For macOS * 🪟 – For Windows @@ -73,6 +74,7 @@ Checkout [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) * 👀 - [Customer Data Platforms](#customer-data-platforms) * 🗄 - [Databases](#databases) * 🛠 - [Developer Tools](#developer-tools) +* 📟 - [Embedded system](#embedded-system) * 📂 - [File Systems](#file-systems) * 💰 - [Finance & Fintech](#finance--fintech) * 🎮 - [Gaming](#gaming) @@ -240,6 +242,13 @@ Integrations and tools designed to simplify data exploration, analysis and enhan - [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. +### 📟 Embedded System + +Provides access to documentation and shortcuts for working on embedded devices. + +- [horw/esp-mcp](https://github.com/horw/esp-mcp) 📟 - Workflow for fixing build issues in ESP32 series chips using ESP-IDF. + + ### 📂 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 7af54a684898f1253d2aed16d029f4c80b1ab45d Mon Sep 17 00:00:00 2001 From: "R.Huijts" Date: Tue, 25 Mar 2025 14:32:11 +0100 Subject: [PATCH 155/275] 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 e7c24cf01dea96e5034032bc9ec05d75b9cfb2ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tuana=20=C3=87elik?= Date: Tue, 25 Mar 2025 16:45:15 +0100 Subject: [PATCH 156/275] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8538c029..aee4cc1b 100644 --- a/README.md +++ b/README.md @@ -200,6 +200,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. +- [weaviate/mcp-server-weaviate](https://github.com/weaviate/mcp-server-weaviate) 💚☁ - An MCP Server to connect to your Weaviate collections as a knowledge base as well as using Weaviate as a chat memory store. ### 💻 Developer Tools From 4971fc4fd8a28b220ec4bd2dbc78febf2b8d9639 Mon Sep 17 00:00:00 2001 From: Jinzhi Chen Date: Wed, 26 Mar 2025 08:57:31 +0800 Subject: [PATCH 157/275] 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 158/275] 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 63328dd4b7da8832c603034ba1f33d8867a07b60 Mon Sep 17 00:00:00 2001 From: Bharath <44696641+cb-bharathvaj@users.noreply.github.com> Date: Wed, 26 Mar 2025 09:51:07 +0530 Subject: [PATCH 159/275] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 471fa1ef..1f545c49 100644 --- a/README.md +++ b/README.md @@ -275,7 +275,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. -- [@chargebee/mcp](https://github.com/chargebee/agentkit/tree/main/modelcontextprotocol) - MCP Server that connects AI agents to [Chargebee platform](https://www.chargebee.com/). +- [@chargebee/mcp](https://github.com/chargebee/agentkit/tree/main/modelcontextprotocol) 🎖 📇 ☁ - MCP Server that connects AI agents to [Chargebee platform](https://www.chargebee.com/). ### 🎮 Gaming From 21579847d45adb0403ccb985b93ec90b7e59d6fc Mon Sep 17 00:00:00 2001 From: Stanislav Sedov Date: Tue, 25 Mar 2025 22:57:36 -0700 Subject: [PATCH 160/275] Add lldb-mcp to README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7d063f1a..f15b5737 100644 --- a/README.md +++ b/README.md @@ -234,6 +234,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. +- [stass/lldb-mcp](https://github.com/stass/lldb-mcp) 🐍 🏠 🐧 🍎 - A MCP server for LLDB enabling AI binary and core file analysis, debugging, disassembling. ### 🧮 Data Science Tools @@ -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 c44da9275fb8cbb353ca8db9c0cdb881cca34bf9 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Wed, 26 Mar 2025 09:25:57 +0000 Subject: [PATCH 161/275] add Code Execution section and mcp-run-python --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7d063f1a..8b65b60d 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,7 @@ Checkout [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) * 📂 - [Browser Automation](#browser-automation) * 🎚 - [Art & Culture](#art-and-culture) * ☁ - [Cloud Platforms](#cloud-platforms) +* 👚‍💻 - [Code Execution](#code-execution) * 🖥 - [Command Line](#command-line) * 💬 - [Communication](#communication) * 👀 - [Customer Data Platforms](#customer-data-platforms) @@ -121,6 +122,12 @@ Cloud platform service integration. Enables management and interaction with clou - [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. +### 👚‍💻 Code Execution + +Code execution servers. Allow LLMs to execute code in a secure environment, e.g. for coding agents. + +- [pydantic/pydantic-ai/mcp-run-python](https://github.com/pydantic/pydantic-ai/tree/main/mcp-run-python) 🐍🏠- Run Python code in a secure sandbox via MCP tool calls + ### 🖥 Command Line Run commands, capture output and otherwise interact with shells and command line tools. @@ -510,4 +517,4 @@ Now Claude can answer questions about writing MCP servers and how they work Star History Chart - \ No newline at end of file + 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 162/275] 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 8ec0395525760d98dbc52e47421be8d175a51875 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tuana=20=C3=87elik?= Date: Wed, 26 Mar 2025 18:13:39 +0100 Subject: [PATCH 163/275] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aee4cc1b..67fffdf2 100644 --- a/README.md +++ b/README.md @@ -200,7 +200,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. -- [weaviate/mcp-server-weaviate](https://github.com/weaviate/mcp-server-weaviate) 💚☁ - An MCP Server to connect to your Weaviate collections as a knowledge base as well as using Weaviate as a chat memory store. +- [weaviate/mcp-server-weaviate](https://github.com/weaviate/mcp-server-weaviate)🐍 📇 ☁ - An MCP Server to connect to your Weaviate collections as a knowledge base as well as using Weaviate as a chat memory store. ### 💻 Developer Tools From 53edc2680e7e7da5e12dd5eb20271cbace25f06e Mon Sep 17 00:00:00 2001 From: Ahmed Saleh Date: Wed, 26 Mar 2025 10:56:57 -0700 Subject: [PATCH 164/275] 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 165/275] 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 166/275] 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 167/275] 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 168/275] 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 169/275] 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 170/275] 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 171/275] 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 f1818a33356ff53217e7036801c1dc9b9fcf0457 Mon Sep 17 00:00:00 2001 From: admica Date: Fri, 28 Mar 2025 00:29:21 -0500 Subject: [PATCH 172/275] Update README.md FileScopeMCP Analyzes your codebase identifying important files based on dependency relationships. Generates diagrams and importance scores per file, helping AI assistants understand the codebase. Automatically parses popular programming languages Python, Lua, C, C++, Rust, Zig. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a2c316f1..272c0f40 100644 --- a/README.md +++ b/README.md @@ -237,6 +237,8 @@ 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). +- [admica/FileScopeMCP](https://github.com/admica/FileScopeMCP) 🛠🐍📇🊀 - Analyzes your codebase identifying important files based on dependency relationships. Generates diagrams and importance scores per file, helping AI assistants understand the codebase. Automatically parses popular programming languages Python, Lua, C, C++, Rust, Zig. + ### 🧮 Data Science Tools From 6761c14126c6bf0e1c0d769e2c42d8f8bdc99876 Mon Sep 17 00:00:00 2001 From: BLIAL OTHMANE Date: Fri, 28 Mar 2025 07:37:09 +0100 Subject: [PATCH 173/275] Update README.md A prototype MCP-like server using DeepSeek API that exposes endpoints for listing tools, running shell commands, and integrating with AI chat to trigger command execution via special instructions. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a2c316f1..0673413a 100644 --- a/README.md +++ b/README.md @@ -130,6 +130,7 @@ Run commands, capture output and otherwise interact with shells and command line - [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) +- [OthmaneBlial/term_mcp_deepseek](https://github.com/OthmaneBlial/term_mcp_deepseek) A DeepSeek MCP-like Server for Terminal ### 💬 Communication From 06041884429bc246e93bc1224d43a01cda6da77f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?oil=E6=AC=A7=E5=91=A6?= <2228586315@qq.com> Date: Fri, 28 Mar 2025 17:58:34 +0800 Subject: [PATCH 174/275] Add apisix-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..9fcb4584 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によるコヌド理解、修正、プロゞェクト分析を包括的なツヌルサポヌトで実珟したす。 +- [api7/apisix-mcp](https://github.com/api7/apisix-mcp) 🎖 📇 🏠 [Apache APISIX](https://github.com/apache/apisix) のすべおのリ゜ヌスの照䌚ず管理をサポヌトするMCPサヌビス。 ### 📂 ファむルシステム diff --git a/README-zh.md b/README-zh.md index 85dedcc4..450bd73a 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 代码理解、修改和项目分析并提䟛党面的工具支持。 +- [api7/apisix-mcp](https://github.com/api7/apisix-mcp) 🎖 📇 🏠 支持对 [Apache APISIX](https://github.com/apache/apisix) 眑关䞭所有资源进行查询和管理的 MCP 服务。 ### 🧮 数据科孊工具 diff --git a/README.md b/README.md index e10850f2..f635c1be 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). +- [api7/apisix-mcp](https://github.com/api7/apisix-mcp) 🎖 📇 🏠 MCP Server that support for querying and managing all resource in [Apache APISIX](https://github.com/apache/apisix). ### 🧮 Data Science 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 175/275] 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 176/275] 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 2e901342873fd041cbd353b2f455fc20dcea4216 Mon Sep 17 00:00:00 2001 From: admica Date: Fri, 28 Mar 2025 08:24:29 -0500 Subject: [PATCH 177/275] Update README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - [admica/FileScopeMCP](https://github.com/admica/FileScopeMCP) 🛠🐍📇🊀 - Analyzes your codebase identifying important files based on dependency relationships. Generates diagrams and importance scores, helping AI assistants understand the codebase. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 272c0f40..4743eed7 100644 --- a/README.md +++ b/README.md @@ -237,7 +237,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). -- [admica/FileScopeMCP](https://github.com/admica/FileScopeMCP) 🛠🐍📇🊀 - Analyzes your codebase identifying important files based on dependency relationships. Generates diagrams and importance scores per file, helping AI assistants understand the codebase. Automatically parses popular programming languages Python, Lua, C, C++, Rust, Zig. +- [admica/FileScopeMCP](https://github.com/admica/FileScopeMCP) 🛠🐍📇🊀 - Analyzes your codebase identifying important files based on dependency relationships. Generates diagrams and importance scores, helping AI assistants understand the codebase. ### 🧮 Data Science Tools From 6c3cfd9584659363a74604c3a7a088594de011df Mon Sep 17 00:00:00 2001 From: Konstantin Tumalevich Date: Fri, 28 Mar 2025 18:48:13 +0500 Subject: [PATCH 178/275] 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 179/275] 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 180/275] 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 5e188685fb868607532c9ba3c78dc008c4f5227c Mon Sep 17 00:00:00 2001 From: Huan-zhaojun <111294954+Huan-zhaojun@users.noreply.github.com> Date: Fri, 28 Mar 2025 22:51:02 +0800 Subject: [PATCH 181/275] docs:Synchronize Chinese documentation with updates from English. --- README-zh.md | 156 ++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 128 insertions(+), 28 deletions(-) diff --git a/README-zh.md b/README-zh.md index 85dedcc4..58632504 100644 --- a/README-zh.md +++ b/README-zh.md @@ -9,19 +9,26 @@ 粟选的䌘秀暡型䞊䞋文协议 (MCP) 服务噚列衚。 * [什么是MCP](#什么是MCP) +* [客户端](#客户端) * [教皋](#教皋) * [瀟区](#瀟区) * [诎明](#诎明) * [Server 实现](#服务噚实现) * [框架](#框架) * [实甚工具](#实甚工具) -* [客户端](#客户端) * [提瀺和技巧](#提瀺和技巧) ## 什么是MCP [MCP](https://modelcontextprotocol.io/) 是䞀种匀攟协议通过标准化的服务噚实现䜿 AI 暡型胜借安党地䞎本地和远皋资源进行亀互。歀列衚重点关泚可甚于生产和实验性的 MCP 服务噚这些服务噚通过文件访问、数据库连接、API 集成和其他䞊䞋文服务来扩展 AI 功胜。 +## 客户端 + +查看 [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) 和 [glama.ai/mcp/clients](https://glama.ai/mcp/clients)。 + +> [!TIP] +> [Glama Chat](https://glama.ai/chat)是䞀欟支持MCP的倚暡态AI客户端并集成[AI眑关](https://glama.ai/gateway)功胜。 + ## 教皋 * [Model Context Protocol (MCP) 快速匀始](https://glama.ai/blog/2024-11-25-model-context-protocol-quickstart) @@ -48,6 +55,7 @@ * 操䜜系统 * 🍎 – For macOS * 🪟 – For Windows + * 🐧 - For Linux > [!NOTE] @@ -64,11 +72,12 @@ * ☁ - [云平台](#cloud-platforms) * 🖥 - [呜什行](#command-line) * 💬 - [瀟亀](#communication) -* 👀 - [数据平台](#customer-data-platforms) +* 👀 - [客户数据平台](#customer-data-platforms) * 🗄 - [数据库](#databases) * 🛠 - [匀发者工具](#developer-tools) +* 🧮 - [数据科孊工具](#data-science-tools) * 📂 - [文件系统](#file-systems) -* 💰 - [Finance & Fintech](#finance--fintech) +* 💰 - [金融䞎金融科技](#finance--fintech) * 🎮 - [枞戏](#gaming) * 🧠 - [知识䞎记忆](#knowledge--memory) * 🗺 - [䜍眮服务](#location-services) @@ -76,6 +85,7 @@ * 📊 - [监测](#monitoring) * 🔎 - [搜玢](#search) * 🔒 - [安党](#security) +* 🏃 - [䜓育](#sports) * 🚆 - [旅行䞎亀通](#travel-and-transportation) * 🔄 - [版本控制](#version-control) * 🛠 - [其他工具和集成](#other-tools-and-integrations) @@ -91,7 +101,9 @@ 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 密钥 +- [@co-browser/browser-use-mcp-server](https://github.com/co-browser/browser-use-mcp-server) 🌐🔮 - browser-use是䞀䞪封装了SSE䌠蟓协议的MCP服务噚。包含䞀䞪dockerfile甚于圚docker䞭运行chromium浏览噚+VNC服务噚。 - [@34892002/bilibili-mcp-js](https://github.com/34892002/bilibili-mcp-js) 📇 🏠 - 䞀䞪支持搜玢 B站 内容的 MCP 服务噚。提䟛LangChain调甚瀺䟋、测试脚本。 +- [@getrupt/ashra-mcp](https://github.com/getrupt/ashra-mcp) 🐍 🏠 - 从任䜕眑站提取结构化数据。只需蟓入提瀺即可获取JSON。 ### 🎚 艺术䞎文化 @@ -106,17 +118,20 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 云平台服务集成。实现䞎云基础讟斜和服务的管理和亀互。 - [Cloudflare MCP Server](https://github.com/cloudflare/mcp-server-cloudflare) 🎖 📇 ☁ - 侎 Cloudflare 服务集成包括 Workers、KV、R2 和 D1 +- [alexei-led/aws-mcp-server](https://github.com/alexei-led/aws-mcp-server) 🐍 ☁ - 䞀欟蜻量䜆功胜区倧的服务噚䜿AI助手胜借圚支持倚架构的安党Docker环境䞭执行AWS CLI呜什、䜿甚Unix管道并䞺垞见AWS任务应甚提瀺暡板。 - [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、郚眲、服务的操䜜。 +- [@manusa/Kubernetes MCP Server](https://github.com/manusa/kubernetes-mcp-server) - 🏎 🏠 䞀䞪功胜区倧的Kubernetes MCP服务噚额倖支持OpenShift。陀了䞺**任䜕**Kubernetes资源提䟛CRUD操䜜倖该服务噚还提䟛䞓甚工具䞎悚的集矀进行亀互。 - [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 䜿甚瀺䟋。 +- [nwiizo/tfmcp](https://github.com/nwiizo/tfmcp) - 🊀 🏠 - 䞀䞪Terraform MCP服务噚允讞AI助手管理和操䜜Terraform环境实现读取配眮、分析计划、应甚配眮以及管理Terraform状态的功胜。 -### 🖥 Command Line +### 🖥 呜什行 运行呜什、捕获蟓出以及以其他方匏䞎 shell 和呜什行工具亀互。 - [ferrislucas/iterm-mcp](https://github.com/ferrislucas/iterm-mcp) 🖥 🛠 💬 - 䞀䞪䞺 iTerm 终端提䟛访问胜力的 MCP 服务噚。悚可以执行呜什并就终端䞭看到的内容进行提问亀互。 -- [g0t4/mcp-server-commands](https://github.com/g0t4/mcp-server-commands) 📇 🏠 - 䜿甚“run_command”和“run_script”工具运行任䜕呜什。 +- [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) 的安党 shell 呜什执行服务噚 @@ -132,9 +147,12 @@ 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 亀互可发垃笔记等功胜。 +- [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服务噚支持倧语蚀暡型查询䞎分析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服务噚 -### 👀 数据平台 +### 👀 客户数据平台 提䟛对客户数据平台内客户资料的访问 @@ -150,34 +168,54 @@ 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 数据库集成具有架构检查、读写功胜 +- [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 数据库集成包括衚结构的建立 DDL 和 SQL 的执行 +- [tradercjz/dolphindb-mcp-server](https://github.com/tradercjz/dolphindb-mcp-server) 🐍 ☁ - TDolphinDB数据库集成具倇暡匏检查䞎查询功胜 - [ergut/mcp-bigquery-server](https://github.com/ergut/mcp-bigquery-server) 📇 ☁ - Google BigQuery 集成的服务噚实现可实现盎接 BigQuery 数据库访问和查询功胜 - [ClickHouse/mcp-clickhouse](https://github.com/ClickHouse/mcp-clickhouse) 🐍 ☁ - 集成 Apache Kafka 和 Timeplus。可以获取Kafka䞭的最新数据并通过 Timeplus 来 SQL 查询。 -- [jovezhong/mcp-timeplus](https://github.com/jovezhong/mcp-timeplus) 🐍 ☁ - MCP server for Apache Kafka and Timeplus. Able to list Kafka topics, poll Kafka messages, save Kafka data locally and query streaming data with SQL via Timeplus +- [get-convex/convex-backend](https://stack.convex.dev/convex-mcp-server) 📇 ☁ - 集成 Convex 数据库甚于查看衚结构、凜数及执行䞀次性查询([Source](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) 🔥 ⛅ - 包括讀证、Firestore和存傚圚内的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) 🐍 🏠 - 基于 Node.js 的 MySQL 数据库集成提䟛安党的 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 MCP 服务噚甚于管理和创建 Supabase 䞭的项目和组织 - [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) 📇 🏠 - MongoDB 集成䜿 LLM 胜借盎接䞎数据库亀互。 -- [tinybirdco/mcp-tinybird](https://github.com/tinybirdco/mcp-tinybird) 🐍 ☁ - Tinybird 集成查询和 API 功胜 - [kiliczsh/mcp-mongo-server](https://github.com/kiliczsh/mcp-mongo-server) 📇 🏠 - MongoDB 的暡型䞊䞋文协议服务噚 +- [tinybirdco/mcp-tinybird](https://github.com/tinybirdco/mcp-tinybird) 🐍 ☁ - Tinybird 集成查询和 API 功胜 - [KashiwaByte/vikingdb-mcp-server](https://github.com/KashiwaByte/vikingdb-mcp-server) 🐍 ☁ - VikingDB 数据库集成了collection和index的基本信息介绍并提䟛向量存傚和查询的功胜. - [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 服务噚通过暡型䞊䞋文协议 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等䌗倚数据库。具有架构和关系检查以及倧型数据集分析功胜。 +- [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) 📇 ☁ — 䞀䞪支持通过自然语蚀查询从数据库获取数据的MCP服务噚由XiyanSQL䜜䞺文本蜬SQL的倧语蚀暡型提䟛支持。 +- [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) - 打造受21䞖纪顶尖讟计工皋垈启发的粟臎UI组件。 +- [Coment-ML/Opik-MCP](https://github.com/comet-ml/opik-mcp) 🎖 📇 ☁ 🏠 - 䜿甚自然语蚀䞎悚的LLM可观测性、Opik捕获的远螪和监控数据进行对话。 +- [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 集成支持项目管理、文件操䜜和构建自劚化 @@ -186,21 +224,31 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [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) 📇 🏠 - 䞀䞪 MCP 服务噚甚于䞎 iOS 匀发者的 App Store Connect API 进行通信 -- [@sammcj/mcp-package-version](https://github.com/sammcj/mcp-package-version) 📊 🏠 - MCP 服务噚可垮助 LLM 圚猖写代码时建议最新的皳定蜯件包版本。 +- [@sammcj/mcp-package-version](https://github.com/sammcj/mcp-package-version) 📇 🏠 - MCP 服务噚可垮助 LLM 圚猖写代码时建议最新的皳定蜯件包版本。 - [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 的 MCP 服务噚支持 Markdown、HTML、PDF、DOCX.docx、csv 等栌匏之闎的无猝蜬换 - [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) 的 MCP 服务噚提䟛 SQL 分析、代码检查和方蚀蜬换功胜 +- [@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) 📇 🏠 🍎 - 䞀䞪䞪人MCP暡型䞊䞋文协议服务噚甚于通过macOS钥匙䞲安党存傚和跚项目访问API密钥。 +- [@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) 🐍 🏠 - 甚于生成挂亮亀互匏思绎富囟mindmap的暡型䞊䞋文协议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)规范化云资源。 -### 🧮 数据科孊工具 +### 🧮 数据科孊工具 旚圚简化数据探玢、分析和增区数据科孊工䜜流皋的集成和工具。 - [@reading-plus-ai/mcp-server-data-exploration](https://github.com/reading-plus-ai/mcp-server-data-exploration) 🐍 ☁ - 支持对基于 .csv 的数据集进行自䞻数据探玢以最小的成本提䟛智胜见解。 - [zcaceres/markdownify-mcp](https://github.com/zcaceres/markdownify-mcp) 📇 🏠 - 䞀䞪 MCP 服务噚可将几乎任䜕文件或眑络内容蜬换䞺 Markdown +- [@reading-plus-ai/mcp-server-data-exploration](https://github.com/reading-plus-ai/mcp-server-data-exploration) 🐍 ☁ - 实现基于.csv数据集的自劚数据探玢提䟛最少工䜜量的智胜化掞察。 ### 📂 文件系统 @@ -212,22 +260,38 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [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) ☕ 🏠 - 䞀䞪基于Java和Quarkus实现的文件系统支持浏览和猖蟑文件。提䟛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眑络访问䞓䞚化的web3 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) 🐍 ☁ - Tastyworks API 集成甚于管理 Tastytrade 平台的亀易掻劚 +- [ferdousbhai/investor-agent](https://github.com/ferdousbhai/investor-agent) 🐍 ☁ - 敎合雅虎莢经以获取股垂数据包括期权掚荐 +- [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铟䞊API甚于䞎智胜合纊亀互、查询亀易及代垁信息 +- [kukapay/cryptopanic-mcp-server](https://github.com/kukapay/cryptopanic-mcp-server) 🐍 ☁ - 䞺AI代理提䟛由CryptoPanic驱劚的最新加密莧垁新闻。 +- [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) 🐍 ☁ - 䞀䞪MCP服务噚甚于远螪Uniswap圚倚䞪区块铟䞊新创建的流劚性池。 +- [kukapay/uniswap-trader-mcp](https://github.com/kukapay/uniswap-trader-mcp) 🐍 ☁ - 䞀䞪MCP服务噚甚于AI代理圚倚䞪区块铟䞊的Uniswap去䞭心化亀易所自劚执行代垁亀换。 +- [kukapay/token-minter-mcp](https://github.com/kukapay/token-minter-mcp) 🐍 ☁ - 䞀䞪MCP服务噚䞺AI代理提䟛工具以跚倚䞪区块铟铞造ERC-20代垁。 +- [kukapay/thegraph-mcp](https://github.com/kukapay/thegraph-mcp) 🐍 ☁ - 䞀䞪MCP服务噚通过The Graph提䟛的玢匕区块铟数据䞺AI代理提䟛支持。 - [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/) 🐍 ☁ - 甚于实时 Fantasy Premier League 数据和分析工具的 MCP 服务噚。 - [CoderGamester/mcp-unity](https://github.com/CoderGamester/mcp-unity) 📇 #⃣ 🏠 - Unity3d 枞戏匕擎集成 MCP 服务噚 @@ -240,6 +304,8 @@ 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 䞊的文献集合和资源 +- [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客户端䞭搜玢并检玢盞关知识。 ### 🗺 䜍眮服务 @@ -249,6 +315,8 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [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) - 通过MCP将QGIS桌面端䞎Claude AI连接。该集成支持提瀺蟅助的项目创建、囟层加蜜、代码执行等功胜。 +- [kukapay/nearby-search-mcp](https://github.com/kukapay/nearby-search-mcp) 🐍 ☁ - 䞀䞪基于IP定䜍检测的附近地点搜玢MCP服务噚。 ### 🎯 营销 @@ -264,14 +332,17 @@ 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 进行亀互 +- [pydantic/logfire-mcp](https://github.com/pydantic/logfire-mcp) 🎖 🐍 ☁ - 通过Logfire提䟛对OpenTelemetry远螪和指标的访问 +- [seekrays/mcp-monitor](https://github.com/seekrays/mcp-monitor) 🏎 🏠 - 䞀欟通过暡型䞊䞋文协议MCP暎露系统指标的监控工具。该工具允讞倧型语蚀暡型通过兌容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 Search API 进行眑络搜玢。歀讟眮允讞 AI 暡型以安党䞔可控的方匏获取实时眑络信息。 +- [exa-labs/exa-mcp-server](https://github.com/exa-labs/exa-mcp-server) 🎖 📇 ☁ – 暡型䞊䞋文协议 (MCP) 服务噚让 Claude 等 AI 助手可以䜿甚 Exa AI Search 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 @@ -286,22 +357,34 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [erithwik/mcp-hn](https://github.com/erithwik/mcp-hn) 🐍 ☁ - 䞀䞪甚于搜玢 Hacker News、获取热闚故事等的 MCP 服务噚。 - [chanmeng/google-news-mcp-server](https://github.com/ChanMeng666/server-google-news) 📇 ☁ - Google News 集成具有自劚䞻题分类、倚语蚀支持以及通过 [SerpAPI](https://serpapi.com/) 提䟛的标题、故事和盞关䞻题的绌合搜玢功胜。 - [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/) 📇 🏠 ☁ - 这是䞀䞪基于TypeScript的MCP服务噚提䟛DuckDuckGo搜玢功胜。 +- [vectorize-io/vectorize-mcp-server](https://github.com/vectorize-io/vectorize-mcp-server/) ☁ 📇 - [Vectorize](https://vectorize.io) 甚于高级检玢的MCP服务噚私有Deep Research任意文件蜬Markdown提取及文本分块倄理。 +- [jae-jae/fetcher-mcp](https://github.com/jae-jae/fetcher-mcp) 📇 🏠 - 甚于通过Playwright无倎浏览噚获取眑页内容的MCP服务噚支持JavaScript枲染䞎智胜内容提取并蟓出Markdown或HTML栌匏。 ### 🔒 安党 - [dnstwist MCP Server](https://github.com/BurtTheCoder/mcp-dnstwist) 📇🪟☁ - dnstwist 的 MCP 服务噚这是䞀䞪区倧的 DNS 暡糊测试工具可垮助检测域名抢泚、钓鱌和䌁䞚窃密行䞺 -- [Maigret MCP Server](https://github.com/BurtTheCoder/mcp-maigret) 📇 ☁ - maigret 的 MCP 服务噚maigret 是䞀欟区倧的 OSINT 工具可从各种公共来源收集甚户垐户信息。歀服务噚提䟛甚于圚瀟亀眑络䞭搜玢甚户名和分析 URL 的工具。 -- [Shodan MCP Server](https://github.com/BurtTheCoder/mcp-shodan) 📇 ☁ - MCP 服务噚甚于查询 Shodan API 和 Shodan CVEDB。歀服务噚提䟛 IP 查扟、讟倇搜玢、DNS 查扟、挏掞查询、CPE 查扟等工具。 -- [VirusTotal MCP Server](https://github.com/BurtTheCoder/mcp-virustotal) 📇 ☁ - 甚于查询 VirusTotal API 的 MCP 服务噚。歀服务噚提䟛甚于扫描 URL、分析文件哈垌和检玢 IP 地址报告的工具。 +- [Maigret MCP Server](https://github.com/BurtTheCoder/mcp-maigret) 📇🪟☁ - maigret 的 MCP 服务噚maigret 是䞀欟区倧的 OSINT 工具可从各种公共来源收集甚户垐户信息。歀服务噚提䟛甚于圚瀟亀眑络䞭搜玢甚户名和分析 URL 的工具。 +- [Shodan MCP Server](https://github.com/BurtTheCoder/mcp-shodan) 📇🪟☁ - MCP 服务噚甚于查询 Shodan API 和 Shodan CVEDB。歀服务噚提䟛 IP 查扟、讟倇搜玢、DNS 查扟、挏掞查询、CPE 查扟等工具。 +- [VirusTotal MCP Server](https://github.com/BurtTheCoder/mcp-virustotal) 📇🪟☁ - 甚于查询 VirusTotal API 的 MCP 服务噚。歀服务噚提䟛甚于扫描 URL、分析文件哈垌和检玢 IP 地址报告的工具。 - [ORKL MCP Server](https://github.com/fr0gger/MCP_Security) 📇🛡☁ - 甚于查询 ORKL API 的 MCP 服务噚。歀服务噚提䟛获取嚁胁报告、分析嚁胁行䞺者和检玢嚁胁情报来源的工具。 - [Security Audit MCP Server](https://github.com/qianniuspace/mcp-security-audit) 📇🛡☁ 䞀䞪区倧的 MCP (暡型䞊䞋文协议) 服务噚审计 npm 包䟝赖项的安党挏掞。内眮远皋 npm 泚册衚集成以进行实时安党检查。 +### 🏃 䜓育 + +䜓育盞关数据、结果和统计信息的访问工具。 + +- [r-huijts/firstcycling-mcp](https://github.com/r-huijts/firstcycling-mcp) 📇 ☁ - 通过自然语蚀访问自行蜊比赛数据、结果和统计信息。功胜包括从 firstcycling.com 获取参赛名单、比赛结果和蜊手信息。 + ### 🚆 旅行䞎亀通 访问旅行和亀通信息。可以查询时刻衚、路线和实时旅行数据。 +- [Airbnb MCP Server](https://github.com/openbnb-org/mcp-server-airbnb) 📇 ☁ - 提䟛搜玢Airbnb房源及获取诊细信息的工具。 - [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 集成提䟛矎囜囜家公园的诊细信息、譊报、枞客䞭心、露营地和掻劚的最新信息 +- [pab1it0/tripadvisor-mcp](https://github.com/pab1it0/tripadvisor-mcp) 📇 🐍 - 䞀䞪MCP服务噚䜿LLM胜借通过标准化的MCP接口䞎Tripadvisor API亀互支持䜍眮数据、评论和照片 ### 🔄 版本控制 @@ -309,6 +392,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [@modelcontextprotocol/server-github](https://github.com/modelcontextprotocol/servers/tree/main/src/github) 📇 ☁ - GitHub API集成甚于仓库管理、PR、问题等 - [@modelcontextprotocol/server-gitlab](https://github.com/modelcontextprotocol/servers/tree/main/src/gitlab) 📇 ☁ 🏠 - GitLab平台集成甚于项目管理和CI/CD操䜜 +- [@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 存傚库 @@ -332,6 +416,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [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。需芁䟛应商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) 🐍 ☁ - Confluence工䜜区的自然语蚀搜玢和内容访问 @@ -347,28 +432,43 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [isaacwasserman/mcp-vegalite-server](https://github.com/isaacwasserman/mcp-vegalite-server) 🐍 🏠 - 䜿甚 VegaLite 栌匏和枲染噚从获取的数据生成可视化效果。 - [tevonsb/homeassistant-mcp](https://github.com/tevonsb/homeassistant-mcp) 📇 🏠 - 访问家庭助理数据和控制讟倇灯、匀关、恒枩噚等。 - [allenporter/mcp-server-home-assistant](https://github.com/allenporter/mcp-server-home-assistant) 🐍 🏠 - 通过暡型䞊䞋文协议服务噚暎露所有 Home Assistant 语音意囟实现智胜家居控制 -- [nguyenvanduocit/all-in-one-model-context-protocol](https://github.com/nguyenvanduocit/all-in-one-model-context-protocol) 🏎 🏠 - 䞀些对匀发人员有甚的工具。 +- [@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服务噚。 - [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) - 🚀 ☁ MCP 服务噚 Tools 实现查询䞎执行 Dify AI 平台䞊自定义的工䜜流 +- [gotoolkits/DifyWorkflow](https://github.com/gotoolkits/mcp-difyworkflow-server) - 🏎 ☁ MCP 服务噚 Tools 实现查询䞎执行 Dify AI 平台䞊自定义的工䜜流 - [@pskill9/hn-server](https://github.com/pskill9/hn-server) - 📇 ☁ 解析 news.ycombinator.comHacker News的 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的暡型䞊䞋文协议MCP服务噚实现允讞䜠通过MCP客户端劂Anthropic的Claude桌面应甚等䞎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) - ₿ 䞀䞪暡型䞊䞋文协议MCP服务噚䜿 AI 暡型胜借䞎比特垁亀互允讞它们生成密钥、验证地址、解码亀易、查询区块铟等 +- [tomekkorbak/strava-mcp-server](https://github.com/tomekkorbak/strava-mcp-server) 🐍 ☁ - An MCP server for Strava, an app for tracking physical exercise +- [tomekkorbak/oura-mcp-server](https://github.com/tomekkorbak/oura-mcp-server) 🐍 ☁ - An MCP server for Oura, an app for tracking sleep +- [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). +- [@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) - 📇 ☁ [Kibela](https://kibe.la/) 侎 MCP 的集成 +- [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) 📇 ☁ - 通过Replicate API提䟛囟像生成功胜。 -- [NakaokaRei/swift-mcp-gui](https://github.com/NakaokaRei/swift-mcp-gui.git) 🏠 🍏 - MCP服务噚可以执行键盘蟓入、錠标移劚等呜什 +- [kenliao94/mcp-server-rabbitmq](https://github.com/kenliao94/mcp-server-rabbitmq) 🐍 🏠 - Enable interaction (admin operation, message enqueue/dequeue) with RabbitMQ +- [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服务噚可以执行键盘蟓入、錠标移劚等呜什 +- [awwaiid/mcp-server-taskwarrior](https://github.com/awwaiid/mcp-server-taskwarrior) 🏠 📇 - An MCP server for basic local taskwarrior usage (add, update, remove tasks) ## 框架 - [FastMCP](https://github.com/jlowin/fastmcp) 🐍 - 甚于圚 Python 䞭构建 MCP 服务噚的高级框架 - [FastMCP](https://github.com/punkpeye/fastmcp) 📇 - 甚于圚 TypeScript 䞭构建 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 服务噚的高级框架 +- [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 服务噚的快速而䌘雅的 TypeScript 框架 +- [mcp-framework](https://github.com/QuantGeekDev/mcp-framework) - 📇 甚于构建 MCP 服务噚的快速而䌘雅的 TypeScript 框架 - [mcp-proxy](https://github.com/punkpeye/mcp-proxy) 📇 - 甚于䜿甚 `stdio` 䌠蟓的 MCP 服务噚的 TypeScript 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 框架䞓泚于类型安党。 @@ -376,7 +476,9 @@ 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) -- [mullerhai/sakura-mcp](https://github.com/mullerhai/sakura-mcp) 🊀 ☕ 🔌 - Scala MCP 框架 构建䌁䞚级MCP客户端和服务端 shade from modelcontextprotocol.io. +- [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) 🊀 ☕ - Scala MCP 框架 构建䌁䞚级MCP客户端和服务端 shade from modelcontextprotocol.io. - ## 实甚工具 @@ -388,12 +490,10 @@ 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 代理的框架 - -## 客户端 - -> [!NOTE] -> 寻扟 MCP 客户端请查看 [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) 仓库。 - +- [kukapay/whereami-mcp](https://github.com/kukapay/whereami-mcp) 🐍 ☁ - 䞀欟蜻量级MCP服务噚胜根据悚圓前的IP准确定䜍悚所圚的䜍眮。 +- [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服务噚进行聊倩和连接。圚MCP服务噚的匀发䞎测试阶段非垞实甚。 ## 提瀺和技巧 From ae8b880d9cec77382fedc7444d99ff5c9d31ba50 Mon Sep 17 00:00:00 2001 From: Tod Sacerdoti Date: Fri, 28 Mar 2025 08:14:01 -0700 Subject: [PATCH 182/275] Update README.md --- README.md | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e10850f2..fc94035c 100644 --- a/README.md +++ b/README.md @@ -65,8 +65,9 @@ Checkout [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) > [!NOTE] > We now have a [web-based directory](https://glama.ai/mcp/servers) that is synced with the repository. -* 📂 - [Browser Automation](#browser-automation) +* 🔗 - [Aggregators](#aggregators) * 🎚 - [Art & Culture](#art-and-culture) +* 📂 - [Browser Automation](#browser-automation) * ☁ - [Cloud Platforms](#cloud-platforms) * 🖥 - [Command Line](#command-line) * 💬 - [Communication](#communication) @@ -87,6 +88,20 @@ Checkout [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) * 🔄 - [Version Control](#version-control) * 🛠 - [Other Tools and Integrations](#other-tools-and-integrations) +### 🔗 Aggregators + +Servers for accessing many apps and tools through a single MCP server. +- [@PipedreamHQ/pipedream](https://github.com/PipedreamHQ/pipedream/tree/master/modelcontextprotocol) ☁ 🏠 - Connect with 2,500 APIs with 8,000+ prebuilt tools, and manage servers for your users, in your own app. +- [Zapier MCP Server](https://zapier.com/mcp) ☁ - Connect your AI Agents to 8,000 apps instantly. + +### 🎚 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 +- [yuna0x0/anilist-mcp](https://github.com/yuna0x0/anilist-mcp) 📇 ☁ - A MCP server integrating AniList API for anime and manga information + ### 📂 Browser Automation Web content access and automation capabilities. Enables searching, scraping, and processing web content in AI-friendly formats. @@ -102,15 +117,6 @@ Web content access and automation capabilities. Enables searching, scraping, and - [@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. - -### 🎚 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 -- [yuna0x0/anilist-mcp](https://github.com/yuna0x0/anilist-mcp) 📇 ☁ - A MCP server integrating AniList API for anime and manga information - ### ☁ Cloud Platforms Cloud platform service integration. Enables management and interaction with cloud infrastructure and services. From 8c505d79f89a90d059f7b57add9f7b955565a5ae Mon Sep 17 00:00:00 2001 From: BLIAL OTHMANE Date: Fri, 28 Mar 2025 16:37:29 +0000 Subject: [PATCH 183/275] add icons --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0673413a..e0fc7ab2 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ Run commands, capture output and otherwise interact with shells and command line - [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) -- [OthmaneBlial/term_mcp_deepseek](https://github.com/OthmaneBlial/term_mcp_deepseek) A DeepSeek MCP-like Server for Terminal +- [OthmaneBlial/term_mcp_deepseek](https://github.com/OthmaneBlial/term_mcp_deepseek) 🐍 🏠 - A DeepSeek MCP-like Server for Terminal ### 💬 Communication From 58bba2df1053f3d6a86a649342d2f29f335fbc70 Mon Sep 17 00:00:00 2001 From: Luke X Date: Fri, 28 Mar 2025 19:01:04 -0400 Subject: [PATCH 184/275] 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 185/275] 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 186/275] 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 187/275] 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 188/275] 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 189/275] 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 190/275] 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 191/275] 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 0c8d63827e43f7776b4ba87dfd9e8e4aa90aba71 Mon Sep 17 00:00:00 2001 From: Gabriel Ferreira Rosalino Date: Sat, 29 Mar 2025 10:29:04 -0300 Subject: [PATCH 192/275] chore: add github.com/gabfr/waha-api-mcp-server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2a6786b7..258267c3 100644 --- a/README.md +++ b/README.md @@ -482,6 +482,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. +- [gabfr/waha-api-mcp-server](https://github.com/gabfr/waha-api-mcp-server) 💬 - An MCP server with openAPI specs for using the WhatsApp unnoficial API (https://waha.devlike.pro/ - also open source: https://github.com/devlikeapro/waha ## Utilities From 0a901907743faa12a7d2b7661ebdc06dc95f44ce Mon Sep 17 00:00:00 2001 From: weibaohui Date: Sat, 29 Mar 2025 22:36:34 +0800 Subject: [PATCH 193/275] 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 194/275] 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 195/275] 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 196/275] 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 197/275] 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 a601a75f9e6c413b698c06c1641475f94f4801a2 Mon Sep 17 00:00:00 2001 From: Sahil Khan <1988.sahil@gmail.com> Date: Sun, 30 Mar 2025 00:53:47 +0530 Subject: [PATCH 198/275] add: last9 mcp server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 947bc7b2..4598a51c 100644 --- a/README.md +++ b/README.md @@ -212,6 +212,7 @@ Secure database access with schema inspection capabilities. Enables querying and Tools and integrations that enhance the development workflow and environment management. +- [Last9 Observability MCP](https://github.com/last9/last9-mcp-server) - Seamlessly bring real-time production context—logs, metrics, and traces—into your local environment to auto-fix code faster. - [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. From 656ba88350b73a4c7d4a67ffb1a5554559eb4316 Mon Sep 17 00:00:00 2001 From: pab1it0 Date: Sat, 29 Mar 2025 23:16:17 +0300 Subject: [PATCH 199/275] Add chess.com mcp --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 947bc7b2..ea5b6c7b 100644 --- a/README.md +++ b/README.md @@ -289,7 +289,7 @@ Financial data access and cryptocurrency market information. Enables querying re ### 🎮 Gaming Integration with gaming related data, game engines, and services - +- [pab1ito/chess-mcp](https://github.com/pab1ito/chess-mcp) 🐍 ☁ - Access Chess.com player data, game records, and other public information through standardized MCP interfaces, allowing AI assistants to search and analyze chess information. - [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. - [CoderGamester/mcp-unity](https://github.com/CoderGamester/mcp-unity) 📇 #⃣ 🏠 - MCP Server for Unity3d Game Engine integration for game development 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 200/275] 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 201/275] 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 202/275] 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 203/275] 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 204/275] 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 205/275] 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 206/275] 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 0d3d4fd61c554700074016fedcf214c9f6075e7e Mon Sep 17 00:00:00 2001 From: Ilya Gulya Date: Sun, 30 Mar 2025 16:04:07 +0500 Subject: [PATCH 207/275] Add Gradle 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..4c0a9506 100644 --- a/README-ja.md +++ b/README-ja.md @@ -253,6 +253,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サヌバヌ +- [IlyaGulya/gradle-mcp-server](https://github.com/IlyaGulya/gradle-mcp-server) ☕ 🏠 - Gradle Tooling API を䜿甚しおプロゞェクトを怜査し、タスクを実行し、テスト結果をテストごずに報告するGradle連携 ## フレヌムワヌク diff --git a/README-zh.md b/README-zh.md index 1a7687bc..841ccafd 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 代码理解、修改和项目分析并提䟛党面的工具支持。 +- [IlyaGulya/gradle-mcp-server](https://github.com/IlyaGulya/gradle-mcp-server) ☕ 🏠 - 䜿甚 Gradle Tooling API 来检查项目、执行任务并圚每䞪测试的级别进行测试结果报告的 Gradle 集成 ### 🧮 数据科孊工具 diff --git a/README.md b/README.md index 947bc7b2..ab37bffa 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 +- [IlyaGulya/gradle-mcp-server](https://github.com/IlyaGulya/gradle-mcp-server) ☕ 🏠 - Gradle integration using the Gradle Tooling API to inspect projects, execute tasks, and run tests with per-test result reporting ### 🧮 Data Science Tools From a91e3f5a81bb66c5705b2f5047fbe577b23fcebe Mon Sep 17 00:00:00 2001 From: kopfrechner Date: Sun, 30 Mar 2025 14:49:14 +0200 Subject: [PATCH 208/275] 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 209/275] 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 210/275] 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 211/275] 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 212/275] 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 9e7646989908586c7ca47ac4310ff0fc580d5779 Mon Sep 17 00:00:00 2001 From: Luke Harries Date: Sun, 30 Mar 2025 17:24:22 +0100 Subject: [PATCH 213/275] Add WhatsApp MCP server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 947bc7b2..d3f91f13 100644 --- a/README.md +++ b/README.md @@ -137,6 +137,7 @@ Run commands, capture output and otherwise interact with shells and command line Integration with communication platforms for message management and channel operations. Enables AI models to interact with team communication tools. +- [lharries/whatsapp-mcp](https://github.com/lharries/whatsapp-mcp) - 🌐 ☁ - An MCP server for WhatsApp, search and send through pesonal and group messages - [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 - [@modelcontextprotocol/server-slack](https://github.com/modelcontextprotocol/servers/tree/main/src/slack) 📇 ☁ - Slack workspace integration for channel management and messaging From 71086b0f512bb06f863ee5d3cdd5744c608186cf Mon Sep 17 00:00:00 2001 From: hellokaton Date: Mon, 31 Mar 2025 11:20:41 +0800 Subject: [PATCH 214/275] add unsplash-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..b4504398 100644 --- a/README-ja.md +++ b/README-ja.md @@ -194,6 +194,7 @@ aliyun/alibabacloud-tablestore-mcp-server ☕ 🐍 ☁ - 阿里云衚栌存 - [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) 🐍 ☁ - Hacker Newsの怜玢、トップストヌリヌの取埗などを行うMCPサヌバヌ。 - [chanmeng/google-news-mcp-server](https://github.com/ChanMeng666/server-google-news) 📇 ☁ - 自動トピック分類、倚蚀語サポヌト、[SerpAPI](https://serpapi.com/)を通じたヘッドラむン、ストヌリヌ、関連トピックの包括的な怜玢機胜を備えたGoogle News統合。 +- [hellokaton/unsplash-mcp-server](https://github.com/hellokaton/unsplash-mcp-server)) 🐍🔎☁ - Unsplash 画像怜玢機胜の統合甚 ### 🔒 セキュリティ diff --git a/README-zh.md b/README-zh.md index 1a7687bc..6a4e2a98 100644 --- a/README-zh.md +++ b/README-zh.md @@ -287,6 +287,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [erithwik/mcp-hn](https://github.com/erithwik/mcp-hn) 🐍 ☁ - 䞀䞪甚于搜玢 Hacker News、获取热闚故事等的 MCP 服务噚。 - [chanmeng/google-news-mcp-server](https://github.com/ChanMeng666/server-google-news) 📇 ☁ - Google News 集成具有自劚䞻题分类、倚语蚀支持以及通过 [SerpAPI](https://serpapi.com/) 提䟛的标题、故事和盞关䞻题的绌合搜玢功胜。 - [devflowinc/trieve](https://github.com/devflowinc/trieve/tree/main/clients/mcp-server) 🎖📇☁🏠 - 通过 [Trieve](https://trieve.ai) 爬取、嵌入、分块、搜玢和检玢数据集䞭的信息 +- [hellokaton/unsplash-mcp-server](https://github.com/hellokaton/unsplash-mcp-server)) 🐍🔎☁ - 甚于集成 Unsplash 囟片搜玢功胜 ### 🔒 安党 diff --git a/README.md b/README.md index 947bc7b2..c3c0d3c2 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. +- [hellokaton/unsplash-mcp-server](https://github.com/hellokaton/unsplash-mcp-server)) 🐍🔎☁ - A MCP server for Unsplash image search. ### 🔒 Security From 547957d1e8a959932c71cead1b52498e90bce212 Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Mon, 31 Mar 2025 11:56:16 +0800 Subject: [PATCH 215/275] 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 216/275] 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 217/275] 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 218/275] 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 219/275] 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 d73b8ce3ff67e995ec6e3bd1487cc9ad234fcc6b Mon Sep 17 00:00:00 2001 From: Sahil Khan <1988.sahil@gmail.com> Date: Mon, 31 Mar 2025 12:30:16 +0530 Subject: [PATCH 220/275] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4598a51c..bc434ea8 100644 --- a/README.md +++ b/README.md @@ -212,7 +212,7 @@ Secure database access with schema inspection capabilities. Enables querying and Tools and integrations that enhance the development workflow and environment management. -- [Last9 Observability MCP](https://github.com/last9/last9-mcp-server) - Seamlessly bring real-time production context—logs, metrics, and traces—into your local environment to auto-fix code faster. +- [Last9 Observability MCP](https://github.com/last9/last9-mcp-server) - Seamlessly bring real-time production context—logs, metrics, and traces—into your local environment to auto-fix code faster - [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. @@ -328,6 +328,7 @@ Tools for creating and editing marketing content, working with web meta data, pr Access and analyze application monitoring data. Enables AI models to review error reports and performance metrics. +- [Last9 Observability MCP](https://github.com/last9/last9-mcp-server) - Seamlessly bring real-time production context—logs, metrics, and traces—into your local environment to auto-fix code faster - [@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 From 03a7f1a0e86377b057b3cf5a03451be5f3e66f14 Mon Sep 17 00:00:00 2001 From: Abhishek choraria Date: Mon, 31 Mar 2025 12:35:48 +0530 Subject: [PATCH 221/275] 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 90168e46ade67f1c26e2b2689c63503485a2951f Mon Sep 17 00:00:00 2001 From: Gabriel Ribeiro Date: Mon, 31 Mar 2025 04:29:01 -0300 Subject: [PATCH 222/275] add `simple-mcp` typescript framework Adding the GitHub link for the `simple-mcp` library. - NPM package: [simple-mcp on npm](https://www.npmjs.com/package/simple-mcp) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 947bc7b2..29e871bd 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. +- [simple-mcp](https://github.com/ribeirogab/simple-mcp) 📇 - A simple TypeScript library for creating MCP servers. ## Utilities From f24175c437429875ecf7012c911559d781dfe0b5 Mon Sep 17 00:00:00 2001 From: Thai Nguyen Hung Date: Mon, 31 Mar 2025 15:26:08 +0700 Subject: [PATCH 223/275] 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 b4388b4a34a0f3c760699d55121f6061be8c5583 Mon Sep 17 00:00:00 2001 From: Sid Shukla Date: Mon, 31 Mar 2025 10:49:57 +0200 Subject: [PATCH 224/275] Update README.md Add a link to a Nutanix MCP Server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 947bc7b2..b21bf43f 100644 --- a/README.md +++ b/README.md @@ -123,6 +123,7 @@ 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. +- [thunderboltsid/mcp-nutanix](https://github.com/thunderboltsid/mcp-nutanix) - 🏠/☁ Go-based MCP Server for interfacing with Nutanix Prism Central resources. ### 🖥 Command Line From b06b5f33a80d0028d378fb1e2963f39f52bb5c22 Mon Sep 17 00:00:00 2001 From: Ian Borla Date: Mon, 31 Mar 2025 17:01:54 +0800 Subject: [PATCH 225/275] 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 226/275] 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 227/275] 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 228/275] 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 229/275] 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 230/275] 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 231/275] 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 232/275] 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 233/275] 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 234/275] 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 235/275] 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 236/275] 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 4d1f638ce2ef1f015e353443e7892a147c22fdbd Mon Sep 17 00:00:00 2001 From: Alexei Ledenev Date: Mon, 31 Mar 2025 18:54:07 +0300 Subject: [PATCH 237/275] update emoji --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d0f94224..163aa760 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,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 +- [alexei-led/k8s-mcp-server](https://github.com/alexei-led/k8s-mcp-server) 🐍 🐳 - A lightweight yet robust server that empowers AI assistants to securely execute Kubernetes CLI commands (`kubectl`, `helm`, `istioctl`, and `argocd`) using Unix pipes 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 bcdada35109286d6c6fc6800dc3c148ae7116afc Mon Sep 17 00:00:00 2001 From: Alexei Ledenev Date: Mon, 31 Mar 2025 18:50:09 +0300 Subject: [PATCH 238/275] update emoji --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 163aa760..ab70f066 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,10 @@ 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 +<<<<<<< HEAD - [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 +======= +>>>>>>> 9fd5100 (update emoji) - [alexei-led/k8s-mcp-server](https://github.com/alexei-led/k8s-mcp-server) 🐍 🐳 - A lightweight yet robust server that empowers AI assistants to securely execute Kubernetes CLI commands (`kubectl`, `helm`, `istioctl`, and `argocd`) using Unix pipes 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. 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 239/275] 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 240/275] 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 9e7bd298bb662e11b60a4d09d99a6a4c8ab66598 Mon Sep 17 00:00:00 2001 From: Alexei Ledenev Date: Mon, 31 Mar 2025 18:56:13 +0300 Subject: [PATCH 241/275] remove merge comments --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index ab70f066..163aa760 100644 --- a/README.md +++ b/README.md @@ -121,10 +121,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 -<<<<<<< HEAD - [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 -======= ->>>>>>> 9fd5100 (update emoji) - [alexei-led/k8s-mcp-server](https://github.com/alexei-led/k8s-mcp-server) 🐍 🐳 - A lightweight yet robust server that empowers AI assistants to securely execute Kubernetes CLI commands (`kubectl`, `helm`, `istioctl`, and `argocd`) using Unix pipes 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. 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 242/275] 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 243/275] 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 244/275] 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 245/275] 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 From b95f6b6d4ded8fc99ed2721ffd70904cca4815a0 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:07:25 -0600 Subject: [PATCH 246/275] Update README.md --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index b4070a7e..1659ae10 100644 --- a/README.md +++ b/README.md @@ -281,18 +281,18 @@ 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. ### 🔒 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. +- [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. ### 🚆 Travel & Transportation @@ -311,7 +311,7 @@ Interact with Git repositories and version control platforms. Enables repository ### 🛠 Other Tools and Integrations -- [j3k0/speech.sh](https://github.com/j3k0/speech.sh/blob/main/MCP_README.md) 🎚 🏠 - Let the agent speak things out loud, notify you when he's done working with a quick summary +- [j3k0/speech.sh](https://github.com/j3k0/speech.sh/blob/main/MCP_README.md) 🏠 - Let the agent speak things out loud, notify you when he's done working with a quick summary - [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 - [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 From 41ff553ba9112ccd6f33a4809c663b80788155f0 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:09:51 -0600 Subject: [PATCH 247/275] Update README-zh.md --- README-zh.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README-zh.md b/README-zh.md index 696d647c..417cd0bc 100644 --- a/README-zh.md +++ b/README-zh.md @@ -267,6 +267,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [chanmeng/google-news-mcp-server](https://github.com/ChanMeng666/server-google-news) 📇 ☁ - Google News 集成具有自劚䞻题分类、倚语蚀支持以及通过 [SerpAPI](https://serpapi.com/) 提䟛的标题、故事和盞关䞻题的绌合搜玢功胜。 - [devflowinc/trieve](https://github.com/devflowinc/trieve/tree/main/clients/mcp-server) 🎖📇☁🏠 - 通过 [Trieve](https://trieve.ai) 爬取、嵌入、分块、搜玢和检玢数据集䞭的信息 - [zoomeye-ai/mcp_zoomeye](https://github.com/zoomeye-ai/mcp_zoomeye) 📇 ☁ - 䜿甚 ZoomEye API 搜玢党球眑络空闎资产 + ### 🔒 安党 - [dnstwist MCP Server](https://github.com/BurtTheCoder/mcp-dnstwist) 📇🪟☁ - dnstwist 的 MCP 服务噚这是䞀䞪区倧的 DNS 暡糊测试工具可垮助检测域名抢泚、钓鱌和䌁䞚窃密行䞺 From 981f8de573e5c9d01555fbb1e27150f8bd3f5bab Mon Sep 17 00:00:00 2001 From: Otavio Rodolfo Piske Date: Tue, 4 Mar 2025 11:48:43 +0100 Subject: [PATCH 248/275] Add Wanaku MCP Router to the list of other tools and integrations --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index dece6348..52525fea 100644 --- a/README.md +++ b/README.md @@ -527,6 +527,7 @@ Interact with Git repositories and version control platforms. Enables repository - [yuna0x0/hackmd-mcp](https://github.com/yuna0x0/hackmd-mcp) 📇 ☁ - Allows AI models to interact with [HackMD](https://hackmd.io) - [lciesielski/mcp-salesforce](https://github.com/lciesielski/mcp-salesforce-example) 🏠 ☁ - MCP server with basic demonstration of interactions with Salesforce instance - [pwh-pwh/cal-mcp](https://github.com/pwh-pwh/cal-mcp) - An MCP server for Mathematical expression calculation +- [Wanaku MCP Router](https://github.com/wanaku-ai/wanaku) - ☕ ☁ 🏠 The Wanaku MCP Router is a SSE-based MCP server that provides an extensible routing engine that allows integrating your enterprise systems with AI agents. ## Frameworks From ca065940bfa9d48bce497fed74bc822e54f9c05f Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:14:31 -0600 Subject: [PATCH 249/275] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6cc3908d..474aa1f8 100644 --- a/README.md +++ b/README.md @@ -258,7 +258,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. +- [@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. @@ -285,10 +285,12 @@ Tools and integrations that enhance the development workflow and environment man - [automation-ai-labs/mcp-link](https://github.com/automation-ai-labs/mcp-link) 🏎 🏠 - Seamlessly Integrate Any API with AI Agents (with OpenAPI Schema) - [hungthai1401/bruno-mcp](https://github.com/hungthai1401/bruno-mcp) 📇 🏠 - A MCP server for interacting with [Bruno API Client](https://www.usebruno.com/). - [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. +- [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 -### 🧮 Data Science Tools +### 🧮 Data Science Tools Integrations and tools designed to simplify data exploration, analysis and enhance data science workflows. + - [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. @@ -298,8 +300,6 @@ Integrations and tools designed to simplify data exploration, analysis and enhan Provides access to documentation and shortcuts for working on embedded devices. - [horw/esp-mcp](https://github.com/horw/esp-mcp) 📟 - Workflow for fixing build issues in ESP32 series chips using ESP-IDF. -- [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 -- [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 From 467b60fe3ae305f2e55750ab0f7fd5a89d25877a Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:15:52 -0600 Subject: [PATCH 250/275] Update README-ja.md --- README-ja.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README-ja.md b/README-ja.md index e9491d59..845006df 100644 --- a/README-ja.md +++ b/README-ja.md @@ -92,7 +92,7 @@ Webコンテンツのアクセスず自動化機胜。AIに優しい圢匏でWeb - [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のフレンドやワヌルド、アバタヌなどの情報を取埗するこずができたす。 -- [ntfy-mcp](https://github.com/teddyzxcv/ntfy-mcp) (by teddyzxcv) ntfy を䜿甚しおスマヌトフォンに通知を送信し、情報を確実に䌝達する MCP サヌバヌです。 +- [teddyzxcv/ntfy-mcp](https://github.com/teddyzxcv/ntfy-mcp) ntfy を䜿甚しおスマヌトフォンに通知を送信し、情報を確実に䌝達する MCP サヌバヌです。 ### 👀 顧客デヌタプラットフォヌム From 3b5e5196e21fdc8f791aac9a055a83a42e86638b Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:16:07 -0600 Subject: [PATCH 251/275] 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 fcb41488..94a005e0 100644 --- a/README-zh.md +++ b/README-zh.md @@ -132,7 +132,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [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的奜友、䞖界、化身等信息。 -- [ntfy-mcp](https://github.com/teddyzxcv/ntfy-mcp) (by teddyzxcv) 通过䜿甚 ntfy 向手机发送通知实时曎新信息的 MCP 服务噚。 +- [teddyzxcv/ntfy-mcp](https://github.com/teddyzxcv/ntfy-mcp) 通过䜿甚 ntfy 向手机发送通知实时曎新信息的 MCP 服务噚。 ### 👀 数据平台 From ef3bb0ca34529535288d8ea411f1bdf8ef1b86d6 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:16:24 -0600 Subject: [PATCH 252/275] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a8d24b16..f286ef93 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,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 -- [ntfy-mcp](https://github.com/teddyzxcv/ntfy-mcp) (by teddyzxcv) - The MCP server that keeps you informed by sending the notification on phone using ntfy +- [teddyzxcv/ntfy-mcp](https://github.com/teddyzxcv/ntfy-mcp) - The MCP server that keeps you informed by sending the notification on phone using ntfy ### 👀 Customer Data Platforms From d5da68aba14b7e266ec354e208614618389f154e Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:17:35 -0600 Subject: [PATCH 253/275] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 55cc3095..16098b78 100644 --- a/README.md +++ b/README.md @@ -352,13 +352,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. -- [Semgrep MCP Server](https://github.com/semgrep/mcp-security-audit) 📇🛡☁ Allow AI agents to scan code for security vulnerabilites using [Semgrep](https://semgrep.dev). +- [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. +- [Semgrep MCP Server](https://github.com/semgrep/mcp-security-audit) 📇 ☁ Allow AI agents to scan code for security vulnerabilites using [Semgrep](https://semgrep.dev). ### 🚆 Travel & Transportation From ce8097ab38b5b8ffeec70bc22d4321cc288c3dcf Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:19:01 -0600 Subject: [PATCH 254/275] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 38a866b2..a14c6793 100644 --- a/README.md +++ b/README.md @@ -352,13 +352,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. -- [GhidraMCP](https://github.com/13bm/GhidraMCP) 🐍☕🏠 - MCP server for integrating Ghidra with AI assistants. This plugin enables binary analysis, providing tools for function inspection, decompilation, memory exploration, and import/export analysis via the Model Context Protocol. +- [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. +- [GhidraMCP](https://github.com/13bm/GhidraMCP) 🐍 ☕ 🏠 - MCP server for integrating Ghidra with AI assistants. This plugin enables binary analysis, providing tools for function inspection, decompilation, memory exploration, and import/export analysis via the Model Context Protocol. ### 🚆 Travel & Transportation From 00fd8c88afad5959026dd5451d8075269e432136 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:19:24 -0600 Subject: [PATCH 255/275] Update README-zh.md --- README-zh.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README-zh.md b/README-zh.md index 0d5d495e..cf4daf07 100644 --- a/README-zh.md +++ b/README-zh.md @@ -287,13 +287,13 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 ### 🔒 安党 -- [dnstwist MCP Server](https://github.com/BurtTheCoder/mcp-dnstwist) 📇🪟☁ - dnstwist 的 MCP 服务噚这是䞀䞪区倧的 DNS 暡糊测试工具可垮助检测域名抢泚、钓鱌和䌁䞚窃密行䞺 +- [dnstwist MCP Server](https://github.com/BurtTheCoder/mcp-dnstwist) 📇 🪟 ☁ - dnstwist 的 MCP 服务噚这是䞀䞪区倧的 DNS 暡糊测试工具可垮助检测域名抢泚、钓鱌和䌁䞚窃密行䞺 - [Maigret MCP Server](https://github.com/BurtTheCoder/mcp-maigret) 📇 ☁ - maigret 的 MCP 服务噚maigret 是䞀欟区倧的 OSINT 工具可从各种公共来源收集甚户垐户信息。歀服务噚提䟛甚于圚瀟亀眑络䞭搜玢甚户名和分析 URL 的工具。 - [Shodan MCP Server](https://github.com/BurtTheCoder/mcp-shodan) 📇 ☁ - MCP 服务噚甚于查询 Shodan API 和 Shodan CVEDB。歀服务噚提䟛 IP 查扟、讟倇搜玢、DNS 查扟、挏掞查询、CPE 查扟等工具。 - [VirusTotal MCP Server](https://github.com/BurtTheCoder/mcp-virustotal) 📇 ☁ - 甚于查询 VirusTotal API 的 MCP 服务噚。歀服务噚提䟛甚于扫描 URL、分析文件哈垌和检玢 IP 地址报告的工具。 -- [ORKL MCP Server](https://github.com/fr0gger/MCP_Security) 📇🛡☁ - 甚于查询 ORKL API 的 MCP 服务噚。歀服务噚提䟛获取嚁胁报告、分析嚁胁行䞺者和检玢嚁胁情报来源的工具。 -- [Security Audit MCP Server](https://github.com/qianniuspace/mcp-security-audit) 📇🛡☁ 䞀䞪区倧的 MCP (暡型䞊䞋文协议) 服务噚审计 npm 包䟝赖项的安党挏掞。内眮远皋 npm 泚册衚集成以进行实时安党检查 -- [GhidraMCP](https://github.com/13bm/GhidraMCP) 🐍☕🏠 - 甚于将Ghidra侎AI助手集成的MCP服务噚。该插件实现二进制分析提䟛凜数检查、反猖译、内存探玢和富入/富出分析等工具党郚基于暡型䞊䞋文协议Model Context Protocol。 +- [ORKL MCP Server](https://github.com/fr0gger/MCP_Security) 📇 ☁ - 甚于查询 ORKL API 的 MCP 服务噚。歀服务噚提䟛获取嚁胁报告、分析嚁胁行䞺者和检玢嚁胁情报来源的工具。 +- [Security Audit MCP Server](https://github.com/qianniuspace/mcp-security-audit) 📇 ☁ 䞀䞪区倧的 MCP (暡型䞊䞋文协议) 服务噚审计 npm 包䟝赖项的安党挏掞。内眮远皋 npm 泚册衚集成以进行实时安党检查 +- [GhidraMCP](https://github.com/13bm/GhidraMCP) 🐍 ☕ 🏠 - 甚于将Ghidra侎AI助手集成的MCP服务噚。该插件实现二进制分析提䟛凜数检查、反猖译、内存探玢和富入/富出分析等工具党郚基于暡型䞊䞋文协议Model Context Protocol。 ### 🚆 旅行䞎亀通 From 99a892bfee6fff9136c8129ff7ec27adbaa99ffa Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:19:42 -0600 Subject: [PATCH 256/275] Update README-ja.md --- README-ja.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README-ja.md b/README-ja.md index ae53b309..470893b2 100644 --- a/README-ja.md +++ b/README-ja.md @@ -195,8 +195,8 @@ aliyun/alibabacloud-tablestore-mcp-server ☕ 🐍 ☁ - 阿里云衚栌存 ### 🔒 セキュリティ -- [Security Audit MCP Server](https://github.com/qianniuspace/mcp-security-audit) 📇🛡☁ 匷力なモデルコンテキストプロトコルMCPサヌバヌで、npmパッケヌゞ䟝存関係のセキュリティ脆匱性を監査したす。リモヌトnpmレゞストリ統合を備えたリアルタむムセキュリティチェックを䜿甚しお構築されおいたす。 -- [GhidraMCP](https://github.com/13bm/GhidraMCP) 🐍☕🏠 - GhidraをAIアシスタントず統合するためのMCPサヌバヌ。このプラグむンはバむナリ分析を可胜にし、モデルコンテキストプロトコルを通じお関数怜査、逆コンパむル、メモリ探玢、むンポヌト/゚クスポヌト分析などのツヌルを提䟛したす。 +- [Security Audit MCP Server](https://github.com/qianniuspace/mcp-security-audit) 📇 ☁ 匷力なモデルコンテキストプロトコルMCPサヌバヌで、npmパッケヌゞ䟝存関係のセキュリティ脆匱性を監査したす。リモヌトnpmレゞストリ統合を備えたリアルタむムセキュリティチェックを䜿甚しお構築されおいたす。 +- [GhidraMCP](https://github.com/13bm/GhidraMCP) 🐍 ☕ 🏠 - GhidraをAIアシスタントず統合するためのMCPサヌバヌ。このプラグむンはバむナリ分析を可胜にし、モデルコンテキストプロトコルを通じお関数怜査、逆コンパむル、メモリ探玢、むンポヌト/゚クスポヌト分析などのツヌルを提䟛したす。 ### 🚆 旅行ず亀通 From de253f1b86e4d0225413591a74445e20d356bfc9 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:20:55 -0600 Subject: [PATCH 257/275] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 441f9368..46763877 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ Web content access and automation capabilities. Enables searching, scraping, and - [@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 -- [@microsoft/playwright-mcp](https://github.com/microsoft/playwright-mcp) 🌐 - Official Microsoft Playwright MCP server, enabling LLMs to interact with web pages through structured accessibility snapshots +- [@microsoft/playwright-mcp](https://github.com/microsoft/playwright-mcp) - Official Microsoft Playwright MCP server, enabling LLMs to interact with web pages through structured accessibility snapshots - [@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. From a74d88fae115c99d4bd9b6b93b38f067def9ee3f Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:21:40 -0600 Subject: [PATCH 258/275] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6a4175bc..c04505ca 100644 --- a/README.md +++ b/README.md @@ -206,7 +206,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. -- [Aiven MCP Server](https://github.com/Aiven-Open/mcp-aiven) - 🐍 ☁ 🎖 - Navigate your [Aiven projects](https://go.aiven.io/mcp-server) and interact with the PostgreSQL®, Apache Kafka®, ClickHouse® and OpenSearch® services +- [Aiven-Open/mcp-aiven](https://github.com/Aiven-Open/mcp-aiven) - 🐍 ☁ 🎖 - Navigate your [Aiven projects](https://go.aiven.io/mcp-server) and interact with the PostgreSQL®, Apache Kafka®, ClickHouse® and OpenSearch® services - [qdrant/mcp-server-qdrant](https://github.com/qdrant/mcp-server-qdrant) 🐍 🏠 - A Qdrant MCP server ### 💻 Developer Tools From a52a6985638d972ec767c779090b5b824442297c Mon Sep 17 00:00:00 2001 From: Kingsley Idehen Date: Mon, 31 Mar 2025 12:27:48 -0400 Subject: [PATCH 259/275] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 48471b69..86e5c8c4 100644 --- a/README.md +++ b/README.md @@ -234,7 +234,9 @@ Secure database access with schema inspection capabilities. Enables querying and - [Aiven-Open/mcp-aiven](https://github.com/Aiven-Open/mcp-aiven) - 🐍 ☁ 🎖 - Navigate your [Aiven projects](https://go.aiven.io/mcp-server) and interact with the PostgreSQL®, Apache Kafka®, ClickHouse® and OpenSearch® services - [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 -- [zilliztech/mcp-server-milvus](https://github.com/zilliztech/mcp-server-milvus) 🐍 🏠 ☁ - MCP Server for Milvus / Zilliz, making it possible to interact with your database. +- [zilliztech/mcp-server-milvus](https://github.com/zilliztech/mcp-server-milvus) 🐍 🏠 ☁ - MCP Server for Milvus / Zilliz, making it possible to interact with your database. +- [openlink/mcp-server-odbc](https://github.com/OpenLinkSoftware/mcp-odbc-server) 🐍 🏠 - An MCP server for generic Database Management System (DBMS) Connectivity via the Open Database Connectivity (ODBC) protocol +- [openlink/mcp-server-sqlalchemy](https://github.com/OpenLinkSoftware/mcp-sqlalchemy-server) 🐍 🏠 - An MCP server for generic Database Management System (DBMS) Connectivity via SQLAlchemy using Python ODBC (pyodbc) ### 📊 Data Platforms From f20db5f3c7f7a7488a0184eaf795046bcc3d507b Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:28:58 -0600 Subject: [PATCH 260/275] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 67fffdf2..ce7b3a58 100644 --- a/README.md +++ b/README.md @@ -200,7 +200,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. -- [weaviate/mcp-server-weaviate](https://github.com/weaviate/mcp-server-weaviate)🐍 📇 ☁ - An MCP Server to connect to your Weaviate collections as a knowledge base as well as using Weaviate as a chat memory store. +- [weaviate/mcp-server-weaviate](https://github.com/weaviate/mcp-server-weaviate) 🐍 📇 ☁ - An MCP Server to connect to your Weaviate collections as a knowledge base as well as using Weaviate as a chat memory store. ### 💻 Developer Tools From c9939319454ea112b9effb8a903dce195b1e8a29 Mon Sep 17 00:00:00 2001 From: Will Date: Tue, 1 Apr 2025 00:29:19 +0800 Subject: [PATCH 261/275] Add zh_TW translations --- README-ja.md | 3 +- README-ko.md | 3 +- README-zh.md | 3 +- README-zh_TW.md | 444 ++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 3 +- 5 files changed, 452 insertions(+), 4 deletions(-) create mode 100644 README-zh_TW.md diff --git a/README-ja.md b/README-ja.md index 6c3b07c6..bec8a0f8 100644 --- a/README-ja.md +++ b/README-ja.md @@ -1,7 +1,8 @@ # 玠晎らしいMCPサヌバヌ [![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/䞭文文件-點擊查看-orange)](README-zh_TW.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) diff --git a/README-ko.md b/README-ko.md index 59d344f8..9a43db1a 100644 --- a/README-ko.md +++ b/README-ko.md @@ -1,7 +1,8 @@ # 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/䞭文文件-點擊查看-orange)](README-zh_TW.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) diff --git a/README-zh.md b/README-zh.md index 572ec887..df6a9c9f 100644 --- a/README-zh.md +++ b/README-zh.md @@ -1,7 +1,8 @@ # 粟选的 MCP 服务噚 [![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/䞭文文件-點擊查看-orange)](README-zh_TW.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) diff --git a/README-zh_TW.md b/README-zh_TW.md new file mode 100644 index 00000000..6e66647f --- /dev/null +++ b/README-zh_TW.md @@ -0,0 +1,444 @@ +# 粟遞的 MCP 䌺服噚 [![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_TW.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](#什麌是MCP) +* [教孞](#教孞) +* [瀟區](#瀟區) +* [說明](#說明) +* [Server 寊珟](#䌺服噚寊珟) +* [框架](#框架) +* [寊甚工具](#寊甚工具) +* [甚戶端](#甚戶端) +* [提瀺和技巧](#提瀺和技巧) + +## 什麌是MCP + +[MCP](https://modelcontextprotocol.io/) 是䞀皮開攟協議通過暙準化的䌺服噚寊珟䜿 AI 暡型胜倠安党地與本地和遠端資源進行亀互。歀列衚重點關泚可甚斌生產和寊驗性的 MCP 䌺服噚這些䌺服噚通過文件蚪問、資料庫連接、API 敎合和其他䞊䞋文服務䟆擎展 AI 功胜。 + +## 教孞 + +* [Model Context Protocol (MCP) 快速開始](https://glama.ai/blog/2024-11-25-model-context-protocol-quickstart) +* [蚭眮 Claude 桌面應甚皋匏以䜿甚 SQLite 資料庫](https://youtu.be/wxCCzo9dGj0) + +## 瀟區 + +* [r/mcp Reddit](https://www.reddit.com/r/mcp) +* [Discord 服務](https://glama.ai/mcp/discord) + +## 說明 + +* 🎖 – 官方寊珟 +* 皋匏語蚀 + * 🐍 – Python 代碌庫 + * 📇 – TypeScript 代碌庫 + * 🏎 – Go 代碌庫 + * 🊀 – Rust 代碌庫 + * #⃣ - C# 代碌庫 + * ☕ - Java 代碌庫 +* 範圍 + * ☁ - 雲服務 + * 🏠 - 本地服務 +* 操䜜系統 + * 🍎 – For macOS + * 🪟 – For Windows + + +> [!NOTE] +> 關斌本地 🏠 和雲 ☁ 的區別 +> * 當 MCP 䌺服噚與本地安裝的軟體通信時䜿甚本地服務䟋劂控制 Chrome 瀏芜噚。 +> * 當 MCP 䌺服噚與遠端 API 通信時䜿甚網路服務䟋劂倩氣 API。 +## 䌺服噚寊珟 + +> [!NOTE] +> 我們珟圚有䞀個與儲存庫同步的[基斌 Web 的目錄](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](#finance--fintech) +* 🎮 - [遊戲](#gaming) +* 🧠 - [知識與蚘憶](#knowledge--memory) +* 🗺 - [䜍眮服務](#location-services) +* 🎯 - [行銷](#marketing) +* 📊 - [監枬](#monitoring) +* 🔎 - [搜尋](#search) +* 🔒 - [安党](#security) +* 🚆 - [旅行與亀通](#travel-and-transportation) +* 🔄 - [版本控制](#version-control) +* 🛠 - [其他工具和敎合](#other-tools-and-integrations) + +### 📂 瀏芜噚自動化 + +Web 內容蚪問和自動化功胜。支揎以 AI 友奜栌匏搜尋、抓取和處理 Web 內容。 +- [@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) 📇 ☁ - 獲取 YouTube 字幕和文字蚘錄以䟛 AI 分析 +- [@recursechat/mcp-server-apple-shortcuts](https://github.com/recursechat/mcp-server-apple-shortcuts) 📇 🏠 🍎 - MCP 䌺服噚與 Apple Shortcuts 的敎合 +- [@fradser/mcp-server-apple-reminders](https://github.com/FradSer/mcp-server-apple-reminders) 📇 🏠 🍎 - macOS 䞊與 Apple Reminders 敎合的 MCP 䌺服噚 +- [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呌叫範䟋、枬詊腳本。 + +### 🎚 藝術與文化 + +提䟛藝術收藏、文化遺產和博物通資料庫的蚪問與探玢。讓 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 䌺服噚 + +### ☁ 雲平台 + +雲平台服務敎合。寊珟與雲基瀎蚭斜和服務的管理和亀互。 + +- [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 介面䟆管理虛擬機。 +- [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 + +運行呜什、捕獲茞出以及以其他方匏與 shell 和呜什行工具亀互。 + +- [ferrislucas/iterm-mcp](https://github.com/ferrislucas/iterm-mcp) 🖥 🛠 💬 - 䞀個為 iTerm 終端提䟛蚪問胜力的 MCP 䌺服噚。悚可以執行呜什䞊就終端䞭看到的內容進行提問亀互。 +- [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) 的安党 shell 呜什執行䌺服噚 + +### 💬 瀟亀 + +與通蚊平台集成寊珟消息管理和枠道運營。䜿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 䌺服噚通過暡型䞊䞋文協議 (MCP) 提䟛對 iMessage 資料庫的安党蚪問䜿 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 日曆集成。 +- [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的奜友、䞖界、化身等資蚊。 + +### 👀 敞據平台 + +提䟛對客戶敞據平台內客戶資料的蚪問 + +- [sergehuber/inoyu-mcp-unomi-server](https://github.com/sergehuber/inoyu-mcp-unomi-server) 📇 ☁ - MCP 䌺服噚甚斌蚪問和曎新 Apache Unomi CDP 䌺服噚䞊的蚭定檔。 +- [OpenDataMCP/OpenDataMCP](https://github.com/OpenDataMCP/OpenDataMCP) 🐍☁ - 䜿甚暡型䞊䞋文協議將任䜕開攟敞據連接到任䜕 LLM。 +- [tinybirdco/mcp-tinybird](https://github.com/tinybirdco/mcp-tinybird) 🐍☁ - MCP 䌺服噚可埞任䜕 MCP 甚戶端與 Tinybird Workspace 進行亀互。 +- [@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 資料庫集成具有架構檢查、讀寫功胜 +- [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) 🐍 ☁ - 集成 Apache Kafka 和 Timeplus。可以獲取Kafka䞭的最新敞據䞊通過 Timeplus 䟆 SQL 查詢。 +- [jovezhong/mcp-timeplus](https://github.com/jovezhong/mcp-timeplus) 🐍 ☁ - MCP server for Apache Kafka and Timeplus. Able to list Kafka topics, poll Kafka messages, save Kafka data locally and query streaming data with SQL via Timeplus +- [@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) 🐍 🏠 - 基斌 Node.js 的 MySQL 資料庫集成提䟛安党的 MySQL 資料庫操䜜 +- [@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 MCP 䌺服噚甚斌管理和創建 Supabase 䞭的項目和組織 +- [ktanaka101/mcp-server-duckdb](https://github.com/ktanaka101/mcp-server-duckdb) 🐍 🏠 - DuckDB 資料庫集成了暡匏檢查和查詢功胜 +- [QuantGeekDev/mongo-mcp](https://github.com/QuantGeekDev/mongo-mcp) 📇 🏠 - MongoDB 集成䜿 LLM 胜倠盎接與資料庫亀互。 +- [tinybirdco/mcp-tinybird](https://github.com/tinybirdco/mcp-tinybird) 🐍 ☁ - Tinybird 集成查詢和 API 功胜 +- [kiliczsh/mcp-mongo-server](https://github.com/kiliczsh/mcp-mongo-server) 📇 🏠 - MongoDB 的暡型䞊䞋文協議䌺服噚 +- [KashiwaByte/vikingdb-mcp-server](https://github.com/KashiwaByte/vikingdb-mcp-server) 🐍 ☁ - VikingDB 資料庫集成了collection和index的基本資蚊介玹䞊提䟛向量儲存和查詢的功胜. +- [neo4j-contrib/mcp-neo4j](https://github.com/neo4j-contrib/mcp-neo4j) 🐍 🏠 - Neo4j 的暡型䞊䞋文協議 +- [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 䌺服噚通過暡型䞊䞋文協議 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 服務。 +- [xing5/mcp-google-sheets](https://github.com/xing5/mcp-google-sheets) 🐍 ☁ - 䞀個甚斌與 Google Sheets 亀互的暡型䞊䞋文協議䌺服噚。該䌺服噚通過 Google Sheets API 提䟛創建、讀取、曎新和管理電子衚栌的工具。 + +### 💻 開癌者工具 + +增匷開癌工䜜流皋和環境管理的工具和集成。 + +- [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) 🏎 🏠 - 䜿甚開攟 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) 📇 🏠 - 䞀個 MCP 䌺服噚甚斌與 iOS 開癌者的 App Store Connect API 進行通信 +- [@sammcj/mcp-package-version](https://github.com/sammcj/mcp-package-version) 📊 🏠 - MCP 䌺服噚可幫助 LLM 圚線寫皋匏碌時建議最新的穩定套裝軟體版本。 +- [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 的 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 䌺服噚 +- [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 䌺服噚。 +- [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 暡擬噚亀互。 +- [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) 閘道噚進行党面的配眮和管理。 +- [ReAPI-com/mcp-openapi](https://github.com/ReAPI-com/mcp-openapi) 📇 🏠 - MCP䌺服噚讓LLM胜倠了解悚的OpenAPI芏範的所有資蚊以癌珟、解釋和生成代碌/暡擬敞據 +- [automation-ai-labs/mcp-link](https://github.com/automation-ai-labs/mcp-link) 🏎 🏠 - 無瞫集成任䜕 API 與 AI 代理通過 OpenAPI 架構 + +### 🧮 敞據科孞工具 + +旚圚簡化敞據探玢、分析和增匷敞據科孞工䜜流皋的集成和工具。 + +- [@reading-plus-ai/mcp-server-data-exploration](https://github.com/reading-plus-ai/mcp-server-data-exploration) 🐍 ☁ - 支揎對基斌 .csv 的敞據集進行自䞻敞據探玢以最小的成本提䟛智慧芋解。 +- [zcaceres/markdownify-mcp](https://github.com/zcaceres/markdownify-mcp) 📇 🏠 - 䞀個 MCP 䌺服噚可將幟乎任䜕文件或網路內容蜉換為 Markdown + +### 📂 文件系統 + +提䟛對本地文件系統的盎接蚪問䞊具有可配眮的權限。䜿 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 共享代碌䞊䞋文 +- [Xuanwo/mcp-server-opendal](https://github.com/Xuanwo/mcp-server-opendal) 🐍 🏠 ☁ - 䜿甚 Apache OpenDAL™ 蚪問任䜕儲存 +- [exoticknight/mcp-file-merger](https://github.com/exoticknight/mcp-file-merger) 📇 🏠 - 文件合䜵工具適配AI Chat長床限制 + +### 💰 金融 & 金融科技 + +金融敞據蚪問和加密貚幣垂堎資蚊。支揎查詢即時垂堎敞據、加密貚幣價栌和財務分析。 + +- [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) 🐍 ☁ - Tastyworks API 集成甚斌管理 Tastytrade 平台的亀易掻動 +- [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 去獲取加密貚幣最新價栌 + +### 🎮 遊戲 + +遊戲盞關敞據和服務集成 + +- [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 暡型胜倠跚會話維護和查詢結構化資蚊。 + +- [@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) 📇 🏠 - 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 + +### 🗺 䜍眮服務 + +地理和基斌䜍眮的服務集成。支揎蚪問地圖敞據、方向和䜍眮資蚊。 + +- [@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 地址的地理䜍眮和網路資蚊 + +### 🎯 行銷 + +甚斌創建和線茯行銷內容、處理網頁元敞據、產品定䜍和線茯指南的工具。 + +- [Open Strategy Partners Marketing Tools](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 監控的 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 寊珟網頁搜尋功胜 +- [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 集成 +- [exa-labs/exa-mcp-server](https://github.com/exa-labs/exa-mcp-server) 🎖 📇 ☁ – 暡型䞊䞋文協議 (MCP) 䌺服噚讓 Claude 等 AI 助手可以䜿甚 Exa AI Search 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) - 🐍 ☁ MCP for LLM 甚斌搜尋和閱讀 arXiv 䞊的論文) +- [andybrandt/mcp-simple-pubmed](https://github.com/andybrandt/mcp-simple-pubmed) - 🐍 ☁ MCP 甚斌搜尋和閱讀 PubMed 䞭的醫孞/生呜科孞論文。 +- [apify/mcp-server-rag-web-browser](https://github.com/apify/mcp-server-rag-web-browser) 📇 ☁ - 䞀個甚斌 Apify 的 RAG Web 瀏芜噚 Actor 的 MCP 䌺服噚可以執行網頁搜尋、抓取 URL䞊以 Markdown 栌匏返回內容。 +- [SecretiveShell/MCP-searxng](https://github.com/SecretiveShell/MCP-searxng) 🐍 🏠 - 甚斌連接到 searXNG 寊䟋的 MCP 䌺服噚 +- [Bigsy/Clojars-MCP-Server](https://github.com/Bigsy/Clojars-MCP-Server) 📇 ☁ - Clojars MCP 䌺服噚提䟛 Clojure 庫的最新䟝賎資蚊 +- [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) 🐍 ☁ - 䞀個甚斌搜尋 Hacker News、獲取熱門故事等的 MCP 䌺服噚。 +- [chanmeng/google-news-mcp-server](https://github.com/ChanMeng666/server-google-news) 📇 ☁ - Google News 集成具有自動䞻題分類、倚語蚀支揎以及通過 [SerpAPI](https://serpapi.com/) 提䟛的暙題、故事和盞關䞻題的綜合搜尋功胜。 +- [devflowinc/trieve](https://github.com/devflowinc/trieve/tree/main/clients/mcp-server) 🎖📇☁🏠 - 通過 [Trieve](https://trieve.ai) 爬取、嵌入、分塊、搜尋和檢玢敞據集䞭的資蚊 +- [zoomeye-ai/mcp_zoomeye](https://github.com/zoomeye-ai/mcp_zoomeye) 📇 ☁ - 䜿甚 ZoomEye API 搜尋党球網路空間資產 +- [ConechoAI/openai-websearch-mcp](https://github.com/ConechoAI/openai-websearch-mcp/) 🐍 🏠 ☁ - 將OpenAI內建的`web_search`工具封蜉成MCP䌺服噚䜿甚. + +### 🔒 安党 + +- [dnstwist MCP Server](https://github.com/BurtTheCoder/mcp-dnstwist) 📇🪟☁ - dnstwist 的 MCP 䌺服噚這是䞀個匷倧的 DNS 暡糊枬詊工具可幫助檢枬域名搶蚻、釣魚和䌁業竊密行為 +- [Maigret MCP Server](https://github.com/BurtTheCoder/mcp-maigret) 📇 ☁ - maigret 的 MCP 䌺服噚maigret 是䞀欟匷倧的 OSINT 工具可埞各皮公共䟆源收集甚戶垳戶資蚊。歀䌺服噚提䟛甚斌圚瀟亀網路䞭搜尋䜿甚者名皱和分析 URL 的工具。 +- [Shodan MCP Server](https://github.com/BurtTheCoder/mcp-shodan) 📇 ☁ - MCP 䌺服噚甚斌查詢 Shodan API 和 Shodan CVEDB。歀䌺服噚提䟛 IP 尋扟、蚭備搜尋、DNS 尋扟、挏掞查詢、CPE 尋扟等工具。 +- [VirusTotal MCP Server](https://github.com/BurtTheCoder/mcp-virustotal) 📇 ☁ - 甚斌查詢 VirusTotal API 的 MCP 䌺服噚。歀䌺服噚提䟛甚斌掃描 URL、分析文件哈垌和檢玢 IP 地址報告的工具。 +- [ORKL MCP Server](https://github.com/fr0gger/MCP_Security) 📇🛡☁ - 甚斌查詢 ORKL API 的 MCP 䌺服噚。歀䌺服噚提䟛獲取嚁脅報告、分析嚁脅行為者和檢玢嚁脅情報䟆源的工具。 +- [Security Audit MCP Server](https://github.com/qianniuspace/mcp-security-audit) 📇🛡☁ 䞀個匷倧的 MCP (暡型䞊䞋文協議) 䌺服噚審蚈 npm 包䟝賎項的安党挏掞。內建遠端 npm 蚻冊衚集成以進行即時安党檢查。 + +### 🚆 旅行與亀通 + +蚪問旅行和亀通資蚊。可以查詢時刻衚、路線和即時旅行敞據。 + +- [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 集成提䟛矎國國家公園的詳现資蚊、譊報、遊客䞭心、露營地和掻動的最新資蚊 + +### 🔄 版本控制 + +與 Git 儲存庫和版本控制平台亀互。通過暙準化 API 寊珟儲存庫管理、代碌分析、拉取請求處理、問題跟蹀和其他版本控制操䜜。 + +- [@modelcontextprotocol/server-github](https://github.com/modelcontextprotocol/servers/tree/main/src/github) 📇 ☁ - GitHub API集成甚斌倉庫管理、PR、問題等 +- [@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 項目問題和合䜵請求無瞫互動。 + +### 🛠 其他工具和集成 + +- [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 助手可以智慧蚪問包文件和類型而無需閱讀敎個源文件 +- [pierrebrunelle/mcp-server-openai](https://github.com/pierrebrunelle/mcp-server-openai) 🐍 ☁ - 盎接埞Claude查詢OpenAI暡型䜿甚MCP協議 +- [@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 Desktop或任䜕MCP盞容應甚皋匏讀取和搜尋包含Markdown筆蚘的目錄劂Obsidian庫。 +- [anaisbetts/mcp-youtube](https://github.com/anaisbetts/mcp-youtube) 📇 ☁ - 獲取YouTube字幕 +- [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) 🐍 🏠 - 自動化shell執行、電腊控制和線碌代理。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。需芁䟛應商API金鑰 +- [evalstate/mcp-miro](https://github.com/evalstate/mcp-miro) 📇 ☁ - 蚪問 MIRO 癜板批次創建和讀取項目。需芁 REST API 的 OAUTH 金鑰。 +- [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) 🐍 ☁ - Confluence工䜜區的自然語蚀搜尋和內容蚪問 +- [pyroprompts/any-chat-completions-mcp](https://github.com/pyroprompts/any-chat-completions-mcp) - 與任䜕其他OpenAI SDK盞容的聊倩完成API對話䟋劂Perplexity、Groq、xAI等 +- [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) 🐍 🏠☁ - MCP 䌺服噚允蚱檢查甚戶端蚈算機䞊的本地時間或 NTP 䌺服噚䞊的當前 UTC 時間 +- [andybrandt/mcp-simple-openai-assistant](https://github.com/andybrandt/mcp-simple-openai-assistant) - 🐍 ☁ MCP 與 OpenAI 助手對話Claude 可以䜿甚任䜕 GPT 暡型䜜為他的助手 +- [@llmindset/mcp-hfspace](https://github.com/evalstate/mcp-hfspace) 📇 ☁ - 盎接埞 Claude 䜿甚 HuggingFace Spaces。䜿甚開源圖像生成、聊倩、芖芺任務等。支揎圖像、音蚊和文本䞊傳/䞋茉。 +- [zueai/mcp-manager](https://github.com/zueai/mcp-manager) 📇 ☁ - 簡單的 Web UI 甚斌安裝和管理 Claude 桌面應甚皋匏的 MCP 䌺服噚。 +- [wong2/mcp-cli](https://github.com/wong2/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) 📇 🏠 - 蚪問家庭助理敞據和控制蚭備燈、開關、恆溫噚等。 +- [allenporter/mcp-server-home-assistant](https://github.com/allenporter/mcp-server-home-assistant) 🐍 🏠 - 通過暡型䞊䞋文協議䌺服噚暎露所有 Home Assistant 語音意圖寊珟智慧家居控制 +- [nguyenvanduocit/all-in-one-model-context-protocol](https://github.com/nguyenvanduocit/all-in-one-model-context-protocol) 🏎 🏠 - 䞀些對開癌人員有甚的工具。 +- [@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 䌺服噚提䟛倚皮栌匏的日期和時間凜敞 +- [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) - 🚀 ☁ MCP 䌺服噚 Tools 寊珟查詢與執行 Dify AI 平台䞊自蚂的工䜜流 +- [@pskill9/hn-server](https://github.com/pskill9/hn-server) - 📇 ☁ 解析 news.ycombinator.comHacker News的 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 +- [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提䟛圖像生成功胜。 +- [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 管理專案和問題 +- [yuna0x0/hackmd-mcp](https://github.com/yuna0x0/hackmd-mcp) 📇 ☁ - 允蚱 AI 暡型與 [HackMD](https://hackmd.io) 亀互 +- [pwh-pwh/cal-mcp](https://github.com/pwh-pwh/cal-mcp) - MCP䌺服噚可以蚈算敞孞衚達匏 + +## 框架 +- [FastMCP](https://github.com/jlowin/fastmcp) 🐍 - 甚斌圚 Python 䞭構建 MCP 䌺服噚的高玚框架 +- [FastMCP](https://github.com/punkpeye/fastmcp) 📇 - 甚斌圚 TypeScript 䞭構建 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 䌺服噚的快速而優雅的 TypeScript 框架 +- [mcp-proxy](https://github.com/punkpeye/mcp-proxy) 📇 - 甚斌䜿甚 `stdio` 傳茞的 MCP 䌺服噚的 TypeScript 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) #⃣🏠 - 基斌 .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) +- [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 傳茞閘道噚 +- [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) 🏎 - 䞀個 CLI 䞻機應甚皋匏䜿倧型語蚀暡型 (LLM) 胜倠通過暡型䞊䞋文協議 (MCP) 與倖郚工具亀互 +- [MCP-Connect](https://github.com/EvalsOne/MCP-Connect) 📇 - 䞀個小工具䜿基斌雲的 AI 服務胜倠通過 HTTP/HTTPS 請求蚪問本地的基斌 Stdio 的 MCP 䌺服噚 +- [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代理䌺服噚。 + +## 甚戶端 + +> [!NOTE] +> 尋扟 MCP 甚戶端請查看 [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) 倉庫。 + + +## 提瀺和技巧 + +### 官方提瀺關斌 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.md b/README.md index 40ce4f12..65294576 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ # 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/䞭文文件-點擊查看-orange)](README-zh_TW.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) From f4748dd0031b88741aca3f065ccb66df1688acb5 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:38:44 -0600 Subject: [PATCH 262/275] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index bc434ea8..29d31102 100644 --- a/README.md +++ b/README.md @@ -212,7 +212,6 @@ Secure database access with schema inspection capabilities. Enables querying and Tools and integrations that enhance the development workflow and environment management. -- [Last9 Observability MCP](https://github.com/last9/last9-mcp-server) - Seamlessly bring real-time production context—logs, metrics, and traces—into your local environment to auto-fix code faster - [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. @@ -328,7 +327,7 @@ Tools for creating and editing marketing content, working with web meta data, pr Access and analyze application monitoring data. Enables AI models to review error reports and performance metrics. -- [Last9 Observability MCP](https://github.com/last9/last9-mcp-server) - Seamlessly bring real-time production context—logs, metrics, and traces—into your local environment to auto-fix code faster +- [last9/last9-mcp-server](https://github.com/last9/last9-mcp-server) - Seamlessly bring real-time production context—logs, metrics, and traces—into your local environment to auto-fix code faster - [@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 From 246d4c62f48461016574f7841fda4794848d00ab Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:40:06 -0600 Subject: [PATCH 263/275] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 03c0fa76..2df5523a 100644 --- a/README.md +++ b/README.md @@ -299,7 +299,7 @@ Tools and integrations that enhance the development workflow and environment man - [admica/FileScopeMCP](https://github.com/admica/FileScopeMCP) 🐍 📇 🊀 - Analyzes your codebase identifying important files based on dependency relationships. Generates diagrams and importance scores, helping AI assistants understand the codebase. - [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. - [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 -- [IlyaGulya/gradle-mcp-server](https://github.com/IlyaGulya/gradle-mcp-server) ☕ 🏠 - Gradle integration using the Gradle Tooling API to inspect projects, execute tasks, and run tests with per-test result reporting +- [IlyaGulya/gradle-mcp-server](https://github.com/IlyaGulya/gradle-mcp-server) 🏠 - Gradle integration using the Gradle Tooling API to inspect projects, execute tasks, and run tests with per-test result reporting - [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. - [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 - [automation-ai-labs/mcp-link](https://github.com/automation-ai-labs/mcp-link) 🏎 🏠 - Seamlessly Integrate Any API with AI Agents (with OpenAPI Schema) From 52cbc12afd03f8fd6f180b60ba436ead696d81e3 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:40:26 -0600 Subject: [PATCH 264/275] 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 16321637..25ff7a0a 100644 --- a/README-zh.md +++ b/README-zh.md @@ -249,7 +249,7 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [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 服务噚。 - [SDGLBL/mcp-claude-code](https://github.com/SDGLBL/mcp-claude-code) 🐍 🏠 - 䜿甚 MCP 实现的 Claude Code 功胜支持 AI 代码理解、修改和项目分析并提䟛党面的工具支持。 -- [IlyaGulya/gradle-mcp-server](https://github.com/IlyaGulya/gradle-mcp-server) ☕ 🏠 - 䜿甚 Gradle Tooling API 来检查项目、执行任务并圚每䞪测试的级别进行测试结果报告的 Gradle 集成 +- [IlyaGulya/gradle-mcp-server](https://github.com/IlyaGulya/gradle-mcp-server) 🏠 - 䜿甚 Gradle Tooling API 来检查项目、执行任务并圚每䞪测试的级别进行测试结果报告的 Gradle 集成 - [gofireflyio/firefly-mcp](https://github.com/gofireflyio/firefly-mcp) 🎖 📇 ☁ - 集成、发现、管理并通过[Firefly](https://firefly.ai)规范化云资源。 - [api7/apisix-mcp](https://github.com/api7/apisix-mcp) 🎖 📇 🏠 支持对 [Apache APISIX](https://github.com/apache/apisix) 眑关䞭所有资源进行查询和管理的 MCP 服务。 - [ios-simulator-mcp](https://github.com/joshuayoes/ios-simulator-mcp) 📇 🏠 🍎 - 甚于䞎 iOS 暡拟噚亀互的暡型䞊䞋文协议 (MCP) 服务噚。歀服务噚允讞悚通过获取有关 iOS 暡拟噚的信息、控制 UI 亀互和检查 UI 元玠来䞎 iOS 暡拟噚亀互。 From 0c4bde856f399963e1c046089882f9ec54bb744f Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:40:39 -0600 Subject: [PATCH 265/275] Update README-ja.md --- README-ja.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README-ja.md b/README-ja.md index 337e661c..ca9da9c2 100644 --- a/README-ja.md +++ b/README-ja.md @@ -269,7 +269,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サヌバヌ -- [IlyaGulya/gradle-mcp-server](https://github.com/IlyaGulya/gradle-mcp-server) ☕ 🏠 - Gradle Tooling API を䜿甚しおプロゞェクトを怜査し、タスクを実行し、テスト結果をテストごずに報告するGradle連携 +- [IlyaGulya/gradle-mcp-server](https://github.com/IlyaGulya/gradle-mcp-server) 🏠 - Gradle Tooling API を䜿甚しおプロゞェクトを怜査し、タスクを実行し、テスト結果をテストごずに報告するGradle連携 - [kelvin6365/plane-mcp-server](https://github.com/kelvin6365/plane-mcp-server) - 🏎 🏠 この MCP サヌバヌは、[Plane](https://plane.so) API を通じおプロゞェクトや課題を管理するのに圹立ちたす - [yuna0x0/hackmd-mcp](https://github.com/yuna0x0/hackmd-mcp) 📇 ☁ - AIモデルが [HackMD](https://hackmd.io) ず連携できるようにしたす。 From f85446acfa081b9066416757d46f47a10e2cca51 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:41:22 -0600 Subject: [PATCH 266/275] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 52525fea..59a3ae6b 100644 --- a/README.md +++ b/README.md @@ -527,7 +527,7 @@ Interact with Git repositories and version control platforms. Enables repository - [yuna0x0/hackmd-mcp](https://github.com/yuna0x0/hackmd-mcp) 📇 ☁ - Allows AI models to interact with [HackMD](https://hackmd.io) - [lciesielski/mcp-salesforce](https://github.com/lciesielski/mcp-salesforce-example) 🏠 ☁ - MCP server with basic demonstration of interactions with Salesforce instance - [pwh-pwh/cal-mcp](https://github.com/pwh-pwh/cal-mcp) - An MCP server for Mathematical expression calculation -- [Wanaku MCP Router](https://github.com/wanaku-ai/wanaku) - ☕ ☁ 🏠 The Wanaku MCP Router is a SSE-based MCP server that provides an extensible routing engine that allows integrating your enterprise systems with AI agents. +- [wanaku-ai/wanaku](https://github.com/wanaku-ai/wanaku) - ☁ 🏠 The Wanaku MCP Router is a SSE-based MCP server that provides an extensible routing engine that allows integrating your enterprise systems with AI agents. ## Frameworks From 9ffc55f8abd9d70e3cfdfdf1928d8e557e2f61c5 Mon Sep 17 00:00:00 2001 From: djalal Date: Mon, 31 Mar 2025 18:41:30 +0200 Subject: [PATCH 267/275] add quran-mcp-server --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a14009cd..ce3d101c 100644 --- a/README.md +++ b/README.md @@ -123,6 +123,7 @@ Access and explore art collections, cultural heritage, and museum databases. Ena - [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 - [abhiemj/manim-mcp-server](https://github.com/abhiemj/manim-mcp-server) 🐍 🏠 🪟 🐧 - A local MCP server that generates animations using Manim. +- [djalal/quran-mcp-server](https://github.com/djalal/quran-mcp-server) 📇 🏠 MCP server to interact with Quran.com corpus via the official REST API v4. ### ☁ Cloud Platforms From abc187fd57e77f549897f006711d6103610ef84a Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:42:03 -0600 Subject: [PATCH 268/275] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 163aa760..b2b1a83a 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,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 -- [alexei-led/k8s-mcp-server](https://github.com/alexei-led/k8s-mcp-server) 🐍 🐳 - A lightweight yet robust server that empowers AI assistants to securely execute Kubernetes CLI commands (`kubectl`, `helm`, `istioctl`, and `argocd`) using Unix pipes in a safe Docker environment with multi-architecture support. +- [alexei-led/k8s-mcp-server](https://github.com/alexei-led/k8s-mcp-server) 🐍 - A lightweight yet robust server that empowers AI assistants to securely execute Kubernetes CLI commands (`kubectl`, `helm`, `istioctl`, and `argocd`) using Unix pipes 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 28fdfb9b44cd078d5bd7f523a1a02d435f198380 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:42:30 -0600 Subject: [PATCH 269/275] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b21bf43f..f3511eb9 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ 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. -- [thunderboltsid/mcp-nutanix](https://github.com/thunderboltsid/mcp-nutanix) - 🏠/☁ Go-based MCP Server for interfacing with Nutanix Prism Central resources. +- [thunderboltsid/mcp-nutanix](https://github.com/thunderboltsid/mcp-nutanix) - 🏎 🏠/☁ Go-based MCP Server for interfacing with Nutanix Prism Central resources. ### 🖥 Command Line From 49f0c2748911dccb563d20ebe172b8e3d09f26cf Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:44:56 -0600 Subject: [PATCH 270/275] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d3f91f13..728caaaf 100644 --- a/README.md +++ b/README.md @@ -137,7 +137,7 @@ Run commands, capture output and otherwise interact with shells and command line Integration with communication platforms for message management and channel operations. Enables AI models to interact with team communication tools. -- [lharries/whatsapp-mcp](https://github.com/lharries/whatsapp-mcp) - 🌐 ☁ - An MCP server for WhatsApp, search and send through pesonal and group messages +- [lharries/whatsapp-mcp](https://github.com/lharries/whatsapp-mcp) - 🐍 ☁ - An MCP server for WhatsApp, search and send through pesonal and group messages - [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 - [@modelcontextprotocol/server-slack](https://github.com/modelcontextprotocol/servers/tree/main/src/slack) 📇 ☁ - Slack workspace integration for channel management and messaging From 2633047d5ab4a4d3a0031ef907cb033550b4bf71 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:47:06 -0600 Subject: [PATCH 271/275] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c3c0d3c2..741a0ac3 100644 --- a/README.md +++ b/README.md @@ -360,7 +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. -- [hellokaton/unsplash-mcp-server](https://github.com/hellokaton/unsplash-mcp-server)) 🐍🔎☁ - A MCP server for Unsplash image search. +- [hellokaton/unsplash-mcp-server](https://github.com/hellokaton/unsplash-mcp-server)) 🐍 ☁ - A MCP server for Unsplash image search. ### 🔒 Security From 62e54cdde81165a31c1db3d644dfb613f2172872 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:47:19 -0600 Subject: [PATCH 272/275] 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 6a4e2a98..087c68c1 100644 --- a/README-zh.md +++ b/README-zh.md @@ -286,8 +286,8 @@ Web 内容访问和自劚化功胜。支持以 AI 友奜栌匏搜玢、抓取和 - [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) 🐍 ☁ - 䞀䞪甚于搜玢 Hacker News、获取热闚故事等的 MCP 服务噚。 - [chanmeng/google-news-mcp-server](https://github.com/ChanMeng666/server-google-news) 📇 ☁ - Google News 集成具有自劚䞻题分类、倚语蚀支持以及通过 [SerpAPI](https://serpapi.com/) 提䟛的标题、故事和盞关䞻题的绌合搜玢功胜。 -- [devflowinc/trieve](https://github.com/devflowinc/trieve/tree/main/clients/mcp-server) 🎖📇☁🏠 - 通过 [Trieve](https://trieve.ai) 爬取、嵌入、分块、搜玢和检玢数据集䞭的信息 -- [hellokaton/unsplash-mcp-server](https://github.com/hellokaton/unsplash-mcp-server)) 🐍🔎☁ - 甚于集成 Unsplash 囟片搜玢功胜 +- [devflowinc/trieve](https://github.com/devflowinc/trieve/tree/main/clients/mcp-server) 🎖 📇 ☁ 🏠 - 通过 [Trieve](https://trieve.ai) 爬取、嵌入、分块、搜玢和检玢数据集䞭的信息 +- [hellokaton/unsplash-mcp-server](https://github.com/hellokaton/unsplash-mcp-server)) 🐍 ☁ - 甚于集成 Unsplash 囟片搜玢功胜 ### 🔒 安党 From 0a004f2c86b0b7bfde84b032b6d10ef2ce8d0179 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:47:31 -0600 Subject: [PATCH 273/275] Update README-ja.md --- README-ja.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README-ja.md b/README-ja.md index b4504398..5776a97c 100644 --- a/README-ja.md +++ b/README-ja.md @@ -194,7 +194,7 @@ aliyun/alibabacloud-tablestore-mcp-server ☕ 🐍 ☁ - 阿里云衚栌存 - [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) 🐍 ☁ - Hacker Newsの怜玢、トップストヌリヌの取埗などを行うMCPサヌバヌ。 - [chanmeng/google-news-mcp-server](https://github.com/ChanMeng666/server-google-news) 📇 ☁ - 自動トピック分類、倚蚀語サポヌト、[SerpAPI](https://serpapi.com/)を通じたヘッドラむン、ストヌリヌ、関連トピックの包括的な怜玢機胜を備えたGoogle News統合。 -- [hellokaton/unsplash-mcp-server](https://github.com/hellokaton/unsplash-mcp-server)) 🐍🔎☁ - Unsplash 画像怜玢機胜の統合甚 +- [hellokaton/unsplash-mcp-server](https://github.com/hellokaton/unsplash-mcp-server)) 🐍 ☁ - Unsplash 画像怜玢機胜の統合甚 ### 🔒 セキュリティ From 3bfb47521ce061e9f4058c4815203afe645c0565 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:48:54 -0600 Subject: [PATCH 274/275] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 29e871bd..ebe9e632 100644 --- a/README.md +++ b/README.md @@ -483,7 +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. -- [simple-mcp](https://github.com/ribeirogab/simple-mcp) 📇 - A simple TypeScript library for creating MCP servers. +- [ribeirogab/simple-mcp](https://github.com/ribeirogab/simple-mcp) 📇 - A simple TypeScript library for creating MCP servers. ## Utilities From 8501eeabb18699064a485b075cc2cbd356b749c2 Mon Sep 17 00:00:00 2001 From: Frank Fiegel <108313943+punkpeye@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:56:39 -0600 Subject: [PATCH 275/275] sort servers alphabetically --- README.md | 621 +++++++++++++++++++++++++++--------------------------- 1 file changed, 310 insertions(+), 311 deletions(-) diff --git a/README.md b/README.md index a6577191..4fa55356 100644 --- a/README.md +++ b/README.md @@ -98,62 +98,61 @@ Checkout [awesome-mcp-clients](https://github.com/punkpeye/awesome-mcp-clients/) Servers for accessing many apps and tools through a single MCP server. -- [@PipedreamHQ/pipedream](https://github.com/PipedreamHQ/pipedream/tree/master/modelcontextprotocol) ☁ 🏠 - Connect with 2,500 APIs with 8,000+ prebuilt tools, and manage servers for your users, in your own app. -- [Zapier MCP Server](https://zapier.com/mcp) ☁ - Connect your AI Agents to 8,000 apps instantly. +- [PipedreamHQ/pipedream](https://github.com/PipedreamHQ/pipedream/tree/master/modelcontextprotocol) ☁ 🏠 - Connect with 2,500 APIs with 8,000+ prebuilt tools, and manage servers for your users, in your own app. ### 🎚 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 -- [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 - [abhiemj/manim-mcp-server](https://github.com/abhiemj/manim-mcp-server) 🐍 🏠 🪟 🐧 - A local MCP server that generates animations using Manim. +- [burningion/video-editing-mcp](https://github.com/burningion/video-editing-mcp) 🐍 - Add, Analyze, Search, and Generate Video Edits from your Video Jungle Collection - [djalal/quran-mcp-server](https://github.com/djalal/quran-mcp-server) 📇 🏠 MCP server to interact with Quran.com corpus via the official REST API v4. +- [r-huijts/rijksmuseum-mcp](https://github.com/r-huijts/rijksmuseum-mcp) 📇 ☁ - Rijksmuseum API integration for artwork search, details, and collections +- [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 +- [yuna0x0/anilist-mcp](https://github.com/yuna0x0/anilist-mcp) 📇 ☁ - A MCP server integrating AniList API for anime and manga information ### 📂 Browser Automation Web content access and automation capabilities. Enables searching, scraping, and processing web content in AI-friendly formats. -- [@automatalabs/mcp-server-playwright](https://github.com/Automata-Labs-team/MCP-Server-Playwright) 🐍 - An MCP server for browser automation using Playwright -- [@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 -- [@microsoft/playwright-mcp](https://github.com/microsoft/playwright-mcp) - Official Microsoft Playwright MCP server, enabling LLMs to interact with web pages through structured accessibility snapshots -- [@recursechat/mcp-server-apple-shortcuts](https://github.com/recursechat/mcp-server-apple-shortcuts) 📇 🏠 🍎 - An MCP Server Integration with Apple Shortcuts -- [@fradser/mcp-server-apple-reminders](https://github.com/FradSer/mcp-server-apple-reminders) 📇 🏠 🍎 - An MCP server for interacting with Apple Reminders on macOS -- [@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 -- [@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). +- [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. +- [automatalabs/mcp-server-playwright](https://github.com/Automata-Labs-team/MCP-Server-Playwright) 🐍 - An MCP server for browser automation using Playwright +- [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. +- [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 +- [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). +- [fradser/mcp-server-apple-reminders](https://github.com/FradSer/mcp-server-apple-reminders) 📇 🏠 🍎 - An MCP server for interacting with Apple Reminders on macOS +- [getrupt/ashra-mcp](https://github.com/getrupt/ashra-mcp) 🐍 🏠 - Extract structured data from any website. Just prompt and get JSON. +- [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. +- [microsoft/playwright-mcp](https://github.com/microsoft/playwright-mcp) - Official Microsoft Playwright MCP server, enabling LLMs to interact with web pages through structured accessibility snapshots +- [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 +- [recursechat/mcp-server-apple-shortcuts](https://github.com/recursechat/mcp-server-apple-shortcuts) 📇 🏠 🍎 - An MCP Server Integration with Apple Shortcuts ### ☁ 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 - [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 - [alexei-led/k8s-mcp-server](https://github.com/alexei-led/k8s-mcp-server) 🐍 - A lightweight yet robust server that empowers AI assistants to securely execute Kubernetes CLI commands (`kubectl`, `helm`, `istioctl`, and `argocd`) using Unix pipes 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. -- [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. -- [wenhuwang/mcp-k8s-eye](https://github.com/wenhuwang/mcp-k8s-eye) 🏎 ☁/🏠 MCP Server for kubernetes management, and analyze your cluster, application health +- [cloudflare/mcp-server-cloudflare](https://github.com/cloudflare/mcp-server-cloudflare) 🎖 📇 ☁ - Integration with Cloudflare services including Workers, KV, R2, and D1 +- [flux159/mcp-server-kubernetes](https://github.com/Flux159/mcp-server-kubernetes) - 📇 ☁/🏠 Typescript implementation of Kubernetes cluster operations for pods, deployments, services. +- [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 +- [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. - [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. +- [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. - [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. +- [strowk/mcp-k8s-go](https://github.com/strowk/mcp-k8s-go) - 🏎 ☁/🏠 Kubernetes cluster operations through MCP - [thunderboltsid/mcp-nutanix](https://github.com/thunderboltsid/mcp-nutanix) - 🏎 🏠/☁ Go-based MCP Server for interfacing with Nutanix Prism Central resources. - [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. +- [wenhuwang/mcp-k8s-eye](https://github.com/wenhuwang/mcp-k8s-eye) 🏎 ☁/🏠 MCP Server for kubernetes management, and analyze your cluster, application health ### 👚‍💻 Code Execution @@ -167,159 +166,159 @@ 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. +- [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` - [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) - [OthmaneBlial/term_mcp_deepseek](https://github.com/OthmaneBlial/term_mcp_deepseek) 🐍 🏠 - A DeepSeek MCP-like Server for Terminal - [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` +- [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. -- [lharries/whatsapp-mcp](https://github.com/lharries/whatsapp-mcp) - 🐍 ☁ - An MCP server for WhatsApp, search and send through pesonal and group messages -- [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. -- [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. -- [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. +- [adhikasp/mcp-twikit](https://github.com/adhikasp/mcp-twikit) 🐍 ☁ - Interact with Twitter search and timeline - [arpitbatra123/mcp-googletasks](https://github.com/arpitbatra123/mcp-googletasks) - 📇 ☁ - An MCP server to interface with the Google Tasks API +- [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. +- [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. +- [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. +- [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 WhatsApp, search and send through pesonal and group messages +- [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 +- [MarkusPfundstein/mcp-gsuite](https://github.com/MarkusPfundstein/mcp-gsuite) - 🐍 ☁ - Integration with gmail and Google Calendar. +- [modelcontextprotocol/server-bluesky](https://github.com/keturiosakys/bluesky-context-server) 📇 ☁ - Bluesky instance integration for querying and interaction +- [modelcontextprotocol/server-slack](https://github.com/modelcontextprotocol/servers/tree/main/src/slack) 📇 ☁ - Slack workspace integration for channel management and messaging +- [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. - [teddyzxcv/ntfy-mcp](https://github.com/teddyzxcv/ntfy-mcp) - The MCP server that keeps you informed by sending the notification on phone using ntfy - [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. +- [zcaceres/gtasks-mcp](https://github.com/zcaceres/gtasks-mcp) - 📇 ☁ - An MCP server to Manage Google Tasks ### 👀 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. +- [iaptic/mcp-server-iaptic](https://github.com/iaptic/mcp-server-iaptic) 🎖 📇 ☁ - Connect with [iaptic](https://www.iaptic.com) to ask about your Customer Purchases, Transaction data and App Revenue statistics. - [OpenDataMCP/OpenDataMCP](https://github.com/OpenDataMCP/OpenDataMCP) 🐍 ☁ - Connect any Open Data to any LLM with Model Context Protocol. +- [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. - [tinybirdco/mcp-tinybird](https://github.com/tinybirdco/mcp-tinybird) 🐍 ☁ - An MCP server to interact with a Tinybird Workspace from any MCP client. -- [@iaptic/mcp-server-iaptic](https://github.com/iaptic/mcp-server-iaptic) 🎖 📇 ☁ - Connect with [iaptic](https://www.iaptic.com) to ask about your Customer Purchases, Transaction data and App Revenue statistics. ### 🗄 Databases 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 -- [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. -- [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)) -- [@gannonh/firebase-mcp](https://github.com/gannonh/firebase-mcp) 🔥 ⛅ - Firebase services including Auth, Firestore and Storage. -- [jovezhong/mcp-timeplus](https://github.com/jovezhong/mcp-timeplus) 🐍 ☁ - MCP server for Apache Kafka and Timeplus. Able to list Kafka topics, poll Kafka messages, save Kafka data locally and query streaming data with SQL via Timeplus -- [@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 -- [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 -- [@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. -- [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 -- [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 -- [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 -- [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. -- [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. -- [weaviate/mcp-server-weaviate](https://github.com/weaviate/mcp-server-weaviate) 🐍 📇 ☁ - An MCP Server to connect to your Weaviate collections as a knowledge base as well as using Weaviate as a chat memory store. - [Aiven-Open/mcp-aiven](https://github.com/Aiven-Open/mcp-aiven) - 🐍 ☁ 🎖 - Navigate your [Aiven projects](https://go.aiven.io/mcp-server) and interact with the PostgreSQL®, Apache Kafka®, ClickHouse® and OpenSearch® services -- [qdrant/mcp-server-qdrant](https://github.com/qdrant/mcp-server-qdrant) 🐍 🏠 - A Qdrant MCP server +- [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 +- [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. +- [benborla29/mcp-server-mysql](https://github.com/benborla/mcp-server-mysql) ☁ 🏠 - MySQL database integration in NodeJS with configurable access controls and schema inspection +- [bytebase/dbhub](https://github.com/bytebase/dbhub) 📇 🏠 – Universal database MCP server supporting mainstream databases. +- [c4pt0r/mcp-server-tidb](https://github.com/c4pt0r/mcp-server-tidb) 🐍 ☁ - TiDB database integration with schema inspection and query capabilities - [Canner/wren-engine](https://github.com/Canner/wren-engine) 🐍 🊀 🏠 - The Semantic Engine for Model Context Protocol(MCP) Clients and AI Agents -- [zilliztech/mcp-server-milvus](https://github.com/zilliztech/mcp-server-milvus) 🐍 🏠 ☁ - MCP Server for Milvus / Zilliz, making it possible to interact with your database. +- [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 +- [ClickHouse/mcp-clickhouse](https://github.com/ClickHouse/mcp-clickhouse) 🐍 ☁ - ClickHouse database integration with schema inspection and query capabilities +- [cr7258/elasticsearch-mcp-server](https://github.com/cr7258/elasticsearch-mcp-server) 🐍 🏠 - MCP Server implementation that provides Elasticsearch interaction +- [Dataring-engineering/mcp-server-trino](https://github.com/Dataring-engineering/mcp-server-trino) 🐍 ☁ - Trino MCP Server to query and access data from Trino Clusters. +- [designcomputer/mysql_mcp_server](https://github.com/designcomputer/mysql_mcp_server) 🐍 🏠 - MySQL database integration with configurable access controls, schema inspection, and comprehensive security guidelines +- [domdomegg/airtable-mcp-server](https://github.com/domdomegg/airtable-mcp-server) 📇 🏠 - Airtable database integration with schema inspection, read and write 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 +- [f4ww4z/mcp-mysql-server](https://github.com/f4ww4z/mcp-mysql-server) 🐍 🏠 - Node.js-based MySQL database integration that provides secure MySQL database operations +- [fireproof-storage/mcp-database-server](https://github.com/fireproof-storage/mcp-database-server) 📇 ☁ - Fireproof ledger database with multi-user sync +- [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. +- [furey/mongodb-lens](https://github.com/furey/mongodb-lens) 📇 🏠 - MongoDB Lens: Full Featured MCP Server for MongoDB Databases +- [gannonh/firebase-mcp](https://github.com/gannonh/firebase-mcp) 🔥 ⛅ - Firebase services including Auth, Firestore and Storage. +- [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)) +- [GreptimeTeam/greptimedb-mcp-server](https://github.com/GreptimeTeam/greptimedb-mcp-server) 🐍 🏠 - MCP Server for querying GreptimeDB. +- [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. +- [idoru/influxdb-mcp-server](https://github.com/idoru/influxdb-mcp-server) 📇 ☁ 🏠 - Run queries against InfluxDB OSS API v2. +- [isaacwasserman/mcp-snowflake-server](https://github.com/isaacwasserman/mcp-snowflake-server) 🐍 ☁ - Snowflake integration implementing read and (optional) write operations as well as insight tracking +- [joshuarileydev/supabase-mcp-server](https://github.com/joshuarileydev/supabase) - Supabase MCP Server for managing and creating projects and organisations in Supabase +- [jovezhong/mcp-timeplus](https://github.com/jovezhong/mcp-timeplus) 🐍 ☁ - MCP server for Apache Kafka and Timeplus. Able to list Kafka topics, poll Kafka messages, save Kafka data locally and query streaming data with SQL via Timeplus +- [KashiwaByte/vikingdb-mcp-server](https://github.com/KashiwaByte/vikingdb-mcp-server) 🐍 ☁ - VikingDB integration with collection and index introduction, vector store and search capabilities. +- [kiliczsh/mcp-mongo-server](https://github.com/kiliczsh/mcp-mongo-server) 📇 🏠 - A Model Context Protocol Server for MongoDB +- [ktanaka101/mcp-server-duckdb](https://github.com/ktanaka101/mcp-server-duckdb) 🐍 🏠 - DuckDB database integration with schema inspection and query capabilities +- [LucasHild/mcp-server-bigquery](https://github.com/LucasHild/mcp-server-bigquery) 🐍 ☁ - BigQuery database integration with schema inspection and query 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. +- [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. +- [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 +- [neo4j-contrib/mcp-neo4j](https://github.com/neo4j-contrib/mcp-neo4j) 🐍 🏠 - Model Context Protocol with Neo4j +- [neondatabase/mcp-server-neon](https://github.com/neondatabase/mcp-server-neon) 📇 ☁ — An MCP Server for creating and managing Postgres databases using Neon Serverless Postgres +- [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 - [openlink/mcp-server-odbc](https://github.com/OpenLinkSoftware/mcp-odbc-server) 🐍 🏠 - An MCP server for generic Database Management System (DBMS) Connectivity via the Open Database Connectivity (ODBC) protocol - [openlink/mcp-server-sqlalchemy](https://github.com/OpenLinkSoftware/mcp-sqlalchemy-server) 🐍 🏠 - An MCP server for generic Database Management System (DBMS) Connectivity via SQLAlchemy using Python ODBC (pyodbc) +- [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. +- [qdrant/mcp-server-qdrant](https://github.com/qdrant/mcp-server-qdrant) 🐍 🏠 - A Qdrant MCP server +- [QuantGeekDev/mongo-mcp](https://github.com/QuantGeekDev/mongo-mcp) 📇 🏠 - MongoDB integration that enables LLMs to interact directly with databases. +- [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. +- [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. +- [sirmews/mcp-pinecone](https://github.com/sirmews/mcp-pinecone) 🐍 ☁ - Pinecone integration with vector search capabilities +- [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. +- [tinybirdco/mcp-tinybird](https://github.com/tinybirdco/mcp-tinybird) 🐍 ☁ - Tinybird integration with query and API capabilities +- [tradercjz/dolphindb-mcp-server](https://github.com/tradercjz/dolphindb-mcp-server) 🐍 ☁ - TDolphinDB database integration with schema inspection and query capabilities +- [weaviate/mcp-server-weaviate](https://github.com/weaviate/mcp-server-weaviate) 🐍 📇 ☁ - An MCP Server to connect to your Weaviate collections as a knowledge base as well as using Weaviate as a chat memory store. +- [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. +- [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. +- [zilliztech/mcp-server-milvus](https://github.com/zilliztech/mcp-server-milvus) 🐍 🏠 ☁ - MCP Server for Milvus / Zilliz, making it possible to interact with your database. ### 📊 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. +- [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. ### 💻 Developer Tools 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 -- [zcaceres/fetch-mcp](https://github.com/zcaceres/fetch-mcp) 📇 🏠 - An MCP server to flexibly fetch JSON, text, and HTML data -- [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 -- [@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. -- [@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. -- [@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. -- [@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. -- [flipt-io/mcp-server-flipt](https://github.com/flipt-io/mcp-server-flipt) 📇 🏠 - Enable AI assistants to interact with your feature flags in [Flipt](https://flipt.io). -- [@langfuse/mcp-server-langfuse](https://github.com/langfuse/mcp-server-langfuse) 🐍 🏠 - MCP server to access and manage LLM application prompts created with [Langfuse]([https://langfuse.com/](https://langfuse.com/docs/prompts/get-started)) Prompt Management. -- [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. -- [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. -- [stass/lldb-mcp](https://github.com/stass/lldb-mcp) 🐍 🏠 🐧 🍎 - A MCP server for LLDB enabling AI binary and core file analysis, debugging, disassembling. -- [@sapientpants/sonarqube-mcp-server](https://github.com/sapientpants/sonarqube-mcp-server) 🊀 ☁ 🏠 - A Model Context Protocol (MCP) server that integrates with SonarQube to provide AI assistants with access to code quality metrics, issues, and quality gate statuses -- [davidlin2k/pox-mcp-server](https://github.com/davidlin2k/pox-mcp-server) 🐍 🏠 - MCP server for the POX SDN controller to provides network control and management capabilities. -- [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. -- [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. -- [gofireflyio/firefly-mcp](https://github.com/gofireflyio/firefly-mcp) 🎖 📇 ☁ - Integrates, discovers, manages, and codifies cloud resources with [Firefly](https://firefly.ai). -- [api7/apisix-mcp](https://github.com/api7/apisix-mcp) 🎖 📇 🏠 MCP Server that support for querying and managing all resource in [Apache APISIX](https://github.com/apache/apisix). - [admica/FileScopeMCP](https://github.com/admica/FileScopeMCP) 🐍 📇 🊀 - Analyzes your codebase identifying important files based on dependency relationships. Generates diagrams and importance scores, helping AI assistants understand the codebase. -- [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. -- [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 -- [IlyaGulya/gradle-mcp-server](https://github.com/IlyaGulya/gradle-mcp-server) 🏠 - Gradle integration using the Gradle Tooling API to inspect projects, execute tasks, and run tests with per-test result reporting -- [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. -- [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 +- [api7/apisix-mcp](https://github.com/api7/apisix-mcp) 🎖 📇 🏠 MCP Server that support for querying and managing all resource in [Apache APISIX](https://github.com/apache/apisix). - [automation-ai-labs/mcp-link](https://github.com/automation-ai-labs/mcp-link) 🏎 🏠 - Seamlessly Integrate Any API with AI Agents (with OpenAPI Schema) +- [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. +- [davidlin2k/pox-mcp-server](https://github.com/davidlin2k/pox-mcp-server) 🐍 🏠 - MCP server for the POX SDN controller to provides network control and management capabilities. +- [delano/postman-mcp-server](https://github.com/delano/postman-mcp-server) 📇 ☁ - Interact with [Postman API](https://www.postman.com/postman/postman-public-workspace/) +- [flipt-io/mcp-server-flipt](https://github.com/flipt-io/mcp-server-flipt) 📇 🏠 - Enable AI assistants to interact with your feature flags in [Flipt](https://flipt.io). +- [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. +- [gofireflyio/firefly-mcp](https://github.com/gofireflyio/firefly-mcp) 🎖 📇 ☁ - Integrates, discovers, manages, and codifies cloud resources with [Firefly](https://firefly.ai). +- [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. +- [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). +- [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. - [hungthai1401/bruno-mcp](https://github.com/hungthai1401/bruno-mcp) 📇 🏠 - A MCP server for interacting with [Bruno API Client](https://www.usebruno.com/). +- [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. +- [IlyaGulya/gradle-mcp-server](https://github.com/IlyaGulya/gradle-mcp-server) 🏠 - Gradle integration using the Gradle Tooling API to inspect projects, execute tasks, and run tests with per-test result reporting +- [InhiblabCore/mcp-image-compression](https://github.com/InhiblabCore/mcp-image-compression) 🐍 🏠 - MCP server for local compression of various image formats. +- [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. +- [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) +- [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. +- [jetbrains/mcpProxy](https://github.com/JetBrains/mcpProxy) 🎖 📇 🏠 - Connect to JetBrains IDE +- [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. +- [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 +- [joshuarileydev/simulator-mcp-server](https://github.com/JoshuaRileyDev/simulator-mcp-server) 📇 🏠 - An MCP server to control iOS Simulators +- [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. +- [langfuse/mcp-server-langfuse](https://github.com/langfuse/mcp-server-langfuse) 🐍 🏠 - MCP server to access and manage LLM application prompts created with [Langfuse]([https://langfuse.com/](https://langfuse.com/docs/prompts/get-started)) Prompt Management. +- [mrexodia/user-feedback-mcp](https://github.com/mrexodia/user-feedback-mcp) 🐍 🏠 - Simple MCP Server to enable a human-in-the-loop workflow in tools like Cline and Cursor. +- [OctoMind-dev/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. +- [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. +- [QuantGeekDev/docker-mcp](https://github.com/QuantGeekDev/docker-mcp) 🏎 🏠 - Docker container management and operations through MCP +- [r-huijts/xcode-mcp-server](https://github.com/r-huijts/xcode-mcp-server) 📇 🏠 🍎 - Xcode integration for project management, file operations, and build automation +- [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 +- [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/). +- [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. +- [sapientpants/sonarqube-mcp-server](https://github.com/sapientpants/sonarqube-mcp-server) 🊀 ☁ 🏠 - A Model Context Protocol (MCP) server that integrates with SonarQube to provide AI assistants with access to code quality metrics, issues, and quality gate statuses +- [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. +- [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) +- [stass/lldb-mcp](https://github.com/stass/lldb-mcp) 🐍 🏠 🐧 🍎 - A MCP server for LLDB enabling AI binary and core file analysis, debugging, disassembling. +- [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. +- [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. +- [VSCode Devtools](https://github.com/biegehydra/BifrostMCP) 📇 - Connect to VSCode ide and use semantic tools like `find_usages` +- [xcodebuild](https://github.com/ShenghaiWang/xcodebuild) 🍎 Build iOS Xcode workspace/project and feed back errors to llm. +- [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. - [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. +- [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 +- [zcaceres/fetch-mcp](https://github.com/zcaceres/fetch-mcp) 📇 🏠 - An MCP server to flexibly fetch JSON, text, and HTML data - [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 ### 🧮 Data Science Tools @@ -327,8 +326,8 @@ Tools and integrations that enhance the development workflow and environment man Integrations and tools designed to simplify data exploration, analysis and enhance data science workflows. - [ChronulusAI/chronulus-mcp](https://github.com/ChronulusAI/chronulus-mcp) 🐍 ☁ - Predict anything with Chronulus AI forecasting and prediction agents. +- [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. - [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. ### 📟 Embedded System @@ -340,86 +339,86 @@ Provides access to documentation and shortcuts for working on embedded devices. 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 -- [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. -- [Xuanwo/mcp-server-opendal](https://github.com/Xuanwo/mcp-server-opendal) 🐍 🏠 ☁ - Access any storage with Apache OpenDAL™ - [exoticknight/mcp-file-merger](https://github.com/exoticknight/mcp-file-merger) 🏎 🏠 - File merger tool, suitable for AI chat length limits. +- [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. +- [hmk/box-mcp-server](https://github.com/hmk/box-mcp-server) 📇 ☁ - Box integration for listing, reading and searching files +- [mamertofabian/mcp-everything-search](https://github.com/mamertofabian/mcp-everything-search) 🐍 🏠 🪟 - Fast Windows file search using Everything SDK +- [mark3labs/mcp-filesystem-server](https://github.com/mark3labs/mcp-filesystem-server) 🏎 🏠 - Golang implementation for local file system access. +- [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 +- [Xuanwo/mcp-server-opendal](https://github.com/Xuanwo/mcp-server-opendal) 🐍 🏠 ☁ - Access any storage with Apache OpenDAL™ ### 💰 Finance & Fintech 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 - [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 -- [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 -- [getalby/nwc-mcp-server](https://github.com/getalby/nwc-mcp-server) 📇 🏠 - Bitcoin Lightning wallet integration powered by Nostr Wallet Connect -- [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. -- [mcpdotdirect/starknet-mcp-server](https://github.com/mcpdotdirect/starknet-mcp-server) 📇 ☁ - Comprehensive Starknet blockchain integration with support for native tokens (ETH, STRK), smart contracts, StarknetID resolution, and token transfers. -- [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. +- [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 +- [berlinbra/alpha-vantage-mcp](https://github.com/berlinbra/alpha-vantage-mcp) 🐍 ☁ - Alpha Vantage API integration to fetch both stock and crypto information +- [chargebee/mcp](https://github.com/chargebee/agentkit/tree/main/modelcontextprotocol) 🎖 📇 ☁ - MCP Server that connects AI agents to [Chargebee platform](https://www.chargebee.com/). +- [ferdousbhai/investor-agent](https://github.com/ferdousbhai/investor-agent) 🐍 ☁ - Yahoo Finance integration to fetch stock market data including options recommendations +- [ferdousbhai/tasty-agent](https://github.com/ferdousbhai/tasty-agent) 🐍 ☁ - Tastyworks API integration to handle trading activities on Tastytrade +- [getalby/nwc-mcp-server](https://github.com/getalby/nwc-mcp-server) 📇 🏠 - Bitcoin Lightning wallet integration powered by Nostr Wallet Connect +- [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 - [kukapay/crypto-feargreed-mcp](https://github.com/kukapay/crypto-feargreed-mcp) 🐍 ☁ - Providing real-time and historical Crypto Fear & Greed Index data. +- [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/crypto-sentiment-mcp](https://github.com/kukapay/crypto-sentiment-mcp) 🐍 ☁ - An MCP server that delivers cryptocurrency sentiment analysis to AI agents. +- [kukapay/cryptopanic-mcp-server](https://github.com/kukapay/cryptopanic-mcp-server) 🐍 ☁ - Providing latest cryptocurrency news to AI agents, powered by CryptoPanic. - [kukapay/dune-analytics-mcp](https://github.com/kukapay/dune-analytics-mcp) 🐍 ☁ - A mcp server that bridges Dune Analytics data to AI agents. -- [minhyeoky/mcp-server-ledger](https://github.com/minhyeoky/mcp-server-ledger) 🐍 🏠 - A ledger-cli integration for managing financial transactions and generating reports. +- [kukapay/freqtrade-mcp](https://github.com/kukapay/freqtrade-mcp) 🐍 ☁ - An MCP server that integrates with the Freqtrade cryptocurrency trading bot. +- [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/pancakeswap-poolspy-mcp](https://github.com/kukapay/pancakeswap-poolspy-mcp) 🐍 ☁ - An MCP server that tracks newly created pools on Pancake Swap. +- [kukapay/rug-check-mcp](https://github.com/kukapay/rug-check-mcp) 🐍 ☁ - An MCP server that detects potential risks in Solana meme tokens. +- [kukapay/thegraph-mcp](https://github.com/kukapay/thegraph-mcp) 🐍 ☁ - An MCP server that powers AI agents with indexed blockchain data from The Graph. +- [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/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/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. -- [@chargebee/mcp](https://github.com/chargebee/agentkit/tree/main/modelcontextprotocol) 🎖 📇 ☁ - MCP Server that connects AI agents to [Chargebee platform](https://www.chargebee.com/). +- [kukapay/whale-tracker-mcp](https://github.com/kukapay/whale-tracker-mcp) 🐍 ☁ - A mcp server for tracking cryptocurrency whale transactions. - [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. +- [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. +- [mcpdotdirect/starknet-mcp-server](https://github.com/mcpdotdirect/starknet-mcp-server) 📇 ☁ - Comprehensive Starknet blockchain integration with support for native tokens (ETH, STRK), smart contracts, StarknetID resolution, and token transfers. +- [minhyeoky/mcp-server-ledger](https://github.com/minhyeoky/mcp-server-ledger) 🐍 🏠 - A ledger-cli integration for managing financial transactions and generating reports. +- [narumiruna/yfinance-mcp](https://github.com/narumiruna/yfinance-mcp) 🐍 ☁ - An MCP server that uses yfinance to obtain information from Yahoo Finance. - [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. +- [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 +- [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. ### 🎮 Gaming Integration with gaming related data, game engines, and services -- [pab1ito/chess-mcp](https://github.com/pab1ito/chess-mcp) 🐍 ☁ - Access Chess.com player data, game records, and other public information through standardized MCP interfaces, allowing AI assistants to search and analyze chess information. -- [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. - [CoderGamester/mcp-unity](https://github.com/CoderGamester/mcp-unity) 📇 #⃣ 🏠 - MCP Server for Unity3d Game Engine integration for game development +- [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. +- [pab1ito/chess-mcp](https://github.com/pab1ito/chess-mcp) 🐍 ☁ - Access Chess.com player data, game records, and other public information through standardized MCP interfaces, allowing AI assistants to search and analyze chess information. +- [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. -- [@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 -- [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 +- [CheMiguel23/MemoryMesh](https://github.com/CheMiguel23/MemoryMesh) 📇 🏠 - Enhanced graph-based memory with a focus on AI role-play and story generation - [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 +- [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 +- [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 +- [modelcontextprotocol/server-memory](https://github.com/modelcontextprotocol/servers/tree/main/src/memory) 📇 🏠 - Knowledge graph-based persistent memory system for maintaining context +- [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 ### 🗺 Location Services 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 +- [briandconnelly/mcp-server-ipinfo](https://github.com/briandconnelly/mcp-server-ipinfo) 🐍 ☁ - IP address geolocation and network information using IPInfo API +- [kukapay/nearby-search-mcp](https://github.com/kukapay/nearby-search-mcp) 🐍 ☁ - An MCP server for nearby place searches with IP-based location detection. +- [modelcontextprotocol/server-google-maps](https://github.com/modelcontextprotocol/servers/tree/main/src/google-maps) 📇 ☁ - Google Maps integration for location services, routing, and place details +- [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. +- [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. - [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. -- [kukapay/nearby-search-mcp](https://github.com/kukapay/nearby-search-mcp) 🐍 ☁ - An MCP server for nearby place searches with IP-based location detection. ### 🎯 Marketing @@ -431,61 +430,61 @@ Tools for creating and editing marketing content, working with web meta data, pr Access and analyze application monitoring data. Enables AI models to review error reports and performance metrics. -- [last9/last9-mcp-server](https://github.com/last9/last9-mcp-server) - Seamlessly bring real-time production context—logs, metrics, and traces—into your local environment to auto-fix code faster -- [@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 - [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 +- [last9/last9-mcp-server](https://github.com/last9/last9-mcp-server) - Seamlessly bring real-time production context—logs, metrics, and traces—into your local environment to auto-fix code faster +- [metoro-io/metoro-mcp-server](https://github.com/metoro-io/metoro-mcp-server) 🎖 🏎 ☁ - Query and interact with kubernetes environments monitored by Metoro +- [modelcontextprotocol/server-raygun](https://github.com/MindscapeHQ/mcp-server-raygun) 📇 ☁ - Raygun API V3 integration for crash reporting and real user monitoring +- [modelcontextprotocol/server-sentry](https://github.com/modelcontextprotocol/servers/tree/main/src/sentry) 🐍 ☁ - Sentry.io integration for error tracking and performance monitoring - [pydantic/logfire-mcp](https://github.com/pydantic/logfire-mcp) 🎖 🐍 ☁ - Provides access to OpenTelemetry traces and metrics through Logfire - [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 & Data Extraction -- [@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 -- [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 -- [kshern/mcp-tavily](https://github.com/kshern/mcp-tavily.git) ☁ 📇 – 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. +- [angheljf/nyt](https://github.com/angheljf/nyt) 📇 ☁ - Search articles using the NYTimes API - [apify/mcp-server-rag-web-browser](https://github.com/apify/mcp-server-rag-web-browser) 📇 ☁ - An MCP server for Apify's open-source 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. +- [blazickjp/arxiv-mcp-server](https://github.com/blazickjp/arxiv-mcp-server) ☁ 🐍 - Search ArXiv research papers - [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/). +- [ConechoAI/openai-websearch-mcp](https://github.com/ConechoAI/openai-websearch-mcp/) 🐍 🏠 ☁ - This is a Python-based MCP server that provides OpenAI `web_search` build-in tool. - [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) +- [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/) +- [erithwik/mcp-hn](https://github.com/erithwik/mcp-hn) 🐍 ☁ - An MCP server to search Hacker News, get top stories, and more. +- [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) +- [hellokaton/unsplash-mcp-server](https://github.com/hellokaton/unsplash-mcp-server)) 🐍 ☁ - A MCP server for Unsplash image search. +- [Ihor-Sokoliuk/MCP-SearXNG](https://github.com/ihor-sokoliuk/mcp-searxng) 📇 🏠/☁ - A Model Context Protocol Server for [SearXNG](https://docs.searxng.org) +- [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. +- [kshern/mcp-tavily](https://github.com/kshern/mcp-tavily.git) ☁ 📇 – Tavily AI search API +- [modelcontextprotocol/server-brave-search](https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search) 📇 ☁ - Web search capabilities using Brave's Search API +- [modelcontextprotocol/server-fetch](https://github.com/modelcontextprotocol/servers/tree/main/src/fetch) 🐍 🏠 ☁ - Efficient web content fetching and processing for AI consumption +- [mzxrai/mcp-webresearch](https://github.com/mzxrai/mcp-webresearch) 🔍📚 - Search Google and do deep web research on any topic - [nickclyde/duckduckgo-mcp-server](https://github.com/nickclyde/duckduckgo-mcp-server) 🐍 ☁ - Web search using DuckDuckGo +- [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. +- [SecretiveShell/MCP-searxng](https://github.com/SecretiveShell/MCP-searxng) 🐍 🏠 - An MCP Server to connect to searXNG instances +- [tinyfish-io/agentql-mcp](https://github.com/tinyfish-io/agentql-mcp) 🎖 📇 ☁ - MCP server that provides [AgentQL](https://agentql.com)'s data extraction capabilities. +- [Tomatio13/mcp-server-tavily](https://github.com/Tomatio13/mcp-server-tavily) ☁ 🐍 – Tavily AI search API +- [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. - [zhsama/duckduckgo-mcp-server](https://github.com/zhsama/duckduckgo-mpc-server/) 📇 🏠 ☁ - This is a TypeScript-based MCP server that provides DuckDuckGo search functionality. - [zoomeye-ai/mcp_zoomeye](https://github.com/zoomeye-ai/mcp_zoomeye) 📇 ☁ - Querying network asset information by ZoomEye MCP Server -- [ConechoAI/openai-websearch-mcp](https://github.com/ConechoAI/openai-websearch-mcp/) 🐍 🏠 ☁ - This is a Python-based MCP server that provides OpenAI `web_search` build-in tool. -- [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. -- [hellokaton/unsplash-mcp-server](https://github.com/hellokaton/unsplash-mcp-server)) 🐍 ☁ - A MCP server for Unsplash image search. -- [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. -- [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. -- [tinyfish-io/agentql-mcp](https://github.com/tinyfish-io/agentql-mcp) 🎖 📇 ☁ - MCP server that provides [AgentQL](https://agentql.com)'s data extraction capabilities. ### 🔒 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. -- [GhidraMCP](https://github.com/13bm/GhidraMCP) 🐍 ☕ 🏠 - MCP server for integrating Ghidra with AI assistants. This plugin enables binary analysis, providing tools for function inspection, decompilation, memory exploration, and import/export analysis via the Model Context Protocol. -- [Semgrep MCP Server](https://github.com/semgrep/mcp-security-audit) 📇 ☁ Allow AI agents to scan code for security vulnerabilites using [Semgrep](https://semgrep.dev). -- [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 +- [13bm/GhidraMCP](https://github.com/13bm/GhidraMCP) 🐍 ☕ 🏠 - MCP server for integrating Ghidra with AI assistants. This plugin enables binary analysis, providing tools for function inspection, decompilation, memory exploration, and import/export analysis via the Model Context Protocol. +- [atomicchonk/roadrecon_mcp_server](https://github.com/atomicchonk/roadrecon_mcp_server) 🐍 🪟 🏠 MCP server for analyzing ROADrecon gather results from Azure tenant enumeration +- [BurtTheCoder/mcp-dnstwist](https://github.com/BurtTheCoder/mcp-dnstwist) 📇 🪟 ☁ - MCP server for dnstwist, a powerful DNS fuzzing tool that helps detect typosquatting, phishing, and corporate espionage. +- [BurtTheCoder/mcp-maigret](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. +- [BurtTheCoder/mcp-shodan](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. +- [BurtTheCoder/mcp-virustotal](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. +- [fr0gger/MCP_Security](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. +- [qianniuspace/mcp-security-audit](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. +- [semgrep/mcp-security-audit](https://github.com/semgrep/mcp-security-audit) 📇 ☁ Allow AI agents to scan code for security vulnerabilites using [Semgrep](https://semgrep.dev). +actors, and retrieving intelligence sources. +security vulnerabilities. Built with remote npm registry integration for real-time security checks. ### 🏃 Sports @@ -498,141 +497,141 @@ Tools for accessing sports-related data, results, and statistics. 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 - [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 +- [NS Travel Information MCP Server](https://github.com/r-huijts/ns-mcp-server) 📇 ☁ - Access Dutch Railways (NS) travel information, schedules, and real-time updates - [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 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 -- [@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. - [ddukbg/github-enterprise-mcp](https://github.com/ddukbg/github-enterprise-mcp) 📇 ☁ 🏠 - MCP server for GitHub Enterprise API integration +- [kopfrechner/gitlab-mr-mcp](https://github.com/kopfrechner/gitlab-mr-mcp) 📇 ☁ - Interact seamlessly with issues and merge requests of your GitLab projects. +- [modelcontextprotocol/server-git](https://github.com/modelcontextprotocol/servers/tree/main/src/git) 🐍 🏠 - Direct Git repository operations including reading, searching, and analyzing local repositories +- [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. ### 🛠 Other Tools and Integrations -- [j3k0/speech.sh](https://github.com/j3k0/speech.sh/blob/main/MCP_README.md) 🏠 - Let the agent speak things out loud, notify you when he's done working with a quick summary -- [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 -- [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 -- [bart6114/my-bear-mcp-server](https://github.com/bart6114/my-bear-mcp-server/) 📇 🏠 🍎 - Allows to read notes and tags for the Bear Note taking app, through a direct integration with Bear's sqlitedb. -- [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 -- [Badhansen/notion-mcp](https://github.com/Badhansen/notion-mcp) 🐍 ☁ - A Model Context Protocol (MCP) server that integrates with Notion's API to manage personal todo lists efficiently. -- [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. -- [@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. -- [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 -- [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. -- [@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 -- [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. -- [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. -- [hmk/attio-mcp-server](https://github.com/hmk/attio-mcp-server) - 📇 ☁ Allows AI clients to manage records and notes in Attio CRM -- [roychri/mcp-server-asana](https://github.com/roychri/mcp-server-asana) - 📇 ☁ This Model Context Protocol server implementation of Asana allows you to talk to Asana API from MCP Client such as Anthropic's Claude Desktop Application, and many more. -- [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. -- [tomekkorbak/strava-mcp-server](https://github.com/tomekkorbak/strava-mcp-server) 🐍 ☁ - An MCP server for Strava, an app for tracking physical exercise -- [tomekkorbak/oura-mcp-server](https://github.com/tomekkorbak/oura-mcp-server) 🐍 ☁ - An MCP server for Oura, an app for tracking sleep -- [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). -- [@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/) -- [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 -- [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 +- [akseyh/bear-mcp-server](https://github.com/akseyh/bear-mcp-server) - Allows the AI to read from your Bear Notes (macOS only) +- [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. +- [Amazon Bedrock Nova Canvas](https://github.com/zxkane/mcp-server-amazon-bedrock) 📇 ☁ - Use Amazon Nova Canvas model for image generation. +- [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 +- [anaisbetts/mcp-installer](https://github.com/anaisbetts/mcp-installer) 🐍 🏠 - An MCP server that installs other MCP servers for you. +- [anaisbetts/mcp-youtube](https://github.com/anaisbetts/mcp-youtube) 📇 ☁ - Fetch YouTube subtitles +- [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) +- [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 +- [anjor/coinmarket-mcp-server](https://github.com/anjor/coinmarket-mcp-server) 🐍 🏠 - Coinmarket API integration to fetch cryptocurrency listings and quotes +- [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 +- [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. +- [awkoy/replicate-flux-mcp](https://github.com/awkoy/replicate-flux-mcp) 📇 ☁ - Provides the ability to generate images via Replicate's API. - [awwaiid/mcp-server-taskwarrior](https://github.com/awwaiid/mcp-server-taskwarrior) 🏠 📇 - An MCP server for basic local taskwarrior usage (add, update, remove tasks) -- [PV-Bhat/vibe-check-mcp-server](https://github.com/PV-Bhat/vibe-check-mcp-server) 📇 ☁ - An MCP server that prevents cascading errors and scope creep by calling a "Vibe-check" agent to ensure user alignment. +- [baba786/phabricator-mcp-server](https://github.com/baba786/phabricator-mcp-server) 🐍 ☁ - Interacting with Phabricator API +- [Badhansen/notion-mcp](https://github.com/Badhansen/notion-mcp) 🐍 ☁ - A Model Context Protocol (MCP) server that integrates with Notion's API to manage personal todo lists efficiently. +- [bart6114/my-bear-mcp-server](https://github.com/bart6114/my-bear-mcp-server/) 📇 🏠 🍎 - Allows to read notes and tags for the Bear Note taking app, through a direct integration with Bear's sqlitedb. +- [blurrah/mcp-graphql](https://github.com/blurrah/mcp-graphql) 📇 ☁ - Allows the AI to query GraphQL servers +- [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). +- [chrishayuk/mcp-cli](https://github.com/chrishayuk/mcp-cli) 🐍 🏠 - Yet another CLI tool for testing MCP servers +- [danhilse/notion_mcp](https://github.com/danhilse/notion_mcp) 🐍 ☁ - Integrates with Notion's API to manage personal todo lists +- [evalstate/mcp-miro](https://github.com/evalstate/mcp-miro) 📇 ☁ - Access MIRO whiteboards, bulk create and read items. Requires OAUTH key for REST API. +- [future-audiences/wikimedia-enterprise-model-context-protocol](https://gitlab.wikimedia.org/repos/future-audiences/wikimedia-enterprise-model-context-protocol) 🐍 ☁ - Wikipedia Article lookup API +- [githejie/mcp-server-calculator](https://github.com/githejie/mcp-server-calculator) 🐍 🏠 - This server enables LLMs to use calculator for precise numerical calculations +- [gotoolkits/DifyWorkflow](https://github.com/gotoolkits/mcp-difyworkflow-server) - 🏎 ☁ Tools to the query and execute of Dify workflows +- [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). +- [hmk/attio-mcp-server](https://github.com/hmk/attio-mcp-server) - 📇 ☁ Allows AI clients to manage records and notes in Attio CRM +- [isaacwasserman/mcp-vegalite-server](https://github.com/isaacwasserman/mcp-vegalite-server) 🐍 🏠 - Generate visualizations from fetched data using the VegaLite format and renderer. +- [ivo-toby/contentful-mcp](https://github.com/ivo-toby/contentful-mcp) 📇 🏠 - Update, create, delete content, content-models and assets in your Contentful Space +- [j3k0/speech.sh](https://github.com/j3k0/speech.sh/blob/main/MCP_README.md) 🏠 - Let the agent speak things out loud, notify you when he's done working with a quick summary +- [joshuarileydev/mac-apps-launcher-mcp-server](https://github.com/JoshuaRileyDev/mac-apps-launcher) 📇 🏠 - An MCP server to list and launch applications on MacOS - [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 -- [yuna0x0/hackmd-mcp](https://github.com/yuna0x0/hackmd-mcp) 📇 ☁ - Allows AI models to interact with [HackMD](https://hackmd.io) +- [kenliao94/mcp-server-rabbitmq](https://github.com/kenliao94/mcp-server-rabbitmq) 🐍 🏠 - Enable interaction (admin operation, message enqueue/dequeue) with RabbitMQ +- [kj455/mcp-kibela](https://github.com/kj455/mcp-kibela) - 📇 ☁ Allows AI models to interact with [Kibela](https://kibe.la/) +- [KS-GEN-AI/confluence-mcp-server](https://github.com/KS-GEN-AI/confluence-mcp-server) 📇 ☁ 🍎 🪟 - Get Confluence data via CQL and read pages. +- [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. - [lciesielski/mcp-salesforce](https://github.com/lciesielski/mcp-salesforce-example) 🏠 ☁ - MCP server with basic demonstration of interactions with Salesforce instance +- [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. +- [magarcia/mcp-server-giphy](https://github.com/magarcia/mcp-server-giphy) 📇 ☁ - Search and retrieve GIFs from Giphy's vast library through the Giphy API. +- [makehq/mcp-server](https://github.com/integromat/make-mcp-server) 🎖 📇 🏠 - Turn your [Make](https://www.make.com/) scenarios into callable tools for AI assistants. +- [marcelmarais/Spotify](https://github.com/marcelmarais/spotify-mcp-server) - 📇 🏠 Control Spotify playback and manage playlists. +- [MarkusPfundstein/mcp-obsidian](https://github.com/MarkusPfundstein/mcp-obsidian) 🐍 ☁ 🏠 - Interacting with Obsidian via REST API +- [mcp-server-jfx](https://github.com/quarkiverse/quarkus-mcp-servers/tree/main/jfx) ☕ 🏠 - Draw on JavaFX canvas. +- [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. +- [modelcontextprotocol/server-everything](https://github.com/modelcontextprotocol/servers/tree/main/src/everything) 📇 🏠 - MCP server that exercises all the features of the MCP protocol +- [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 +- [mzxrai/mcp-openai](https://github.com/mzxrai/mcp-openai) 📇 ☁ - Chat with OpenAI's smartest models +- [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 +- [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 +- [NON906/omniparser-autogui-mcp](https://github.com/NON906/omniparser-autogui-mcp) - 🐍 Automatic operation of on-screen GUI. +- [pierrebrunelle/mcp-server-openai](https://github.com/pierrebrunelle/mcp-server-openai) 🐍 ☁ - Query OpenAI models directly from Claude using MCP protocol +- [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). +- [PV-Bhat/vibe-check-mcp-server](https://github.com/PV-Bhat/vibe-check-mcp-server) 📇 ☁ - An MCP server that prevents cascading errors and scope creep by calling a "Vibe-check" agent to ensure user alignment. - [pwh-pwh/cal-mcp](https://github.com/pwh-pwh/cal-mcp) - An MCP server for Mathematical expression calculation +- [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 +- [reeeeemo/ancestry-mcp](https://github.com/reeeeemo/ancestry-mcp) 🐍 🏠 - Allows the AI to read .ged files and genetic data +- [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. +- [roychri/mcp-server-asana](https://github.com/roychri/mcp-server-asana) - 📇 ☁ This Model Context Protocol server implementation of Asana allows you to talk to Asana API from MCP Client such as Anthropic's Claude Desktop Application, and many more. +- [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) +- [SecretiveShell/MCP-wolfram-alpha](https://github.com/SecretiveShell/MCP-wolfram-alpha) 🐍 ☁ - An MCP server for querying wolfram alpha API. +- [Seym0n/tiktok-mcp](https://github.com/Seym0n/tiktok-mcp) 📇 ☁ - Interact with TikTok videos +- [sirmews/apple-notes-mcp](https://github.com/sirmews/apple-notes-mcp) 🐍 🏠 - Allows the AI to read from your local Apple Notes database (macOS only) +- [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. +- [suekou/mcp-notion-server](https://github.com/suekou/mcp-notion-server) 📇 🏠 - Interacting with Notion API +- [tacticlaunch/mcp-linear](https://github.com/tacticlaunch/mcp-linear) 📇 ☁ 🍎 🪟 🐧 - Integrates with Linear project management system +- [tanigami/mcp-server-perplexity](https://github.com/tanigami/mcp-server-perplexity) 🐍 ☁ - Interacting with Perplexity API. +- [tevonsb/homeassistant-mcp](https://github.com/tevonsb/homeassistant-mcp) 📇 🏠 - Access Home Assistant data and control devices (lights, switches, thermostats, etc). +- [tomekkorbak/oura-mcp-server](https://github.com/tomekkorbak/oura-mcp-server) 🐍 ☁ - An MCP server for Oura, an app for tracking sleep +- [tomekkorbak/strava-mcp-server](https://github.com/tomekkorbak/strava-mcp-server) 🐍 ☁ - An MCP server for Strava, an app for tracking physical exercise - [wanaku-ai/wanaku](https://github.com/wanaku-ai/wanaku) - ☁ 🏠 The Wanaku MCP Router is a SSE-based MCP server that provides an extensible routing engine that allows integrating your enterprise systems with AI agents. +- [wong2/mcp-cli](https://github.com/wong2/mcp-cli) 📇 🏠 - CLI tool for testing MCP servers +- [ws-mcp](https://github.com/nick1udwig/ws-mcp) - Wrap MCP servers with a WebSocket (for use with [kitbitz](https://github.com/nick1udwig/kibitz)) +- [yuna0x0/hackmd-mcp](https://github.com/yuna0x0/hackmd-mcp) 📇 ☁ - Allows AI models to interact with [HackMD](https://hackmd.io) +- [ZeparHyfar/mcp-datetime](https://github.com/ZeparHyfar/mcp-datetime) - MCP server providing date and time functions in various formats +- [zueai/mcp-manager](https://github.com/zueai/mcp-manager) 📇 ☁ - Simple Web UI to install and manage MCP servers for Claude Desktop App. ## 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 +- [gabfr/waha-api-mcp-server](https://github.com/gabfr/waha-api-mcp-server) 📇 - An MCP server with openAPI specs for using the WhatsApp unnoficial API (https://waha.devlike.pro/ - also open source: https://github.com/devlikeapro/waha - [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). +- [lastmile-ai/mcp-agent](https://github.com/lastmile-ai/mcp-agent) 🀖 🔌 - Build effective agents with MCP servers using simple, composable patterns. - [LiteMCP](https://github.com/wong2/litemcp) 📇 - A high-level framework for building MCP servers in JavaScript/TypeScript +- [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. - [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 +- [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. +- [quarkiverse/quarkus-mcp-server](https://github.com/quarkiverse/quarkus-mcp-server) ☕ - Java SDK for building MCP servers using Quarkus. - [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. +- [ribeirogab/simple-mcp](https://github.com/ribeirogab/simple-mcp) 📇 - A simple TypeScript library for creating MCP servers. - [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 - [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. -- [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. -- [ribeirogab/simple-mcp](https://github.com/ribeirogab/simple-mcp) 📇 - A simple TypeScript library for creating MCP servers. -- [gabfr/waha-api-mcp-server](https://github.com/gabfr/waha-api-mcp-server) 📇 - An MCP server with openAPI specs for using the WhatsApp unnoficial API (https://waha.devlike.pro/ - also open source: https://github.com/devlikeapro/waha -- [paulotaylor/voyp-mcp](https://github.com/paulotaylor/voyp-mcp) 📇 - VOYP - Voice Over Your Phone MCP Server for making calls. +- [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 ## 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. +- [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. +- [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. - [isaacwasserman/mcp-langchain-ts-client](https://github.com/isaacwasserman/mcp-langchain-ts-client) 📇 – Use MCP provided tools in LangChain.js +- [kukapay/whattimeisit-mcp](https://github.com/kukapay/whattimeisit-mcp) 🐍 ☁ - A lightweight mcp server that tells you exactly what time is it. +- [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/whoami-mcp](https://github.com/kukapay/whoami-mcp) 🐍 🏠 - A lightweight MCP server that tells you exactly who you are. - [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 -- [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. - [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. +- [upsonic/gpt-computer-assistant](https://github.com/Upsonic/gpt-computer-assistant) 🐍 – framework to build vertical AI agent ## Tips and Tricks