@toolsdk.ai/registry 1.0.5-alpha.47
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 +12 -0
- package/config/categories.mjs +170 -0
- package/config/featured.mjs +1 -0
- package/config/hosting-blacklist.mjs +1 -0
- package/indexes/categories-list.json +322 -0
- package/indexes/packages-list.json +188 -0
- package/package.json +26 -0
- package/packages/aggregators/modelcontextprotocol-server-everything.json +9 -0
- package/packages/art-and-culture/mcp-server-stability-ai.json +18 -0
- package/packages/art-and-culture/modelcontextprotocol-server-everart.json +9 -0
- package/packages/browser-automation/automatalabs-mcp-server-playwright.json +9 -0
- package/packages/browser-automation/executeautomation-playwright-mcp-server.json +9 -0
- package/packages/browser-automation/hyperbrowser-mcp.json +14 -0
- package/packages/browser-automation/mcp-server-fetch.json +9 -0
- package/packages/browser-automation/modelcontextprotocol-server-puppeteer.json +9 -0
- package/packages/cloud-platforms/cloudflare-mcp-server-cloudflare.json +9 -0
- package/packages/cloud-platforms/kubernetes-mcp-server.json +9 -0
- package/packages/cloud-platforms/mcp-server-kubernetes.json +9 -0
- package/packages/cloud-platforms/strowk-mcp-k8s.json +9 -0
- package/packages/code-execution/mcp-server-make.json +9 -0
- package/packages/command-line/mcp-server-commands.json +9 -0
- package/packages/command-line/mcp-shell.json +9 -0
- package/packages/communication/enescinar-twitter-mcp.json +26 -0
- package/packages/communication/gongrzhe-server-gmail-autoauth-mcp.json +8 -0
- package/packages/communication/modelcontextprotocol-server-slack.json +18 -0
- package/packages/data-platforms/mcp-tinybird.json +18 -0
- package/packages/data-science-tools/mcp-solver.json +9 -0
- package/packages/databases/airtable-mcp-server.json +14 -0
- package/packages/databases/benborla29-mcp-server-mysql.json +30 -0
- package/packages/databases/mcp-mongo-server.json +9 -0
- package/packages/databases/mcp-server-sqlite.json +9 -0
- package/packages/databases/modelcontextprotocol-server-postgres.json +9 -0
- package/packages/databases/niledatabase-nile-mcp-server.json +18 -0
- package/packages/developer-tools/awslabs.nova-canvas-mcp-server.json +18 -0
- package/packages/developer-tools/docker-mcp.json +9 -0
- package/packages/developer-tools/hackmd-mcp.json +18 -0
- package/packages/developer-tools/llmindset-mcp-hfspace.json +9 -0
- package/packages/developer-tools/mcp-get-community-server-llm-txt.json +9 -0
- package/packages/developer-tools/mcp-get-community-server-macos.json +9 -0
- package/packages/developer-tools/mcp-openapi-schema-explorer.json +9 -0
- package/packages/developer-tools/mcp-server-aidd.json +9 -0
- package/packages/developer-tools/mcp-server-tree-sitter.json +9 -0
- package/packages/file-systems/modelcontextprotocol-server-filesystem.json +8 -0
- package/packages/file-systems/modelcontextprotocol-server-gdrive.json +9 -0
- package/packages/knowledge-memory/mcp-rememberizer-vectordb.json +14 -0
- package/packages/knowledge-memory/mcp-server-rememberizer.json +14 -0
- package/packages/knowledge-memory/modelcontextprotocol-server-memory.json +9 -0
- package/packages/location-services/modelcontextprotocol-server-google-maps.json +14 -0
- package/packages/monitoring/mcp-server-sentry.json +9 -0
- package/packages/monitoring/raygun.io-mcp-server-raygun.json +14 -0
- package/packages/other-tools-and-integrations/chargebee-mcp.json +9 -0
- package/packages/other-tools-and-integrations/llmindset-mcp-miro.json +14 -0
- package/packages/other-tools-and-integrations/mcp-server-flomo.json +14 -0
- package/packages/other-tools-and-integrations/mcp-server-time.json +9 -0
- package/packages/other-tools-and-integrations/modelcontextprotocol-server-sequential-thinking.json +9 -0
- package/packages/search-data-extraction/anaisbetts-mcp-youtube.json +9 -0
- package/packages/search-data-extraction/anilist-mcp.json +14 -0
- package/packages/search-data-extraction/chanmeng666-google-news-server.json +14 -0
- package/packages/search-data-extraction/graphlit-mcp-server.json +8 -0
- package/packages/search-data-extraction/kimtaeyoon83-mcp-server-youtube-transcript.json +9 -0
- package/packages/search-data-extraction/mcp-get-community-server-curl.json +9 -0
- package/packages/search-data-extraction/mcp-server-giphy.json +8 -0
- package/packages/search-data-extraction/mcp-server-perplexity.json +14 -0
- package/packages/search-data-extraction/modelcontextprotocol-server-aws-kb-retrieval.json +9 -0
- package/packages/search-data-extraction/modelcontextprotocol-server-brave-search.json +14 -0
- package/packages/search-data-extraction/qanon_mcp.json +9 -0
- package/packages/version-control/mcp-server-git.json +9 -0
- package/packages/version-control/modelcontextprotocol-server-github.json +14 -0
- package/packages/version-control/modelcontextprotocol-server-gitlab.json +18 -0
- package/types.ts +42 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Awesome MCP Registry
|
|
2
|
+
|
|
3
|
+
An Open, Structured, and Standard Registry for MCP Servers and Packages.
|
|
4
|
+
|
|
5
|
+
Compare to other MCP projects and registry sites, the **Awesome MCP Registry** uses structured JSON files to keep a large number of MCP projects.
|
|
6
|
+
|
|
7
|
+
With these JSON files, it automatically creates:
|
|
8
|
+
|
|
9
|
+
- **README.md**: AI generated a great `README.md` in multi-languages.
|
|
10
|
+
- **packages-list.json**: Get a full list of all MCP servers and packages by running `curl https://toolsdk-ai.github.io/awesome-mcp-registry/collections/packages-list.json`.
|
|
11
|
+
|
|
12
|
+
You can use the Awesome MCP Registry to build your own great MCP projects and hosting sites, acting as the main source for MCP servers and packages.
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
export default [
|
|
2
|
+
{
|
|
3
|
+
key: 'uncategorized',
|
|
4
|
+
name: 'Uncategorized',
|
|
5
|
+
description: 'Tools that are not categorized yet.',
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
key: 'aggregators',
|
|
9
|
+
name: 'Aggregators',
|
|
10
|
+
description: 'Servers for accessing many apps and tools through a single MCP server.',
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
key: 'art-and-culture',
|
|
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.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
key: 'browser-automation',
|
|
20
|
+
name: 'Browser Automation',
|
|
21
|
+
description:
|
|
22
|
+
'Web content access and automation capabilities. Enables searching, scraping, and processing web content in AI-friendly formats.',
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
key: 'cloud-platforms',
|
|
26
|
+
name: 'Cloud Platforms',
|
|
27
|
+
description:
|
|
28
|
+
'Cloud platform service integration. Enables management and interaction with cloud infrastructure and services.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
key: 'code-execution',
|
|
32
|
+
name: 'Code Execution',
|
|
33
|
+
description: 'Code execution servers. Allow LLMs to execute code in a secure environment, e.g. for coding agents.',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
key: 'coding-agents',
|
|
37
|
+
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.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
key: 'command-line',
|
|
43
|
+
name: 'Command Line',
|
|
44
|
+
description: 'Run commands, capture output and otherwise interact with shells and command line tools.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
key: 'communication',
|
|
48
|
+
name: 'Communication',
|
|
49
|
+
description:
|
|
50
|
+
'Integration with communication platforms for message management and channel operations. Enables AI models to interact with team communication tools.',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
key: 'customer-data-platforms',
|
|
54
|
+
name: 'Customer Data Platforms',
|
|
55
|
+
description: 'Provides access to customer profiles inside of customer data platforms',
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
key: 'databases',
|
|
59
|
+
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.',
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
key: 'data-platforms',
|
|
65
|
+
name: 'Data Platforms',
|
|
66
|
+
description: 'Data Platforms for data integration, transformation and pipeline orchestration.',
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
key: 'developer-tools',
|
|
70
|
+
name: 'Developer Tools',
|
|
71
|
+
description: 'Tools and integrations that enhance the development workflow and environment management.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
key: 'data-science-tools',
|
|
75
|
+
name: 'Data Science Tools',
|
|
76
|
+
description:
|
|
77
|
+
'Integrations and tools designed to simplify data exploration, analysis and enhance data science workflows.',
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
key: 'embedded-system',
|
|
81
|
+
name: 'Embedded System',
|
|
82
|
+
description: 'Provides access to documentation and shortcuts for working on embedded devices.',
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
key: 'file-systems',
|
|
86
|
+
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.',
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
key: 'finance-fintech',
|
|
92
|
+
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.',
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
key: 'gaming',
|
|
98
|
+
name: 'Gaming',
|
|
99
|
+
description: 'Integration with gaming related data, game engines, and services',
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
key: 'knowledge-memory',
|
|
103
|
+
name: 'Knowledge & Memory',
|
|
104
|
+
description:
|
|
105
|
+
'Persistent memory storage using knowledge graph structures. Enables AI models to maintain and query structured information across sessions.',
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
key: 'location-services',
|
|
109
|
+
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.',
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
key: 'marketing',
|
|
115
|
+
name: 'Marketing',
|
|
116
|
+
description:
|
|
117
|
+
'Tools for creating and editing marketing content, working with web meta data, product positioning, and editing guides.',
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
key: 'monitoring',
|
|
121
|
+
name: 'Monitoring',
|
|
122
|
+
description:
|
|
123
|
+
'Access and analyze application monitoring data. Enables AI models to review error reports and performance metrics.',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
key: 'search-data-extraction',
|
|
127
|
+
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.',
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
key: 'security',
|
|
133
|
+
name: 'Security',
|
|
134
|
+
description:
|
|
135
|
+
'Tools and integrations for enhancing security, including vulnerability scanning, threat detection, and secure access management.',
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
key: 'sports',
|
|
139
|
+
name: 'Sports',
|
|
140
|
+
description: 'Tools for accessing sports-related data, results, and statistics.',
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
key: 'support-service-management',
|
|
144
|
+
name: 'Support & Service Management',
|
|
145
|
+
description: 'Tools for managing customer support, IT service management, and helpdesk operations.',
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
key: 'translation-services',
|
|
149
|
+
name: 'Translation Services',
|
|
150
|
+
description:
|
|
151
|
+
'Translation tools and services to enable AI assistants to translate content between different languages.',
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
key: 'travel-transportation',
|
|
155
|
+
name: 'Travel & Transportation',
|
|
156
|
+
description:
|
|
157
|
+
'Access to travel and transportation information. Enables querying schedules, routes, and real-time travel data.',
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
key: 'version-control',
|
|
161
|
+
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.',
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
key: 'other-tools-and-integrations',
|
|
167
|
+
name: 'Other Tools and Integrations',
|
|
168
|
+
description: 'Miscellaneous tools and integrations that do not fit into other categories.',
|
|
169
|
+
},
|
|
170
|
+
];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default [];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default [];
|
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
{
|
|
2
|
+
"uncategorized": {
|
|
3
|
+
"config": {
|
|
4
|
+
"key": "uncategorized",
|
|
5
|
+
"name": "Uncategorized",
|
|
6
|
+
"description": "Tools that are not categorized yet."
|
|
7
|
+
},
|
|
8
|
+
"packagesList": []
|
|
9
|
+
},
|
|
10
|
+
"aggregators": {
|
|
11
|
+
"config": {
|
|
12
|
+
"key": "aggregators",
|
|
13
|
+
"name": "Aggregators",
|
|
14
|
+
"description": "Servers for accessing many apps and tools through a single MCP server."
|
|
15
|
+
},
|
|
16
|
+
"packagesList": [
|
|
17
|
+
"@modelcontextprotocol/server-everything"
|
|
18
|
+
]
|
|
19
|
+
},
|
|
20
|
+
"art-and-culture": {
|
|
21
|
+
"config": {
|
|
22
|
+
"key": "art-and-culture",
|
|
23
|
+
"name": "Art & Culture",
|
|
24
|
+
"description": "Access and explore art collections, cultural heritage, and museum databases. Enables AI models to search and analyze artistic and cultural content."
|
|
25
|
+
},
|
|
26
|
+
"packagesList": [
|
|
27
|
+
"@modelcontextprotocol/server-everart",
|
|
28
|
+
"mcp-server-stability-ai"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
"browser-automation": {
|
|
32
|
+
"config": {
|
|
33
|
+
"key": "browser-automation",
|
|
34
|
+
"name": "Browser Automation",
|
|
35
|
+
"description": "Web content access and automation capabilities. Enables searching, scraping, and processing web content in AI-friendly formats."
|
|
36
|
+
},
|
|
37
|
+
"packagesList": [
|
|
38
|
+
"@executeautomation/playwright-mcp-server",
|
|
39
|
+
"@automatalabs/mcp-server-playwright",
|
|
40
|
+
"hyperbrowser-mcp",
|
|
41
|
+
"mcp-server-fetch",
|
|
42
|
+
"@modelcontextprotocol/server-puppeteer"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
"cloud-platforms": {
|
|
46
|
+
"config": {
|
|
47
|
+
"key": "cloud-platforms",
|
|
48
|
+
"name": "Cloud Platforms",
|
|
49
|
+
"description": "Cloud platform service integration. Enables management and interaction with cloud infrastructure and services."
|
|
50
|
+
},
|
|
51
|
+
"packagesList": [
|
|
52
|
+
"kubernetes-mcp-server",
|
|
53
|
+
"@cloudflare/mcp-server-cloudflare",
|
|
54
|
+
"mcp-server-kubernetes",
|
|
55
|
+
"@strowk/mcp-k8s"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
"code-execution": {
|
|
59
|
+
"config": {
|
|
60
|
+
"key": "code-execution",
|
|
61
|
+
"name": "Code Execution",
|
|
62
|
+
"description": "Code execution servers. Allow LLMs to execute code in a secure environment, e.g. for coding agents."
|
|
63
|
+
},
|
|
64
|
+
"packagesList": [
|
|
65
|
+
"mcp-server-make"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
"coding-agents": {
|
|
69
|
+
"config": {
|
|
70
|
+
"key": "coding-agents",
|
|
71
|
+
"name": "Coding Agents",
|
|
72
|
+
"description": "Full coding agents that enable LLMs to read, edit, and execute code and solve general programming tasks completely autonomously."
|
|
73
|
+
},
|
|
74
|
+
"packagesList": []
|
|
75
|
+
},
|
|
76
|
+
"command-line": {
|
|
77
|
+
"config": {
|
|
78
|
+
"key": "command-line",
|
|
79
|
+
"name": "Command Line",
|
|
80
|
+
"description": "Run commands, capture output and otherwise interact with shells and command line tools."
|
|
81
|
+
},
|
|
82
|
+
"packagesList": [
|
|
83
|
+
"mcp-shell",
|
|
84
|
+
"mcp-server-commands"
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
"communication": {
|
|
88
|
+
"config": {
|
|
89
|
+
"key": "communication",
|
|
90
|
+
"name": "Communication",
|
|
91
|
+
"description": "Integration with communication platforms for message management and channel operations. Enables AI models to interact with team communication tools."
|
|
92
|
+
},
|
|
93
|
+
"packagesList": [
|
|
94
|
+
"@gongrzhe/server-gmail-autoauth-mcp",
|
|
95
|
+
"@enescinar/twitter-mcp",
|
|
96
|
+
"@modelcontextprotocol/server-slack"
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
"customer-data-platforms": {
|
|
100
|
+
"config": {
|
|
101
|
+
"key": "customer-data-platforms",
|
|
102
|
+
"name": "Customer Data Platforms",
|
|
103
|
+
"description": "Provides access to customer profiles inside of customer data platforms"
|
|
104
|
+
},
|
|
105
|
+
"packagesList": []
|
|
106
|
+
},
|
|
107
|
+
"databases": {
|
|
108
|
+
"config": {
|
|
109
|
+
"key": "databases",
|
|
110
|
+
"name": "Databases",
|
|
111
|
+
"description": "Secure database access with schema inspection capabilities. Enables querying and analyzing data with configurable security controls including read-only access."
|
|
112
|
+
},
|
|
113
|
+
"packagesList": [
|
|
114
|
+
"mcp-mongo-server",
|
|
115
|
+
"airtable-mcp-server",
|
|
116
|
+
"@benborla29/mcp-server-mysql",
|
|
117
|
+
"@modelcontextprotocol/server-postgres",
|
|
118
|
+
"mcp-server-sqlite",
|
|
119
|
+
"@niledatabase/nile-mcp-server"
|
|
120
|
+
]
|
|
121
|
+
},
|
|
122
|
+
"data-platforms": {
|
|
123
|
+
"config": {
|
|
124
|
+
"key": "data-platforms",
|
|
125
|
+
"name": "Data Platforms",
|
|
126
|
+
"description": "Data Platforms for data integration, transformation and pipeline orchestration."
|
|
127
|
+
},
|
|
128
|
+
"packagesList": [
|
|
129
|
+
"mcp-tinybird"
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
"developer-tools": {
|
|
133
|
+
"config": {
|
|
134
|
+
"key": "developer-tools",
|
|
135
|
+
"name": "Developer Tools",
|
|
136
|
+
"description": "Tools and integrations that enhance the development workflow and environment management."
|
|
137
|
+
},
|
|
138
|
+
"packagesList": [
|
|
139
|
+
"mcp-server-aidd",
|
|
140
|
+
"mcp-openapi-schema-explorer",
|
|
141
|
+
"@llmindset/mcp-hfspace",
|
|
142
|
+
"@mcp-get-community/server-macos",
|
|
143
|
+
"hackmd-mcp",
|
|
144
|
+
"mcp-server-tree-sitter",
|
|
145
|
+
"docker-mcp",
|
|
146
|
+
"awslabs.nova-canvas-mcp-server",
|
|
147
|
+
"@mcp-get-community/server-llm-txt"
|
|
148
|
+
]
|
|
149
|
+
},
|
|
150
|
+
"data-science-tools": {
|
|
151
|
+
"config": {
|
|
152
|
+
"key": "data-science-tools",
|
|
153
|
+
"name": "Data Science Tools",
|
|
154
|
+
"description": "Integrations and tools designed to simplify data exploration, analysis and enhance data science workflows."
|
|
155
|
+
},
|
|
156
|
+
"packagesList": [
|
|
157
|
+
"mcp-solver"
|
|
158
|
+
]
|
|
159
|
+
},
|
|
160
|
+
"embedded-system": {
|
|
161
|
+
"config": {
|
|
162
|
+
"key": "embedded-system",
|
|
163
|
+
"name": "Embedded System",
|
|
164
|
+
"description": "Provides access to documentation and shortcuts for working on embedded devices."
|
|
165
|
+
},
|
|
166
|
+
"packagesList": []
|
|
167
|
+
},
|
|
168
|
+
"file-systems": {
|
|
169
|
+
"config": {
|
|
170
|
+
"key": "file-systems",
|
|
171
|
+
"name": "File Systems",
|
|
172
|
+
"description": "Provides direct access to local file systems with configurable permissions. Enables AI models to read, write, and manage files within specified directories."
|
|
173
|
+
},
|
|
174
|
+
"packagesList": [
|
|
175
|
+
"@modelcontextprotocol/server-gdrive",
|
|
176
|
+
"@modelcontextprotocol/server-filesystem"
|
|
177
|
+
]
|
|
178
|
+
},
|
|
179
|
+
"finance-fintech": {
|
|
180
|
+
"config": {
|
|
181
|
+
"key": "finance-fintech",
|
|
182
|
+
"name": "Finance & Fintech",
|
|
183
|
+
"description": "Financial data access and analysis tools. Enables AI models to work with market data, trading platforms, and financial information."
|
|
184
|
+
},
|
|
185
|
+
"packagesList": []
|
|
186
|
+
},
|
|
187
|
+
"gaming": {
|
|
188
|
+
"config": {
|
|
189
|
+
"key": "gaming",
|
|
190
|
+
"name": "Gaming",
|
|
191
|
+
"description": "Integration with gaming related data, game engines, and services"
|
|
192
|
+
},
|
|
193
|
+
"packagesList": []
|
|
194
|
+
},
|
|
195
|
+
"knowledge-memory": {
|
|
196
|
+
"config": {
|
|
197
|
+
"key": "knowledge-memory",
|
|
198
|
+
"name": "Knowledge & Memory",
|
|
199
|
+
"description": "Persistent memory storage using knowledge graph structures. Enables AI models to maintain and query structured information across sessions."
|
|
200
|
+
},
|
|
201
|
+
"packagesList": [
|
|
202
|
+
"@modelcontextprotocol/server-memory",
|
|
203
|
+
"mcp-rememberizer-vectordb",
|
|
204
|
+
"mcp-server-rememberizer"
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
"location-services": {
|
|
208
|
+
"config": {
|
|
209
|
+
"key": "location-services",
|
|
210
|
+
"name": "Location Services",
|
|
211
|
+
"description": "Location-based services and mapping tools. Enables AI models to work with geographic data, weather information, and location-based analytics."
|
|
212
|
+
},
|
|
213
|
+
"packagesList": [
|
|
214
|
+
"@modelcontextprotocol/server-google-maps"
|
|
215
|
+
]
|
|
216
|
+
},
|
|
217
|
+
"marketing": {
|
|
218
|
+
"config": {
|
|
219
|
+
"key": "marketing",
|
|
220
|
+
"name": "Marketing",
|
|
221
|
+
"description": "Tools for creating and editing marketing content, working with web meta data, product positioning, and editing guides."
|
|
222
|
+
},
|
|
223
|
+
"packagesList": []
|
|
224
|
+
},
|
|
225
|
+
"monitoring": {
|
|
226
|
+
"config": {
|
|
227
|
+
"key": "monitoring",
|
|
228
|
+
"name": "Monitoring",
|
|
229
|
+
"description": "Access and analyze application monitoring data. Enables AI models to review error reports and performance metrics."
|
|
230
|
+
},
|
|
231
|
+
"packagesList": [
|
|
232
|
+
"@raygun.io/mcp-server-raygun",
|
|
233
|
+
"mcp-server-sentry"
|
|
234
|
+
]
|
|
235
|
+
},
|
|
236
|
+
"search-data-extraction": {
|
|
237
|
+
"config": {
|
|
238
|
+
"key": "search-data-extraction",
|
|
239
|
+
"name": "Search & Data Extraction",
|
|
240
|
+
"description": "Tools and services for searching and extracting data from various sources. Enables AI models to retrieve and process information efficiently."
|
|
241
|
+
},
|
|
242
|
+
"packagesList": [
|
|
243
|
+
"@modelcontextprotocol/server-brave-search",
|
|
244
|
+
"anilist-mcp",
|
|
245
|
+
"@chanmeng666/google-news-server",
|
|
246
|
+
"graphlit-mcp-server",
|
|
247
|
+
"mcp-server-perplexity",
|
|
248
|
+
"@kimtaeyoon83/mcp-server-youtube-transcript",
|
|
249
|
+
"@modelcontextprotocol/server-aws-kb-retrieval",
|
|
250
|
+
"@mcp-get-community/server-curl",
|
|
251
|
+
"mcp-server-giphy",
|
|
252
|
+
"qanon_mcp",
|
|
253
|
+
"@anaisbetts/mcp-youtube"
|
|
254
|
+
]
|
|
255
|
+
},
|
|
256
|
+
"security": {
|
|
257
|
+
"config": {
|
|
258
|
+
"key": "security",
|
|
259
|
+
"name": "Security",
|
|
260
|
+
"description": "Tools and integrations for enhancing security, including vulnerability scanning, threat detection, and secure access management."
|
|
261
|
+
},
|
|
262
|
+
"packagesList": []
|
|
263
|
+
},
|
|
264
|
+
"sports": {
|
|
265
|
+
"config": {
|
|
266
|
+
"key": "sports",
|
|
267
|
+
"name": "Sports",
|
|
268
|
+
"description": "Tools for accessing sports-related data, results, and statistics."
|
|
269
|
+
},
|
|
270
|
+
"packagesList": []
|
|
271
|
+
},
|
|
272
|
+
"support-service-management": {
|
|
273
|
+
"config": {
|
|
274
|
+
"key": "support-service-management",
|
|
275
|
+
"name": "Support & Service Management",
|
|
276
|
+
"description": "Tools for managing customer support, IT service management, and helpdesk operations."
|
|
277
|
+
},
|
|
278
|
+
"packagesList": []
|
|
279
|
+
},
|
|
280
|
+
"translation-services": {
|
|
281
|
+
"config": {
|
|
282
|
+
"key": "translation-services",
|
|
283
|
+
"name": "Translation Services",
|
|
284
|
+
"description": "Translation tools and services to enable AI assistants to translate content between different languages."
|
|
285
|
+
},
|
|
286
|
+
"packagesList": []
|
|
287
|
+
},
|
|
288
|
+
"travel-transportation": {
|
|
289
|
+
"config": {
|
|
290
|
+
"key": "travel-transportation",
|
|
291
|
+
"name": "Travel & Transportation",
|
|
292
|
+
"description": "Access to travel and transportation information. Enables querying schedules, routes, and real-time travel data."
|
|
293
|
+
},
|
|
294
|
+
"packagesList": []
|
|
295
|
+
},
|
|
296
|
+
"version-control": {
|
|
297
|
+
"config": {
|
|
298
|
+
"key": "version-control",
|
|
299
|
+
"name": "Version Control",
|
|
300
|
+
"description": "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."
|
|
301
|
+
},
|
|
302
|
+
"packagesList": [
|
|
303
|
+
"@modelcontextprotocol/server-gitlab",
|
|
304
|
+
"@modelcontextprotocol/server-github",
|
|
305
|
+
"mcp-server-git"
|
|
306
|
+
]
|
|
307
|
+
},
|
|
308
|
+
"other-tools-and-integrations": {
|
|
309
|
+
"config": {
|
|
310
|
+
"key": "other-tools-and-integrations",
|
|
311
|
+
"name": "Other Tools and Integrations",
|
|
312
|
+
"description": "Miscellaneous tools and integrations that do not fit into other categories."
|
|
313
|
+
},
|
|
314
|
+
"packagesList": [
|
|
315
|
+
"@chargebee/mcp",
|
|
316
|
+
"mcp-server-flomo",
|
|
317
|
+
"@llmindset/mcp-miro",
|
|
318
|
+
"@modelcontextprotocol/server-sequential-thinking",
|
|
319
|
+
"mcp-server-time"
|
|
320
|
+
]
|
|
321
|
+
}
|
|
322
|
+
}
|