@toolsdk.ai/registry 1.0.12 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +244 -4
- package/config/categories.mjs +30 -48
- package/config/featured.mjs +3 -1
- package/indexes/categories-list.json +30 -30
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
# Awesome MCP Registry
|
|
2
2
|
|
|
3
|
-
Welcome to the Awesome MCP Registry, your go-to open and structured registry
|
|
3
|
+
Welcome to the Awesome MCP Registry, your go-to open and structured registry with 62+ MCP servers and packages.
|
|
4
|
+
|
|
5
|
+
- [Aggregators](#aggregators)
|
|
6
|
+
- [Art & Culture](#art-and-culture)
|
|
7
|
+
- [Browser Automation](#browser-automation)
|
|
8
|
+
- [Cloud Platforms](#cloud-platforms)
|
|
9
|
+
- [Code Execution](#code-execution)
|
|
10
|
+
- [Command Line](#command-line)
|
|
11
|
+
- [Communication](#communication)
|
|
12
|
+
- [Databases](#databases)
|
|
13
|
+
- [Data Platforms](#data-platforms)
|
|
14
|
+
- [Developer Tools](#developer-tools)
|
|
15
|
+
- [Data Science Tools](#data-science-tools)
|
|
16
|
+
- [File Systems](#file-systems)
|
|
17
|
+
- [Knowledge & Memory](#knowledge-memory)
|
|
18
|
+
- [Location Services](#location-services)
|
|
19
|
+
- [Monitoring](#monitoring)
|
|
20
|
+
- [Search & Data Extraction](#search-data-extraction)
|
|
21
|
+
- [Version Control](#version-control)
|
|
22
|
+
- [Other Tools and Integrations](#other-tools-and-integrations)
|
|
23
|
+
|
|
4
24
|
|
|
5
25
|
Unlike other MCP projects, this `Awesome MCP Registry` leverages structured JSON configs to generate `README.md`, [npm package](https://www.npmjs.com/package/@toolsdk.ai/registry) and [packages-list.json](https://toolsdk-ai.github.io/awesome-mcp-registry/indexes/packages-list.json)
|
|
6
26
|
|
|
@@ -8,20 +28,240 @@ You can use the `Awesome MCP Registry` to build your own great MCP projects and
|
|
|
8
28
|
|
|
9
29
|
## Quick Start
|
|
10
30
|
|
|
11
|
-
Install via package manager:
|
|
31
|
+
#### Install via package manager:
|
|
12
32
|
|
|
13
33
|
```bash
|
|
14
34
|
npm install @toolsdk.ai/registry
|
|
15
35
|
```
|
|
16
36
|
|
|
17
|
-
Use it on your JavaScript / Typescript project:
|
|
37
|
+
#### Use it on your JavaScript / Typescript project:
|
|
18
38
|
|
|
19
39
|
```ts
|
|
20
40
|
import mcpServerLists from '@toolsdk.ai/registry/indexes/packages-lists.json';
|
|
21
41
|
```
|
|
22
42
|
|
|
23
|
-
Fetch all
|
|
43
|
+
#### Fetch all MCP Servers lists via cURL:
|
|
24
44
|
|
|
25
45
|
```bash
|
|
26
46
|
curl https://toolsdk-ai.github.io/awesome-mcp-registry/indexes/packages-list.json
|
|
27
47
|
```
|
|
48
|
+
|
|
49
|
+
```ts
|
|
50
|
+
// JavaScript TypeScript
|
|
51
|
+
console.log(await(await fetch('https://toolsdk-ai.github.io/awesome-mcp-registry/indexes/packages-list.json')).json());
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
#### Submit new MCP servers:
|
|
55
|
+
|
|
56
|
+
```json
|
|
57
|
+
{
|
|
58
|
+
"type": "mcp-server",
|
|
59
|
+
"name": "@modelcontextprotocol/server-github",
|
|
60
|
+
"description": "MCP server for using the GitHub API",
|
|
61
|
+
"url": "https://github.com/modelcontextprotocol/servers/blob/main/src/github",
|
|
62
|
+
"runtime": "node",
|
|
63
|
+
"license": "MIT",
|
|
64
|
+
"env": {
|
|
65
|
+
"GITHUB_PERSONAL_ACCESS_TOKEN": {
|
|
66
|
+
"description": "Personal access token for GitHub API access",
|
|
67
|
+
"required": true
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
[Fork this repo](https://github.com/toolsdk-ai/awesome-mcp-registry/fork), and create a new file called `your-new-mcp-server.json` under [packages/uncategorized](./packages/uncategorized) folder.
|
|
74
|
+
|
|
75
|
+
For more detail please see [the guide](./docs/guide.md).
|
|
76
|
+
|
|
77
|
+
# MCP Servers
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
<a id="aggregators"></a>
|
|
82
|
+
## Aggregators
|
|
83
|
+
|
|
84
|
+
Servers that let you access multiple apps and tools through one MCP server.
|
|
85
|
+
|
|
86
|
+
- [@modelcontextprotocol/server-everything](https://github.com/modelcontextprotocol/servers/blob/main/src/everything): This MCP server attempts to exercise all the features of the MCP protocol. It is not intended to be a useful server, but rather a test server for builders of MCP clients. It implements prompts, tools, resources, sampling, and more to showcase MCP capabilities.
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
<a id="art-and-culture"></a>
|
|
90
|
+
## Art & Culture
|
|
91
|
+
|
|
92
|
+
Explore art collections, museums, and cultural heritage with AI-friendly tools.
|
|
93
|
+
|
|
94
|
+
- [@modelcontextprotocol/server-everart](https://github.com/modelcontextprotocol/servers/blob/main/src/everart): MCP server for EverArt API integration
|
|
95
|
+
- [mcp-server-stability-ai](https://github.com/tadasant/mcp-server-stability-ai): Integrates Stability AI's image generation and manipulation capabilities for editing, upscaling, and more via Stable Diffusion models.
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
<a id="browser-automation"></a>
|
|
99
|
+
## Browser Automation
|
|
100
|
+
|
|
101
|
+
Tools for browsing, scraping, and automating web content in AI-compatible formats.
|
|
102
|
+
|
|
103
|
+
- [@automatalabs/mcp-server-playwright](https://github.com/Automata-Labs-team/MCP-Server-Playwright/tree/main): MCP server for browser automation using Playwright
|
|
104
|
+
- [@modelcontextprotocol/server-puppeteer](https://github.com/modelcontextprotocol/servers/blob/main/src/puppeteer): MCP server for browser automation using Puppeteer
|
|
105
|
+
- [@executeautomation/playwright-mcp-server](https://github.com/executeautomation/mcp-playwright/tree/main/src): A Model Context Protocol server for Playwright for Browser Automation and Web Scraping.
|
|
106
|
+
- [hyperbrowser-mcp](https://github.com/hyperbrowserai/mcp/tree/main): An MCP server for Hyperbrowser - Hyperbrowser is the next-generation platform empowering AI agents and enabling effortless, scalable browser automation
|
|
107
|
+
- [mcp-server-fetch](https://github.com/modelcontextprotocol/servers/blob/main/src/fetch): A Model Context Protocol server providing tools to fetch and convert web content for usage by LLMs
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
<a id="cloud-platforms"></a>
|
|
111
|
+
## Cloud Platforms
|
|
112
|
+
|
|
113
|
+
Integrate with cloud services to manage and interact with cloud infrastructure.
|
|
114
|
+
|
|
115
|
+
- [@cloudflare/mcp-server-cloudflare](https://github.com/cloudflare/mcp-server-cloudflare): MCP server for interacting with Cloudflare API
|
|
116
|
+
- [@strowk/mcp-k8s](https://github.com/strowk/mcp-k8s-go): MCP server connecting to Kubernetes
|
|
117
|
+
- [kubernetes-mcp-server](https://github.com/manusa/kubernetes-mcp-server): Powerful and flexible Kubernetes MCP server implementation with additional features for OpenShift. Besides the typical CRUD operations on any Kubernetes resource, this implementation adds specialized features for Pods and other resources.
|
|
118
|
+
- [mcp-server-kubernetes](https://github.com/Flux159/mcp-server-kubernetes): MCP server for managing Kubernetes clusters, enabling LLMs to interact with and control Kubernetes resources.
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
<a id="code-execution"></a>
|
|
122
|
+
## Code Execution
|
|
123
|
+
|
|
124
|
+
Run code securely, perfect for coding agents and AI-driven programming tasks.
|
|
125
|
+
|
|
126
|
+
- [mcp-server-make](https://github.com/wrale/mcp-server-make): A Model Context Protocol server that provides make target calling functionality. This server enables LLMs to execute make targets from a specified Makefile within a specified working directory.
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
<a id="command-line"></a>
|
|
130
|
+
## Command Line
|
|
131
|
+
|
|
132
|
+
Run shell commands and interact with command-line tools easily.
|
|
133
|
+
|
|
134
|
+
- [mcp-shell](https://github.com/hdresearch/mcp-shell): An MCP server for your shell
|
|
135
|
+
- [mcp-server-commands](https://github.com/g0t4/mcp-server-commands): MCP server enabling LLMs to execute shell commands and run scripts through various interpreters with built-in safety controls.
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
<a id="communication"></a>
|
|
139
|
+
## Communication
|
|
140
|
+
|
|
141
|
+
Connect with messaging platforms to manage chats and interact with team tools.
|
|
142
|
+
|
|
143
|
+
- [@modelcontextprotocol/server-slack](https://github.com/modelcontextprotocol/servers/blob/main/src/slack): MCP server for interacting with Slack
|
|
144
|
+
- [@enescinar/twitter-mcp](https://github.com/EnesCinr/twitter-mcp): This MCP server allows Clients to interact with Twitter, enabling posting tweets and searching Twitter.
|
|
145
|
+
- [@gongrzhe/server-gmail-autoauth-mcp](https://github.com/gongrzhe/server-gmail-autoauth-mcp): Gmail MCP server with auto authentication support
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
<a id="databases"></a>
|
|
149
|
+
## Databases
|
|
150
|
+
|
|
151
|
+
Securely access and query databases with options for read-only permissions.
|
|
152
|
+
|
|
153
|
+
- [airtable-mcp-server](https://github.com/domdomegg/airtable-mcp-server): Airtable database integration with schema inspection, read and write capabilities
|
|
154
|
+
- [@benborla29/mcp-server-mysql](https://github.com/benborla/mcp-server-mysql): An MCP server for interacting with MySQL databases
|
|
155
|
+
- [@niledatabase/nile-mcp-server](https://github.com/niledatabase/nile-mcp-server/tree/main): MCP server for Nile Database - Manage and query databases, tenants, users, auth using LLMs
|
|
156
|
+
- [mcp-server-sqlite](https://github.com/modelcontextprotocol/servers/blob/main/src/sqlite): A simple SQLite MCP server
|
|
157
|
+
- [mcp-mongo-server](https://github.com/kiliczsh/mcp-mongo-server): A Model Context Protocol Server for MongoDB
|
|
158
|
+
- [@modelcontextprotocol/server-postgres](https://github.com/modelcontextprotocol/servers/blob/main/src/postgres): MCP server for interacting with PostgreSQL databases
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
<a id="data-platforms"></a>
|
|
162
|
+
## Data Platforms
|
|
163
|
+
|
|
164
|
+
Tools for integrating, transforming, and managing data pipelines.
|
|
165
|
+
|
|
166
|
+
- [mcp-tinybird](https://github.com/tinybirdco/mcp-tinybird/tree/main/src/mcp-tinybird): A Model Context Protocol server that lets you interact with a Tinybird Workspace from any MCP client.
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
<a id="developer-tools"></a>
|
|
170
|
+
## Developer Tools
|
|
171
|
+
|
|
172
|
+
Enhance your development workflow with tools for coding and environment management.
|
|
173
|
+
|
|
174
|
+
- [@mcp-get-community/server-macos](https://github.com/mcp-get/community-servers/blob/main/src/server-macos): MCP server for macOS system operations
|
|
175
|
+
- [mcp-server-aidd](https://github.com/skydeckai/mcp-server-aidd): An MCP server that provides a comprehensive set of tools for AI-driven development workflows. Features include file system operations, code analysis using tree-sitter for multiple programming languages, Git operations, code execution, and system information retrieval. Designed to enhance AI's capability to assist in software development tasks.
|
|
176
|
+
- [mcp-server-tree-sitter](https://github.com/wrale/mcp-server-tree-sitter): A Model Context Protocol server that provides code analysis capabilities using tree-sitter. This server enables LLMs to explore, search, and analyze code with appropriate context management.
|
|
177
|
+
- [@mcp-get-community/server-llm-txt](https://github.com/mcp-get/community-servers/blob/main/src/server-llm-txt): MCP server that extracts and serves context from llm.txt files, enabling AI models to understand file structure, dependencies, and code relationships in development environments
|
|
178
|
+
- [@llmindset/mcp-hfspace](https://github.com/evalstate/mcp-hfspace/): MCP Server for using HuggingFace Spaces. Seamlessly use the latest Open Source Image, Audio and Text Models from within Claude Deskop.
|
|
179
|
+
- [awslabs.nova-canvas-mcp-server](https://github.com/awslabs/mcp/tree/main/src/nova-canvas-mcp-server): A Model Context Protocol server that lets you interact with a Nova Canvas from any MCP client.
|
|
180
|
+
- [hackmd-mcp](https://github.com/yuna0x0/hackmd-mcp): A Model Context Protocol server for integrating HackMD's note-taking platform with AI assistants
|
|
181
|
+
- [mcp-openapi-schema-explorer](https://github.com/kadykov/mcp-openapi-schema-explorer): MCP server providing token-efficient access to OpenAPI/Swagger specs via MCP Resources for client-side exploration.
|
|
182
|
+
- [docker-mcp](https://github.com/QuantGeekDev/docker-mcp): A powerful Model Context Protocol (MCP) server for Docker operations, enabling seamless container and compose stack management through Claude AI
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
<a id="data-science-tools"></a>
|
|
186
|
+
## Data Science Tools
|
|
187
|
+
|
|
188
|
+
Simplify data analysis and exploration with tools for data science workflows.
|
|
189
|
+
|
|
190
|
+
- [mcp-solver](https://github.com/szeider/mcp-solver): MCP server for Constraint Solving and Optimization
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
<a id="file-systems"></a>
|
|
194
|
+
## File Systems
|
|
195
|
+
|
|
196
|
+
Manage files and directories with tools for reading, writing, and organizing files.
|
|
197
|
+
|
|
198
|
+
- [@modelcontextprotocol/server-gdrive](https://github.com/modelcontextprotocol/servers/blob/main/src/gdrive): MCP server for interacting with Google Drive
|
|
199
|
+
- [@modelcontextprotocol/server-filesystem](https://github.com/modelcontextprotocol/servers): MCP server for filesystem access
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
<a id="knowledge-memory"></a>
|
|
203
|
+
## Knowledge & Memory
|
|
204
|
+
|
|
205
|
+
Store and query structured information for AI models to use across sessions.
|
|
206
|
+
|
|
207
|
+
- [mcp-server-rememberizer](https://github.com/skydeckai/mcp-server-rememberizer): An MCP server for interacting with Rememberizer's document and knowledge management API. This server enables Large Language Models to search, retrieve, and manage documents and integrations through Rememberizer.
|
|
208
|
+
- [mcp-rememberizer-vectordb](https://github.com/skydeckai/mcp-rememberizer-vectordb): A Model Context Protocol server for LLMs to interact with Rememberizer Vector Store.
|
|
209
|
+
- [@modelcontextprotocol/server-memory](https://github.com/modelcontextprotocol/servers/blob/main/src/memory): MCP server for enabling memory for Claude through a knowledge graph
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
<a id="location-services"></a>
|
|
213
|
+
## Location Services
|
|
214
|
+
|
|
215
|
+
Work with maps, weather, and location-based data for analytics and insights.
|
|
216
|
+
|
|
217
|
+
- [@modelcontextprotocol/server-google-maps](https://github.com/modelcontextprotocol/servers/blob/main/src/google-maps): MCP server for using the Google Maps API
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
<a id="monitoring"></a>
|
|
221
|
+
## Monitoring
|
|
222
|
+
|
|
223
|
+
Analyze app performance and error reports with monitoring tools.
|
|
224
|
+
|
|
225
|
+
- [mcp-server-sentry](https://github.com/modelcontextprotocol/servers/blob/main/src/sentry): MCP server for retrieving issues from sentry.io
|
|
226
|
+
- [@raygun.io/mcp-server-raygun](https://github.com/MindscapeHQ/mcp-server-raygun): MCP server for interacting with Raygun's API for crash reporting and real user monitoring metrics
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
<a id="search-data-extraction"></a>
|
|
230
|
+
## Search & Data Extraction
|
|
231
|
+
|
|
232
|
+
Find and extract data from various sources quickly and efficiently.
|
|
233
|
+
|
|
234
|
+
- [mcp-server-perplexity](https://github.com/tanigami/mcp-server-perplexity): MCP Server for the Perplexity API
|
|
235
|
+
- [@modelcontextprotocol/server-brave-search](https://github.com/modelcontextprotocol/servers/blob/main/src/brave-search): MCP server for Brave Search API integration
|
|
236
|
+
- [@modelcontextprotocol/server-aws-kb-retrieval](https://github.com/modelcontextprotocol/servers/blob/main/src/aws-kb-retrieval-server): MCP server for AWS Knowledge Base retrieval using Bedrock Agent Runtime
|
|
237
|
+
- [graphlit-mcp-server](https://github.com/graphlit/graphlit-mcp-server): Graphlit MCP Server for AI, RAG, OpenAI, PDF parsing and preprocessing
|
|
238
|
+
- [@chanmeng666/google-news-server](https://github.com/ChanMeng666/server-google-news): MCP server for Google News search via SerpAPI
|
|
239
|
+
- [mcp-server-giphy](https://github.com/magarcia/mcp-server-giphy): MCP Server for the Giphy API, enabling AI models to search, retrieve, and utilize GIFs from Giphy
|
|
240
|
+
- [@anaisbetts/mcp-youtube](https://github.com/anaisbetts/mcp-youtube): MCP server for fetching YouTube subtitles
|
|
241
|
+
- [anilist-mcp](https://github.com/yuna0x0/anilist-mcp): MCP server that interfaces with the AniList API, allowing LLM clients to access and interact with anime, manga, character, staff, and user data from AniList
|
|
242
|
+
- [@kimtaeyoon83/mcp-server-youtube-transcript](https://github.com/kimtaeyoon83/mcp-server-youtube-transcript): This is an MCP server that allows you to directly download transcripts of YouTube videos.
|
|
243
|
+
- [qanon_mcp](https://github.com/jkingsman/qanon-mcp-server): Enables search, exploration, and analysis of all QAnon posts/drops for sociological study
|
|
244
|
+
- [@mcp-get-community/server-curl](https://github.com/mcp-get/community-servers/blob/main/src/server-curl): MCP server for making HTTP requests using a curl-like interface
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
<a id="version-control"></a>
|
|
248
|
+
## Version Control
|
|
249
|
+
|
|
250
|
+
Manage Git repositories, pull requests, and issues with version control tools.
|
|
251
|
+
|
|
252
|
+
- [mcp-server-git](https://github.com/modelcontextprotocol/servers/blob/main/src/git): A Model Context Protocol server providing tools to read, search, and manipulate Git repositories programmatically via LLMs
|
|
253
|
+
- [@modelcontextprotocol/server-github](https://github.com/modelcontextprotocol/servers/blob/main/src/github): MCP server for using the GitHub API
|
|
254
|
+
- [@modelcontextprotocol/server-gitlab](https://github.com/modelcontextprotocol/servers/blob/main/src/gitlab): MCP server for using the GitLab API
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
<a id="other-tools-and-integrations"></a>
|
|
258
|
+
## Other Tools and Integrations
|
|
259
|
+
|
|
260
|
+
Miscellaneous tools and integrations that don’t fit into other categories.
|
|
261
|
+
|
|
262
|
+
- [@chargebee/mcp](https://github.com/chargebee/agentkit/tree/main/modelcontextprotocol): MCP Server that connects AI agents to Chargebee platform.
|
|
263
|
+
- [@modelcontextprotocol/server-sequential-thinking](https://github.com/modelcontextprotocol/servers/blob/main/src/sequentialthinking): MCP server for sequential thinking and problem solving
|
|
264
|
+
- [@llmindset/mcp-miro](https://github.com/evalstate/mcp-miro): A Model Context Protocol server to connect to the MIRO Whiteboard Application
|
|
265
|
+
- [mcp-server-flomo](https://github.com/xianminx/mcp-server-flomo): A MCP server for Flomo
|
|
266
|
+
- [mcp-server-time](https://github.com/modelcontextprotocol/servers/blob/main/src/time): A Model Context Protocol server providing tools for time queries and timezone conversions for LLMs
|
|
267
|
+
|
package/config/categories.mjs
CHANGED
|
@@ -2,169 +2,151 @@ export default [
|
|
|
2
2
|
{
|
|
3
3
|
key: 'uncategorized',
|
|
4
4
|
name: 'Uncategorized',
|
|
5
|
-
description: 'Tools that
|
|
5
|
+
description: 'Tools that haven’t been sorted into a category yet.',
|
|
6
6
|
},
|
|
7
7
|
{
|
|
8
8
|
key: 'aggregators',
|
|
9
9
|
name: 'Aggregators',
|
|
10
|
-
description: 'Servers
|
|
10
|
+
description: 'Servers that let you access multiple apps and tools through one MCP server.',
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
key: 'art-and-culture',
|
|
14
14
|
name: 'Art & Culture',
|
|
15
|
-
description:
|
|
16
|
-
'Access and explore art collections, cultural heritage, and museum databases. Enables AI models to search and analyze artistic and cultural content.',
|
|
15
|
+
description: 'Explore art collections, museums, and cultural heritage with AI-friendly tools.',
|
|
17
16
|
},
|
|
18
17
|
{
|
|
19
18
|
key: 'browser-automation',
|
|
20
19
|
name: 'Browser Automation',
|
|
21
|
-
description:
|
|
22
|
-
'Web content access and automation capabilities. Enables searching, scraping, and processing web content in AI-friendly formats.',
|
|
20
|
+
description: 'Tools for browsing, scraping, and automating web content in AI-compatible formats.',
|
|
23
21
|
},
|
|
24
22
|
{
|
|
25
23
|
key: 'cloud-platforms',
|
|
26
24
|
name: 'Cloud Platforms',
|
|
27
|
-
description:
|
|
28
|
-
'Cloud platform service integration. Enables management and interaction with cloud infrastructure and services.',
|
|
25
|
+
description: 'Integrate with cloud services to manage and interact with cloud infrastructure.',
|
|
29
26
|
},
|
|
30
27
|
{
|
|
31
28
|
key: 'code-execution',
|
|
32
29
|
name: 'Code Execution',
|
|
33
|
-
description: '
|
|
30
|
+
description: 'Run code securely, perfect for coding agents and AI-driven programming tasks.',
|
|
34
31
|
},
|
|
35
32
|
{
|
|
36
33
|
key: 'coding-agents',
|
|
37
34
|
name: 'Coding Agents',
|
|
38
|
-
description:
|
|
39
|
-
'Full coding agents that enable LLMs to read, edit, and execute code and solve general programming tasks completely autonomously.',
|
|
35
|
+
description: 'AI tools that can autonomously read, write, and execute code to solve programming tasks.',
|
|
40
36
|
},
|
|
41
37
|
{
|
|
42
38
|
key: 'command-line',
|
|
43
39
|
name: 'Command Line',
|
|
44
|
-
description: 'Run commands
|
|
40
|
+
description: 'Run shell commands and interact with command-line tools easily.',
|
|
45
41
|
},
|
|
46
42
|
{
|
|
47
43
|
key: 'communication',
|
|
48
44
|
name: 'Communication',
|
|
49
|
-
description:
|
|
50
|
-
'Integration with communication platforms for message management and channel operations. Enables AI models to interact with team communication tools.',
|
|
45
|
+
description: 'Connect with messaging platforms to manage chats and interact with team tools.',
|
|
51
46
|
},
|
|
52
47
|
{
|
|
53
48
|
key: 'customer-data-platforms',
|
|
54
49
|
name: 'Customer Data Platforms',
|
|
55
|
-
description: '
|
|
50
|
+
description: 'Access customer profiles and data from customer data platforms.',
|
|
56
51
|
},
|
|
57
52
|
{
|
|
58
53
|
key: 'databases',
|
|
59
54
|
name: 'Databases',
|
|
60
|
-
description:
|
|
61
|
-
'Secure database access with schema inspection capabilities. Enables querying and analyzing data with configurable security controls including read-only access.',
|
|
55
|
+
description: 'Securely access and query databases with options for read-only permissions.',
|
|
62
56
|
},
|
|
63
57
|
{
|
|
64
58
|
key: 'data-platforms',
|
|
65
59
|
name: 'Data Platforms',
|
|
66
|
-
description: '
|
|
60
|
+
description: 'Tools for integrating, transforming, and managing data pipelines.',
|
|
67
61
|
},
|
|
68
62
|
{
|
|
69
63
|
key: 'developer-tools',
|
|
70
64
|
name: 'Developer Tools',
|
|
71
|
-
description: '
|
|
65
|
+
description: 'Enhance your development workflow with tools for coding and environment management.',
|
|
72
66
|
},
|
|
73
67
|
{
|
|
74
68
|
key: 'data-science-tools',
|
|
75
69
|
name: 'Data Science Tools',
|
|
76
|
-
description:
|
|
77
|
-
'Integrations and tools designed to simplify data exploration, analysis and enhance data science workflows.',
|
|
70
|
+
description: 'Simplify data analysis and exploration with tools for data science workflows.',
|
|
78
71
|
},
|
|
79
72
|
{
|
|
80
73
|
key: 'embedded-system',
|
|
81
74
|
name: 'Embedded System',
|
|
82
|
-
description: '
|
|
75
|
+
description: 'Access resources and shortcuts for working with embedded devices.',
|
|
83
76
|
},
|
|
84
77
|
{
|
|
85
78
|
key: 'file-systems',
|
|
86
79
|
name: 'File Systems',
|
|
87
|
-
description:
|
|
88
|
-
'Provides direct access to local file systems with configurable permissions. Enables AI models to read, write, and manage files within specified directories.',
|
|
80
|
+
description: 'Manage files and directories with tools for reading, writing, and organizing files.',
|
|
89
81
|
},
|
|
90
82
|
{
|
|
91
83
|
key: 'finance-fintech',
|
|
92
84
|
name: 'Finance & Fintech',
|
|
93
|
-
description:
|
|
94
|
-
'Financial data access and analysis tools. Enables AI models to work with market data, trading platforms, and financial information.',
|
|
85
|
+
description: 'Work with financial data, market info, and trading platforms using AI tools.',
|
|
95
86
|
},
|
|
96
87
|
{
|
|
97
88
|
key: 'gaming',
|
|
98
89
|
name: 'Gaming',
|
|
99
|
-
description: '
|
|
90
|
+
description: 'Connect with gaming data, engines, and related services.',
|
|
100
91
|
},
|
|
101
92
|
{
|
|
102
93
|
key: 'knowledge-memory',
|
|
103
94
|
name: 'Knowledge & Memory',
|
|
104
|
-
description:
|
|
105
|
-
'Persistent memory storage using knowledge graph structures. Enables AI models to maintain and query structured information across sessions.',
|
|
95
|
+
description: 'Store and query structured information for AI models to use across sessions.',
|
|
106
96
|
},
|
|
107
97
|
{
|
|
108
98
|
key: 'location-services',
|
|
109
99
|
name: 'Location Services',
|
|
110
|
-
description:
|
|
111
|
-
'Location-based services and mapping tools. Enables AI models to work with geographic data, weather information, and location-based analytics.',
|
|
100
|
+
description: 'Work with maps, weather, and location-based data for analytics and insights.',
|
|
112
101
|
},
|
|
113
102
|
{
|
|
114
103
|
key: 'marketing',
|
|
115
104
|
name: 'Marketing',
|
|
116
|
-
description:
|
|
117
|
-
'Tools for creating and editing marketing content, working with web meta data, product positioning, and editing guides.',
|
|
105
|
+
description: 'Create and edit marketing content, manage metadata, and refine product positioning.',
|
|
118
106
|
},
|
|
119
107
|
{
|
|
120
108
|
key: 'monitoring',
|
|
121
109
|
name: 'Monitoring',
|
|
122
|
-
description:
|
|
123
|
-
'Access and analyze application monitoring data. Enables AI models to review error reports and performance metrics.',
|
|
110
|
+
description: 'Analyze app performance and error reports with monitoring tools.',
|
|
124
111
|
},
|
|
125
112
|
{
|
|
126
113
|
key: 'search-data-extraction',
|
|
127
114
|
name: 'Search & Data Extraction',
|
|
128
|
-
description:
|
|
129
|
-
'Tools and services for searching and extracting data from various sources. Enables AI models to retrieve and process information efficiently.',
|
|
115
|
+
description: 'Find and extract data from various sources quickly and efficiently.',
|
|
130
116
|
},
|
|
131
117
|
{
|
|
132
118
|
key: 'security',
|
|
133
119
|
name: 'Security',
|
|
134
|
-
description:
|
|
135
|
-
'Tools and integrations for enhancing security, including vulnerability scanning, threat detection, and secure access management.',
|
|
120
|
+
description: 'Enhance security with tools for scanning, threat detection, and secure access.',
|
|
136
121
|
},
|
|
137
122
|
{
|
|
138
123
|
key: 'sports',
|
|
139
124
|
name: 'Sports',
|
|
140
|
-
description: '
|
|
125
|
+
description: 'Access sports data, results, and stats with ease.',
|
|
141
126
|
},
|
|
142
127
|
{
|
|
143
128
|
key: 'support-service-management',
|
|
144
129
|
name: 'Support & Service Management',
|
|
145
|
-
description: '
|
|
130
|
+
description: 'Manage customer support and IT services with specialized tools.',
|
|
146
131
|
},
|
|
147
132
|
{
|
|
148
133
|
key: 'translation-services',
|
|
149
134
|
name: 'Translation Services',
|
|
150
|
-
description:
|
|
151
|
-
'Translation tools and services to enable AI assistants to translate content between different languages.',
|
|
135
|
+
description: 'Translate content between languages with AI-powered tools.',
|
|
152
136
|
},
|
|
153
137
|
{
|
|
154
138
|
key: 'travel-transportation',
|
|
155
139
|
name: 'Travel & Transportation',
|
|
156
|
-
description:
|
|
157
|
-
'Access to travel and transportation information. Enables querying schedules, routes, and real-time travel data.',
|
|
140
|
+
description: 'Get travel schedules, routes, and real-time transportation data.',
|
|
158
141
|
},
|
|
159
142
|
{
|
|
160
143
|
key: 'version-control',
|
|
161
144
|
name: 'Version Control',
|
|
162
|
-
description:
|
|
163
|
-
'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.',
|
|
145
|
+
description: 'Manage Git repositories, pull requests, and issues with version control tools.',
|
|
164
146
|
},
|
|
165
147
|
{
|
|
166
148
|
key: 'other-tools-and-integrations',
|
|
167
149
|
name: 'Other Tools and Integrations',
|
|
168
|
-
description: 'Miscellaneous tools and integrations that
|
|
150
|
+
description: 'Miscellaneous tools and integrations that don’t fit into other categories.',
|
|
169
151
|
},
|
|
170
152
|
];
|
package/config/featured.mjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"config": {
|
|
4
4
|
"key": "uncategorized",
|
|
5
5
|
"name": "Uncategorized",
|
|
6
|
-
"description": "Tools that
|
|
6
|
+
"description": "Tools that haven’t been sorted into a category yet."
|
|
7
7
|
},
|
|
8
8
|
"packagesList": []
|
|
9
9
|
},
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"config": {
|
|
12
12
|
"key": "aggregators",
|
|
13
13
|
"name": "Aggregators",
|
|
14
|
-
"description": "Servers
|
|
14
|
+
"description": "Servers that let you access multiple apps and tools through one MCP server."
|
|
15
15
|
},
|
|
16
16
|
"packagesList": [
|
|
17
17
|
"@modelcontextprotocol/server-everything"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"config": {
|
|
22
22
|
"key": "art-and-culture",
|
|
23
23
|
"name": "Art & Culture",
|
|
24
|
-
"description": "
|
|
24
|
+
"description": "Explore art collections, museums, and cultural heritage with AI-friendly tools."
|
|
25
25
|
},
|
|
26
26
|
"packagesList": [
|
|
27
27
|
"@modelcontextprotocol/server-everart",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"config": {
|
|
33
33
|
"key": "browser-automation",
|
|
34
34
|
"name": "Browser Automation",
|
|
35
|
-
"description": "
|
|
35
|
+
"description": "Tools for browsing, scraping, and automating web content in AI-compatible formats."
|
|
36
36
|
},
|
|
37
37
|
"packagesList": [
|
|
38
38
|
"@automatalabs/mcp-server-playwright",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"config": {
|
|
47
47
|
"key": "cloud-platforms",
|
|
48
48
|
"name": "Cloud Platforms",
|
|
49
|
-
"description": "
|
|
49
|
+
"description": "Integrate with cloud services to manage and interact with cloud infrastructure."
|
|
50
50
|
},
|
|
51
51
|
"packagesList": [
|
|
52
52
|
"@cloudflare/mcp-server-cloudflare",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"config": {
|
|
60
60
|
"key": "code-execution",
|
|
61
61
|
"name": "Code Execution",
|
|
62
|
-
"description": "
|
|
62
|
+
"description": "Run code securely, perfect for coding agents and AI-driven programming tasks."
|
|
63
63
|
},
|
|
64
64
|
"packagesList": [
|
|
65
65
|
"mcp-server-make"
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"config": {
|
|
70
70
|
"key": "coding-agents",
|
|
71
71
|
"name": "Coding Agents",
|
|
72
|
-
"description": "
|
|
72
|
+
"description": "AI tools that can autonomously read, write, and execute code to solve programming tasks."
|
|
73
73
|
},
|
|
74
74
|
"packagesList": []
|
|
75
75
|
},
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"config": {
|
|
78
78
|
"key": "command-line",
|
|
79
79
|
"name": "Command Line",
|
|
80
|
-
"description": "Run commands
|
|
80
|
+
"description": "Run shell commands and interact with command-line tools easily."
|
|
81
81
|
},
|
|
82
82
|
"packagesList": [
|
|
83
83
|
"mcp-shell",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"config": {
|
|
89
89
|
"key": "communication",
|
|
90
90
|
"name": "Communication",
|
|
91
|
-
"description": "
|
|
91
|
+
"description": "Connect with messaging platforms to manage chats and interact with team tools."
|
|
92
92
|
},
|
|
93
93
|
"packagesList": [
|
|
94
94
|
"@modelcontextprotocol/server-slack",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"config": {
|
|
101
101
|
"key": "customer-data-platforms",
|
|
102
102
|
"name": "Customer Data Platforms",
|
|
103
|
-
"description": "
|
|
103
|
+
"description": "Access customer profiles and data from customer data platforms."
|
|
104
104
|
},
|
|
105
105
|
"packagesList": []
|
|
106
106
|
},
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"config": {
|
|
109
109
|
"key": "databases",
|
|
110
110
|
"name": "Databases",
|
|
111
|
-
"description": "
|
|
111
|
+
"description": "Securely access and query databases with options for read-only permissions."
|
|
112
112
|
},
|
|
113
113
|
"packagesList": [
|
|
114
114
|
"airtable-mcp-server",
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
"config": {
|
|
124
124
|
"key": "data-platforms",
|
|
125
125
|
"name": "Data Platforms",
|
|
126
|
-
"description": "
|
|
126
|
+
"description": "Tools for integrating, transforming, and managing data pipelines."
|
|
127
127
|
},
|
|
128
128
|
"packagesList": [
|
|
129
129
|
"mcp-tinybird"
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
"config": {
|
|
134
134
|
"key": "developer-tools",
|
|
135
135
|
"name": "Developer Tools",
|
|
136
|
-
"description": "
|
|
136
|
+
"description": "Enhance your development workflow with tools for coding and environment management."
|
|
137
137
|
},
|
|
138
138
|
"packagesList": [
|
|
139
139
|
"@mcp-get-community/server-macos",
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"config": {
|
|
152
152
|
"key": "data-science-tools",
|
|
153
153
|
"name": "Data Science Tools",
|
|
154
|
-
"description": "
|
|
154
|
+
"description": "Simplify data analysis and exploration with tools for data science workflows."
|
|
155
155
|
},
|
|
156
156
|
"packagesList": [
|
|
157
157
|
"mcp-solver"
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
"config": {
|
|
162
162
|
"key": "embedded-system",
|
|
163
163
|
"name": "Embedded System",
|
|
164
|
-
"description": "
|
|
164
|
+
"description": "Access resources and shortcuts for working with embedded devices."
|
|
165
165
|
},
|
|
166
166
|
"packagesList": []
|
|
167
167
|
},
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
"config": {
|
|
170
170
|
"key": "file-systems",
|
|
171
171
|
"name": "File Systems",
|
|
172
|
-
"description": "
|
|
172
|
+
"description": "Manage files and directories with tools for reading, writing, and organizing files."
|
|
173
173
|
},
|
|
174
174
|
"packagesList": [
|
|
175
175
|
"@modelcontextprotocol/server-gdrive",
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
"config": {
|
|
181
181
|
"key": "finance-fintech",
|
|
182
182
|
"name": "Finance & Fintech",
|
|
183
|
-
"description": "
|
|
183
|
+
"description": "Work with financial data, market info, and trading platforms using AI tools."
|
|
184
184
|
},
|
|
185
185
|
"packagesList": []
|
|
186
186
|
},
|
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
"config": {
|
|
189
189
|
"key": "gaming",
|
|
190
190
|
"name": "Gaming",
|
|
191
|
-
"description": "
|
|
191
|
+
"description": "Connect with gaming data, engines, and related services."
|
|
192
192
|
},
|
|
193
193
|
"packagesList": []
|
|
194
194
|
},
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
"config": {
|
|
197
197
|
"key": "knowledge-memory",
|
|
198
198
|
"name": "Knowledge & Memory",
|
|
199
|
-
"description": "
|
|
199
|
+
"description": "Store and query structured information for AI models to use across sessions."
|
|
200
200
|
},
|
|
201
201
|
"packagesList": [
|
|
202
202
|
"mcp-server-rememberizer",
|
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
"config": {
|
|
209
209
|
"key": "location-services",
|
|
210
210
|
"name": "Location Services",
|
|
211
|
-
"description": "
|
|
211
|
+
"description": "Work with maps, weather, and location-based data for analytics and insights."
|
|
212
212
|
},
|
|
213
213
|
"packagesList": [
|
|
214
214
|
"@modelcontextprotocol/server-google-maps"
|
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
"config": {
|
|
219
219
|
"key": "marketing",
|
|
220
220
|
"name": "Marketing",
|
|
221
|
-
"description": "
|
|
221
|
+
"description": "Create and edit marketing content, manage metadata, and refine product positioning."
|
|
222
222
|
},
|
|
223
223
|
"packagesList": []
|
|
224
224
|
},
|
|
@@ -226,7 +226,7 @@
|
|
|
226
226
|
"config": {
|
|
227
227
|
"key": "monitoring",
|
|
228
228
|
"name": "Monitoring",
|
|
229
|
-
"description": "
|
|
229
|
+
"description": "Analyze app performance and error reports with monitoring tools."
|
|
230
230
|
},
|
|
231
231
|
"packagesList": [
|
|
232
232
|
"mcp-server-sentry",
|
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
"config": {
|
|
238
238
|
"key": "search-data-extraction",
|
|
239
239
|
"name": "Search & Data Extraction",
|
|
240
|
-
"description": "
|
|
240
|
+
"description": "Find and extract data from various sources quickly and efficiently."
|
|
241
241
|
},
|
|
242
242
|
"packagesList": [
|
|
243
243
|
"mcp-server-perplexity",
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
"config": {
|
|
258
258
|
"key": "security",
|
|
259
259
|
"name": "Security",
|
|
260
|
-
"description": "
|
|
260
|
+
"description": "Enhance security with tools for scanning, threat detection, and secure access."
|
|
261
261
|
},
|
|
262
262
|
"packagesList": []
|
|
263
263
|
},
|
|
@@ -265,7 +265,7 @@
|
|
|
265
265
|
"config": {
|
|
266
266
|
"key": "sports",
|
|
267
267
|
"name": "Sports",
|
|
268
|
-
"description": "
|
|
268
|
+
"description": "Access sports data, results, and stats with ease."
|
|
269
269
|
},
|
|
270
270
|
"packagesList": []
|
|
271
271
|
},
|
|
@@ -273,7 +273,7 @@
|
|
|
273
273
|
"config": {
|
|
274
274
|
"key": "support-service-management",
|
|
275
275
|
"name": "Support & Service Management",
|
|
276
|
-
"description": "
|
|
276
|
+
"description": "Manage customer support and IT services with specialized tools."
|
|
277
277
|
},
|
|
278
278
|
"packagesList": []
|
|
279
279
|
},
|
|
@@ -281,7 +281,7 @@
|
|
|
281
281
|
"config": {
|
|
282
282
|
"key": "translation-services",
|
|
283
283
|
"name": "Translation Services",
|
|
284
|
-
"description": "
|
|
284
|
+
"description": "Translate content between languages with AI-powered tools."
|
|
285
285
|
},
|
|
286
286
|
"packagesList": []
|
|
287
287
|
},
|
|
@@ -289,7 +289,7 @@
|
|
|
289
289
|
"config": {
|
|
290
290
|
"key": "travel-transportation",
|
|
291
291
|
"name": "Travel & Transportation",
|
|
292
|
-
"description": "
|
|
292
|
+
"description": "Get travel schedules, routes, and real-time transportation data."
|
|
293
293
|
},
|
|
294
294
|
"packagesList": []
|
|
295
295
|
},
|
|
@@ -297,7 +297,7 @@
|
|
|
297
297
|
"config": {
|
|
298
298
|
"key": "version-control",
|
|
299
299
|
"name": "Version Control",
|
|
300
|
-
"description": "
|
|
300
|
+
"description": "Manage Git repositories, pull requests, and issues with version control tools."
|
|
301
301
|
},
|
|
302
302
|
"packagesList": [
|
|
303
303
|
"mcp-server-git",
|
|
@@ -309,7 +309,7 @@
|
|
|
309
309
|
"config": {
|
|
310
310
|
"key": "other-tools-and-integrations",
|
|
311
311
|
"name": "Other Tools and Integrations",
|
|
312
|
-
"description": "Miscellaneous tools and integrations that
|
|
312
|
+
"description": "Miscellaneous tools and integrations that don’t fit into other categories."
|
|
313
313
|
},
|
|
314
314
|
"packagesList": [
|
|
315
315
|
"@chargebee/mcp",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toolsdk.ai/registry",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"description": "An Open, Structured, and Standard Registry for MCP Servers and Packages.",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./*": "./*",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"author": "",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"dependencies": {
|
|
22
|
+
"lodash": "^4.17.21",
|
|
22
23
|
"zod": "^3.23.8"
|
|
23
24
|
}
|
|
24
25
|
}
|