@mcptoolshop/mcp-tool-registry 0.2.0
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/LICENSE +21 -0
- package/README.md +83 -0
- package/bundles/agents.json +11 -0
- package/bundles/core.json +10 -0
- package/bundles/evaluation.json +9 -0
- package/bundles/ops.json +9 -0
- package/package.json +39 -0
- package/registry.json +598 -0
- package/schema/registry.schema.json +72 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 MCP Tool Shop
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# MCP Tool Registry
|
|
2
|
+
|
|
3
|
+
Metadata-only registry for MCP Tool Shop tools.
|
|
4
|
+
|
|
5
|
+
## How MCP Tool Shop Fits Together
|
|
6
|
+
|
|
7
|
+
- **Registry** → what tools exist (this repo)
|
|
8
|
+
- **CLI** ([mcpt](https://github.com/mcp-tool-shop/mcpt)) → how you consume them
|
|
9
|
+
- **Examples** ([mcp-examples](https://github.com/mcp-tool-shop/mcp-examples)) → how you learn the model
|
|
10
|
+
- **Tags** (v0.1.0, v0.2.0) → stability, reproducibility
|
|
11
|
+
- **main** → development only; may change without notice; builds may break
|
|
12
|
+
- **Tools default to least privilege** → no network, no writes, no side effects
|
|
13
|
+
- **Capability is always explicit and opt-in** → you decide when to enable
|
|
14
|
+
|
|
15
|
+
## Getting Started
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
# View available tags
|
|
19
|
+
git tag -l
|
|
20
|
+
|
|
21
|
+
# Validate schema locally
|
|
22
|
+
npx ajv validate -s schema/registry.schema.json -d registry.json
|
|
23
|
+
|
|
24
|
+
# Use with mcpt CLI (pin to a release)
|
|
25
|
+
mcpt init --registry-ref v0.1.0
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Structure
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
mcp-tool-registry/
|
|
32
|
+
├── registry.json # Main tool registry
|
|
33
|
+
├── schema/
|
|
34
|
+
│ └── registry.schema.json # JSON Schema for validation
|
|
35
|
+
├── bundles/
|
|
36
|
+
│ ├── core.json # Core utilities bundle
|
|
37
|
+
│ ├── agents.json # Agent tools bundle
|
|
38
|
+
│ └── ops.json # Operations bundle
|
|
39
|
+
└── .github/
|
|
40
|
+
└── workflows/
|
|
41
|
+
└── validate.yml # CI validation
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Usage
|
|
45
|
+
|
|
46
|
+
The registry is consumed by the `mcp` CLI tool. Tools are installed via git.
|
|
47
|
+
|
|
48
|
+
## Adding a Tool
|
|
49
|
+
|
|
50
|
+
1. Add an entry to `registry.json`
|
|
51
|
+
2. Ensure it validates against the schema
|
|
52
|
+
3. Submit a PR
|
|
53
|
+
|
|
54
|
+
## Schema
|
|
55
|
+
|
|
56
|
+
Each tool requires:
|
|
57
|
+
- `id`: kebab-case identifier (e.g., `file-compass`)
|
|
58
|
+
- `name`: Human-readable name
|
|
59
|
+
- `description`: What the tool does
|
|
60
|
+
- `repo`: GitHub repository URL
|
|
61
|
+
- `install`: Installation config (`type`, `url`, `default_ref`)
|
|
62
|
+
- `tags`: Array of tags for search/filtering
|
|
63
|
+
- `defaults` (optional): Default settings like `safe_run`
|
|
64
|
+
|
|
65
|
+
## Bundles
|
|
66
|
+
|
|
67
|
+
Bundles are curated collections of tools:
|
|
68
|
+
- **core**: Essential utilities
|
|
69
|
+
- **agents**: Agent orchestration tools
|
|
70
|
+
- **ops**: Operations and infrastructure
|
|
71
|
+
|
|
72
|
+
## Validation
|
|
73
|
+
|
|
74
|
+
The registry is validated on every PR/push via GitHub Actions.
|
|
75
|
+
|
|
76
|
+
## What Does Pinning Mean?
|
|
77
|
+
|
|
78
|
+
When you set `ref: v0.1.0` in your `mcp.yaml`, you're pinning the **registry metadata**, not the tool code itself.
|
|
79
|
+
|
|
80
|
+
- **Registry ref** → which version of `registry.json` you read (tool IDs, descriptions, install URLs)
|
|
81
|
+
- **Tool ref** → each tool has its own `default_ref` in the registry (usually `main` or a tag)
|
|
82
|
+
|
|
83
|
+
To pin a specific tool version, use `mcpt add tool-id --ref v1.0.0` in your workspace.
|
package/bundles/ops.json
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mcptoolshop/mcp-tool-registry",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Metadata-only registry for MCP Tool Shop tools",
|
|
5
|
+
"main": "registry.json",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": "./registry.json",
|
|
8
|
+
"./schema": "./schema/registry.schema.json",
|
|
9
|
+
"./bundles/core": "./bundles/core.json",
|
|
10
|
+
"./bundles/agents": "./bundles/agents.json",
|
|
11
|
+
"./bundles/ops": "./bundles/ops.json"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"registry.json",
|
|
15
|
+
"schema/",
|
|
16
|
+
"bundles/"
|
|
17
|
+
],
|
|
18
|
+
"keywords": [
|
|
19
|
+
"mcp",
|
|
20
|
+
"registry",
|
|
21
|
+
"tools",
|
|
22
|
+
"metadata",
|
|
23
|
+
"model-context-protocol"
|
|
24
|
+
],
|
|
25
|
+
"author": "mcp-tool-shop <64996768+mcp-tool-shop@users.noreply.github.com>",
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/mcp-tool-shop/mcp-tool-registry.git"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://github.com/mcp-tool-shop/mcp-tool-registry#readme",
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/mcp-tool-shop/mcp-tool-registry/issues"
|
|
34
|
+
},
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public",
|
|
37
|
+
"registry": "https://registry.npmjs.org"
|
|
38
|
+
}
|
|
39
|
+
}
|
package/registry.json
ADDED
|
@@ -0,0 +1,598 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema_version": "0.1",
|
|
3
|
+
"generated_at": "2026-01-27",
|
|
4
|
+
"tools": [
|
|
5
|
+
{
|
|
6
|
+
"id": "a11y-assist",
|
|
7
|
+
"name": "A11y Assist",
|
|
8
|
+
"description": "AI-powered accessibility assistance and remediation",
|
|
9
|
+
"repo": "https://github.com/mcp-tool-shop/a11y-assist",
|
|
10
|
+
"install": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/mcp-tool-shop/a11y-assist.git",
|
|
13
|
+
"default_ref": "main"
|
|
14
|
+
},
|
|
15
|
+
"tags": [
|
|
16
|
+
"accessibility",
|
|
17
|
+
"ai",
|
|
18
|
+
"remediation"
|
|
19
|
+
],
|
|
20
|
+
"defaults": {
|
|
21
|
+
"safe_run": true
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"id": "a11y-ci",
|
|
26
|
+
"name": "A11y CI",
|
|
27
|
+
"description": "Continuous integration tools for accessibility testing",
|
|
28
|
+
"repo": "https://github.com/mcp-tool-shop/a11y-ci",
|
|
29
|
+
"install": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://github.com/mcp-tool-shop/a11y-ci.git",
|
|
32
|
+
"default_ref": "main"
|
|
33
|
+
},
|
|
34
|
+
"tags": [
|
|
35
|
+
"accessibility",
|
|
36
|
+
"ci",
|
|
37
|
+
"testing"
|
|
38
|
+
],
|
|
39
|
+
"defaults": {
|
|
40
|
+
"safe_run": true
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"id": "a11y-demo-site",
|
|
45
|
+
"name": "A11y Demo Site",
|
|
46
|
+
"description": "Demonstration site for accessibility testing and best practices",
|
|
47
|
+
"repo": "https://github.com/mcp-tool-shop/a11y-demo-site",
|
|
48
|
+
"install": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "https://github.com/mcp-tool-shop/a11y-demo-site.git",
|
|
51
|
+
"default_ref": "main"
|
|
52
|
+
},
|
|
53
|
+
"tags": [
|
|
54
|
+
"accessibility",
|
|
55
|
+
"demo",
|
|
56
|
+
"testing"
|
|
57
|
+
],
|
|
58
|
+
"defaults": {
|
|
59
|
+
"safe_run": true
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"id": "a11y-evidence-engine",
|
|
64
|
+
"name": "A11y Evidence Engine",
|
|
65
|
+
"description": "Evidence collection and analysis for accessibility compliance",
|
|
66
|
+
"repo": "https://github.com/mcp-tool-shop/a11y-evidence-engine",
|
|
67
|
+
"install": {
|
|
68
|
+
"type": "git",
|
|
69
|
+
"url": "https://github.com/mcp-tool-shop/a11y-evidence-engine.git",
|
|
70
|
+
"default_ref": "main"
|
|
71
|
+
},
|
|
72
|
+
"tags": [
|
|
73
|
+
"accessibility",
|
|
74
|
+
"compliance",
|
|
75
|
+
"evidence"
|
|
76
|
+
],
|
|
77
|
+
"defaults": {
|
|
78
|
+
"safe_run": true
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"id": "a11y-lint",
|
|
83
|
+
"name": "A11y Lint",
|
|
84
|
+
"description": "Linting tools for detecting accessibility issues",
|
|
85
|
+
"repo": "https://github.com/mcp-tool-shop/a11y-lint",
|
|
86
|
+
"install": {
|
|
87
|
+
"type": "git",
|
|
88
|
+
"url": "https://github.com/mcp-tool-shop/a11y-lint.git",
|
|
89
|
+
"default_ref": "main"
|
|
90
|
+
},
|
|
91
|
+
"tags": [
|
|
92
|
+
"accessibility",
|
|
93
|
+
"linting",
|
|
94
|
+
"quality"
|
|
95
|
+
],
|
|
96
|
+
"defaults": {
|
|
97
|
+
"safe_run": true
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"id": "a11y-mcp-tools",
|
|
102
|
+
"name": "A11y MCP Tools",
|
|
103
|
+
"description": "Accessibility tools and utilities for web applications",
|
|
104
|
+
"repo": "https://github.com/mcp-tool-shop/a11y-mcp-tools",
|
|
105
|
+
"install": {
|
|
106
|
+
"type": "git",
|
|
107
|
+
"url": "https://github.com/mcp-tool-shop/a11y-mcp-tools.git",
|
|
108
|
+
"default_ref": "main"
|
|
109
|
+
},
|
|
110
|
+
"tags": [
|
|
111
|
+
"accessibility",
|
|
112
|
+
"web",
|
|
113
|
+
"tools"
|
|
114
|
+
],
|
|
115
|
+
"defaults": {
|
|
116
|
+
"safe_run": true
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"id": "ally-demo-python",
|
|
121
|
+
"name": "Ally Demo Python",
|
|
122
|
+
"description": "Python demonstration of ally framework capabilities",
|
|
123
|
+
"repo": "https://github.com/mcp-tool-shop/ally-demo-python",
|
|
124
|
+
"install": {
|
|
125
|
+
"type": "git",
|
|
126
|
+
"url": "https://github.com/mcp-tool-shop/ally-demo-python.git",
|
|
127
|
+
"default_ref": "main"
|
|
128
|
+
},
|
|
129
|
+
"tags": [
|
|
130
|
+
"ally",
|
|
131
|
+
"demo",
|
|
132
|
+
"python"
|
|
133
|
+
],
|
|
134
|
+
"defaults": {
|
|
135
|
+
"safe_run": true
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"id": "aspire-ai",
|
|
140
|
+
"name": "Aspire AI",
|
|
141
|
+
"description": "Goal-oriented framework for running and evaluating AI workflows over time.",
|
|
142
|
+
"repo": "https://github.com/mcp-tool-shop/aspire-ai",
|
|
143
|
+
"install": {
|
|
144
|
+
"type": "git",
|
|
145
|
+
"url": "https://github.com/mcp-tool-shop/aspire-ai.git",
|
|
146
|
+
"default_ref": "main"
|
|
147
|
+
},
|
|
148
|
+
"tags": [
|
|
149
|
+
"evaluation",
|
|
150
|
+
"experimentation",
|
|
151
|
+
"metrics"
|
|
152
|
+
],
|
|
153
|
+
"defaults": {
|
|
154
|
+
"safe_run": true
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"id": "audiobooker",
|
|
159
|
+
"name": "Audiobooker",
|
|
160
|
+
"description": "Audio book generation and management system",
|
|
161
|
+
"repo": "https://github.com/mcp-tool-shop/audiobooker",
|
|
162
|
+
"install": {
|
|
163
|
+
"type": "git",
|
|
164
|
+
"url": "https://github.com/mcp-tool-shop/audiobooker.git",
|
|
165
|
+
"default_ref": "main"
|
|
166
|
+
},
|
|
167
|
+
"tags": [
|
|
168
|
+
"audio",
|
|
169
|
+
"ebook",
|
|
170
|
+
"generation"
|
|
171
|
+
],
|
|
172
|
+
"defaults": {
|
|
173
|
+
"safe_run": true
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"id": "backpropagate",
|
|
178
|
+
"name": "Backpropagate",
|
|
179
|
+
"description": "Structured feedback loops for improving AI behavior through iteration.",
|
|
180
|
+
"repo": "https://github.com/mcp-tool-shop/backpropagate",
|
|
181
|
+
"install": {
|
|
182
|
+
"type": "git",
|
|
183
|
+
"url": "https://github.com/mcp-tool-shop/backpropagate.git",
|
|
184
|
+
"default_ref": "main"
|
|
185
|
+
},
|
|
186
|
+
"tags": [
|
|
187
|
+
"evaluation",
|
|
188
|
+
"feedback",
|
|
189
|
+
"iteration"
|
|
190
|
+
],
|
|
191
|
+
"defaults": {
|
|
192
|
+
"safe_run": true
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"id": "claude-collaborate",
|
|
197
|
+
"name": "Claude Collaborate",
|
|
198
|
+
"description": "Collaboration primitives for multi-agent and human-in-the-loop Claude workflows.",
|
|
199
|
+
"repo": "https://github.com/mcp-tool-shop/claude-collaborate",
|
|
200
|
+
"install": {
|
|
201
|
+
"type": "git",
|
|
202
|
+
"url": "https://github.com/mcp-tool-shop/claude-collaborate.git",
|
|
203
|
+
"default_ref": "main"
|
|
204
|
+
},
|
|
205
|
+
"tags": [
|
|
206
|
+
"claude",
|
|
207
|
+
"agents",
|
|
208
|
+
"collaboration"
|
|
209
|
+
],
|
|
210
|
+
"defaults": {
|
|
211
|
+
"safe_run": true
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"id": "comfy-headless",
|
|
216
|
+
"name": "Comfy Headless",
|
|
217
|
+
"description": "Run ComfyUI workflows without the UI \u00e2\u20ac\u201d headless execution for automation.",
|
|
218
|
+
"repo": "https://github.com/mcp-tool-shop/comfy-headless",
|
|
219
|
+
"install": {
|
|
220
|
+
"type": "git",
|
|
221
|
+
"url": "https://github.com/mcp-tool-shop/comfy-headless.git",
|
|
222
|
+
"default_ref": "main"
|
|
223
|
+
},
|
|
224
|
+
"tags": [
|
|
225
|
+
"comfyui",
|
|
226
|
+
"headless",
|
|
227
|
+
"automation",
|
|
228
|
+
"image"
|
|
229
|
+
],
|
|
230
|
+
"defaults": {
|
|
231
|
+
"safe_run": true
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"id": "context-window-manager",
|
|
236
|
+
"name": "Context Window Manager",
|
|
237
|
+
"description": "Deterministic tools for shaping and allocating LLM context windows.",
|
|
238
|
+
"repo": "https://github.com/mcp-tool-shop/context-window-manager",
|
|
239
|
+
"install": {
|
|
240
|
+
"type": "git",
|
|
241
|
+
"url": "https://github.com/mcp-tool-shop/context-window-manager.git",
|
|
242
|
+
"default_ref": "main"
|
|
243
|
+
},
|
|
244
|
+
"tags": [
|
|
245
|
+
"context",
|
|
246
|
+
"tokens",
|
|
247
|
+
"rag",
|
|
248
|
+
"memory"
|
|
249
|
+
],
|
|
250
|
+
"defaults": {
|
|
251
|
+
"safe_run": true
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"id": "brain-dev",
|
|
256
|
+
"name": "Dev Brain",
|
|
257
|
+
"description": "Orchestration and reasoning control plane for tool-driven agent workflows.",
|
|
258
|
+
"repo": "https://github.com/mcp-tool-shop/brain-dev",
|
|
259
|
+
"install": {
|
|
260
|
+
"type": "git",
|
|
261
|
+
"url": "https://github.com/mcp-tool-shop/brain-dev.git",
|
|
262
|
+
"default_ref": "main"
|
|
263
|
+
},
|
|
264
|
+
"tags": [
|
|
265
|
+
"orchestration",
|
|
266
|
+
"agents",
|
|
267
|
+
"planning"
|
|
268
|
+
],
|
|
269
|
+
"defaults": {
|
|
270
|
+
"safe_run": true
|
|
271
|
+
}
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"id": "file-compass",
|
|
275
|
+
"name": "File Compass",
|
|
276
|
+
"description": "Deterministic file-system navigation and inspection for large repos.",
|
|
277
|
+
"repo": "https://github.com/mcp-tool-shop/file-compass",
|
|
278
|
+
"install": {
|
|
279
|
+
"type": "git",
|
|
280
|
+
"url": "https://github.com/mcp-tool-shop/file-compass.git",
|
|
281
|
+
"default_ref": "main"
|
|
282
|
+
},
|
|
283
|
+
"tags": [
|
|
284
|
+
"filesystem",
|
|
285
|
+
"search",
|
|
286
|
+
"navigation"
|
|
287
|
+
],
|
|
288
|
+
"defaults": {
|
|
289
|
+
"safe_run": true
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"id": "headless-wheel-builder",
|
|
294
|
+
"name": "Headless Wheel Builder",
|
|
295
|
+
"description": "CLI-first build/validate/release tooling for Python wheels and sdists.",
|
|
296
|
+
"repo": "https://github.com/mcp-tool-shop/headless-wheel-builder",
|
|
297
|
+
"install": {
|
|
298
|
+
"type": "git",
|
|
299
|
+
"url": "https://github.com/mcp-tool-shop/headless-wheel-builder.git",
|
|
300
|
+
"default_ref": "main"
|
|
301
|
+
},
|
|
302
|
+
"tags": [
|
|
303
|
+
"python",
|
|
304
|
+
"packaging",
|
|
305
|
+
"wheels",
|
|
306
|
+
"release"
|
|
307
|
+
],
|
|
308
|
+
"defaults": {
|
|
309
|
+
"safe_run": true
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"id": "integradio",
|
|
314
|
+
"name": "Integradio",
|
|
315
|
+
"description": "Structure layer for building maintainable Gradio apps (UI + execution separation).",
|
|
316
|
+
"repo": "https://github.com/mcp-tool-shop/integradio",
|
|
317
|
+
"install": {
|
|
318
|
+
"type": "git",
|
|
319
|
+
"url": "https://github.com/mcp-tool-shop/integradio.git",
|
|
320
|
+
"default_ref": "main"
|
|
321
|
+
},
|
|
322
|
+
"tags": [
|
|
323
|
+
"gradio",
|
|
324
|
+
"ui",
|
|
325
|
+
"framework"
|
|
326
|
+
],
|
|
327
|
+
"defaults": {
|
|
328
|
+
"safe_run": true
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"id": "mcp-examples",
|
|
333
|
+
"name": "MCP Examples",
|
|
334
|
+
"description": "Example workspaces and templates for MCP tools",
|
|
335
|
+
"repo": "https://github.com/mcp-tool-shop/mcp-examples",
|
|
336
|
+
"install": {
|
|
337
|
+
"type": "git",
|
|
338
|
+
"url": "https://github.com/mcp-tool-shop/mcp-examples.git",
|
|
339
|
+
"default_ref": "main"
|
|
340
|
+
},
|
|
341
|
+
"tags": [
|
|
342
|
+
"examples",
|
|
343
|
+
"templates",
|
|
344
|
+
"mcp"
|
|
345
|
+
],
|
|
346
|
+
"defaults": {
|
|
347
|
+
"safe_run": true
|
|
348
|
+
}
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"id": "mcp-stress-test",
|
|
352
|
+
"name": "MCP Stress Test",
|
|
353
|
+
"description": "Load and stress testing utilities for MCP servers and tool ecosystems.",
|
|
354
|
+
"repo": "https://github.com/mcp-tool-shop/mcp-stress-test",
|
|
355
|
+
"install": {
|
|
356
|
+
"type": "git",
|
|
357
|
+
"url": "https://github.com/mcp-tool-shop/mcp-stress-test.git",
|
|
358
|
+
"default_ref": "main"
|
|
359
|
+
},
|
|
360
|
+
"tags": [
|
|
361
|
+
"performance",
|
|
362
|
+
"load-testing",
|
|
363
|
+
"concurrency"
|
|
364
|
+
],
|
|
365
|
+
"defaults": {
|
|
366
|
+
"safe_run": true
|
|
367
|
+
}
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"id": "mcp-tool-shop.github.io",
|
|
371
|
+
"name": "MCP Tool Shop Website",
|
|
372
|
+
"description": "Official website and documentation for MCP Tool Shop",
|
|
373
|
+
"repo": "https://github.com/mcp-tool-shop/mcp-tool-shop.github.io",
|
|
374
|
+
"install": {
|
|
375
|
+
"type": "git",
|
|
376
|
+
"url": "https://github.com/mcp-tool-shop/mcp-tool-shop.github.io.git",
|
|
377
|
+
"default_ref": "master"
|
|
378
|
+
},
|
|
379
|
+
"tags": [
|
|
380
|
+
"website",
|
|
381
|
+
"documentation",
|
|
382
|
+
"organization"
|
|
383
|
+
],
|
|
384
|
+
"defaults": {
|
|
385
|
+
"safe_run": true
|
|
386
|
+
}
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"id": "mcpt",
|
|
390
|
+
"name": "MCPT",
|
|
391
|
+
"description": "MCP Tool Shop command-line interface and utilities",
|
|
392
|
+
"repo": "https://github.com/mcp-tool-shop/mcpt",
|
|
393
|
+
"install": {
|
|
394
|
+
"type": "git",
|
|
395
|
+
"url": "https://github.com/mcp-tool-shop/mcpt.git",
|
|
396
|
+
"default_ref": "main"
|
|
397
|
+
},
|
|
398
|
+
"tags": [
|
|
399
|
+
"cli",
|
|
400
|
+
"mcp",
|
|
401
|
+
"tools"
|
|
402
|
+
],
|
|
403
|
+
"defaults": {
|
|
404
|
+
"safe_run": true
|
|
405
|
+
}
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"id": "nexus-router",
|
|
409
|
+
"name": "Nexus Router",
|
|
410
|
+
"description": "Intelligent routing and orchestration for distributed MCP tools",
|
|
411
|
+
"repo": "https://github.com/mcp-tool-shop/nexus-router",
|
|
412
|
+
"install": {
|
|
413
|
+
"type": "git",
|
|
414
|
+
"url": "https://github.com/mcp-tool-shop/nexus-router.git",
|
|
415
|
+
"default_ref": "main"
|
|
416
|
+
},
|
|
417
|
+
"tags": [
|
|
418
|
+
"routing",
|
|
419
|
+
"orchestration",
|
|
420
|
+
"distributed"
|
|
421
|
+
],
|
|
422
|
+
"defaults": {
|
|
423
|
+
"safe_run": true
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"id": "pathway",
|
|
428
|
+
"name": "Pathway",
|
|
429
|
+
"description": "Python journey engine for workflow progression tracking",
|
|
430
|
+
"repo": "https://github.com/mcp-tool-shop/pathway",
|
|
431
|
+
"install": {
|
|
432
|
+
"type": "git",
|
|
433
|
+
"url": "https://github.com/mcp-tool-shop/pathway.git",
|
|
434
|
+
"default_ref": "main"
|
|
435
|
+
},
|
|
436
|
+
"tags": [
|
|
437
|
+
"workflow",
|
|
438
|
+
"journey",
|
|
439
|
+
"python"
|
|
440
|
+
],
|
|
441
|
+
"defaults": {
|
|
442
|
+
"safe_run": true
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"id": "payroll-engine",
|
|
447
|
+
"name": "Payroll Engine",
|
|
448
|
+
"description": "Comprehensive payroll processing and SaaS platform",
|
|
449
|
+
"repo": "https://github.com/mcp-tool-shop/payroll-engine",
|
|
450
|
+
"install": {
|
|
451
|
+
"type": "git",
|
|
452
|
+
"url": "https://github.com/mcp-tool-shop/payroll-engine.git",
|
|
453
|
+
"default_ref": "main"
|
|
454
|
+
},
|
|
455
|
+
"tags": [
|
|
456
|
+
"payroll",
|
|
457
|
+
"saas",
|
|
458
|
+
"hr"
|
|
459
|
+
],
|
|
460
|
+
"defaults": {
|
|
461
|
+
"safe_run": true
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"id": "prov-engine-js",
|
|
466
|
+
"name": "Prov Engine JS",
|
|
467
|
+
"description": "JavaScript/TypeScript provenance and traceability engine",
|
|
468
|
+
"repo": "https://github.com/mcp-tool-shop/prov-engine-js",
|
|
469
|
+
"install": {
|
|
470
|
+
"type": "git",
|
|
471
|
+
"url": "https://github.com/mcp-tool-shop/prov-engine-js.git",
|
|
472
|
+
"default_ref": "main"
|
|
473
|
+
},
|
|
474
|
+
"tags": [
|
|
475
|
+
"provenance",
|
|
476
|
+
"traceability",
|
|
477
|
+
"typescript"
|
|
478
|
+
],
|
|
479
|
+
"defaults": {
|
|
480
|
+
"safe_run": true
|
|
481
|
+
}
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"id": "prov-spec",
|
|
485
|
+
"name": "Prov Spec",
|
|
486
|
+
"description": "Specification for provenance tracking across distributed systems",
|
|
487
|
+
"repo": "https://github.com/mcp-tool-shop/prov-spec",
|
|
488
|
+
"install": {
|
|
489
|
+
"type": "git",
|
|
490
|
+
"url": "https://github.com/mcp-tool-shop/prov-spec.git",
|
|
491
|
+
"default_ref": "main"
|
|
492
|
+
},
|
|
493
|
+
"tags": [
|
|
494
|
+
"provenance",
|
|
495
|
+
"specification",
|
|
496
|
+
"distributed"
|
|
497
|
+
],
|
|
498
|
+
"defaults": {
|
|
499
|
+
"safe_run": true
|
|
500
|
+
}
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"id": "synthesis",
|
|
504
|
+
"name": "Synthesis",
|
|
505
|
+
"description": "Composable tool framework for building complex AI workflows",
|
|
506
|
+
"repo": "https://github.com/mcp-tool-shop/synthesis",
|
|
507
|
+
"install": {
|
|
508
|
+
"type": "git",
|
|
509
|
+
"url": "https://github.com/mcp-tool-shop/synthesis.git",
|
|
510
|
+
"default_ref": "main"
|
|
511
|
+
},
|
|
512
|
+
"tags": [
|
|
513
|
+
"workflow",
|
|
514
|
+
"composition",
|
|
515
|
+
"tools"
|
|
516
|
+
],
|
|
517
|
+
"defaults": {
|
|
518
|
+
"safe_run": true
|
|
519
|
+
}
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"id": "tool-compass",
|
|
523
|
+
"name": "Tool Compass",
|
|
524
|
+
"description": "Discovery, classification, and ranking utilities for MCP-compatible tools.",
|
|
525
|
+
"repo": "https://github.com/mcp-tool-shop/tool-compass",
|
|
526
|
+
"install": {
|
|
527
|
+
"type": "git",
|
|
528
|
+
"url": "https://github.com/mcp-tool-shop/tool-compass.git",
|
|
529
|
+
"default_ref": "main"
|
|
530
|
+
},
|
|
531
|
+
"tags": [
|
|
532
|
+
"discovery",
|
|
533
|
+
"ranking",
|
|
534
|
+
"catalog"
|
|
535
|
+
],
|
|
536
|
+
"defaults": {
|
|
537
|
+
"safe_run": true
|
|
538
|
+
}
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"id": "tool-scan",
|
|
542
|
+
"name": "Tool Scan",
|
|
543
|
+
"description": "Static inspection utilities for MCP tools and repositories.",
|
|
544
|
+
"repo": "https://github.com/mcp-tool-shop/tool-scan",
|
|
545
|
+
"install": {
|
|
546
|
+
"type": "git",
|
|
547
|
+
"url": "https://github.com/mcp-tool-shop/tool-scan.git",
|
|
548
|
+
"default_ref": "main"
|
|
549
|
+
},
|
|
550
|
+
"tags": [
|
|
551
|
+
"static-analysis",
|
|
552
|
+
"security",
|
|
553
|
+
"inspection"
|
|
554
|
+
],
|
|
555
|
+
"defaults": {
|
|
556
|
+
"safe_run": true
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"id": "venvkit",
|
|
561
|
+
"name": "Venvkit",
|
|
562
|
+
"description": "Python virtual environment diagnostics and utilities",
|
|
563
|
+
"repo": "https://github.com/mcp-tool-shop/venvkit",
|
|
564
|
+
"install": {
|
|
565
|
+
"type": "git",
|
|
566
|
+
"url": "https://github.com/mcp-tool-shop/venvkit.git",
|
|
567
|
+
"default_ref": "main"
|
|
568
|
+
},
|
|
569
|
+
"tags": [
|
|
570
|
+
"python",
|
|
571
|
+
"venv",
|
|
572
|
+
"diagnostics"
|
|
573
|
+
],
|
|
574
|
+
"defaults": {
|
|
575
|
+
"safe_run": true
|
|
576
|
+
}
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"id": "voice-soundboard",
|
|
580
|
+
"name": "Voice Soundboard",
|
|
581
|
+
"description": "Voice tooling repository (project-specific).",
|
|
582
|
+
"repo": "https://github.com/mcp-tool-shop/voice-soundboard",
|
|
583
|
+
"install": {
|
|
584
|
+
"type": "git",
|
|
585
|
+
"url": "https://github.com/mcp-tool-shop/voice-soundboard.git",
|
|
586
|
+
"default_ref": "main"
|
|
587
|
+
},
|
|
588
|
+
"tags": [
|
|
589
|
+
"tts",
|
|
590
|
+
"audio",
|
|
591
|
+
"voice"
|
|
592
|
+
],
|
|
593
|
+
"defaults": {
|
|
594
|
+
"safe_run": true
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
]
|
|
598
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"title": "MCP Tool Registry",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"required": ["schema_version", "tools"],
|
|
6
|
+
"properties": {
|
|
7
|
+
"schema_version": {
|
|
8
|
+
"type": "string"
|
|
9
|
+
},
|
|
10
|
+
"generated_at": {
|
|
11
|
+
"type": "string"
|
|
12
|
+
},
|
|
13
|
+
"tools": {
|
|
14
|
+
"type": "array",
|
|
15
|
+
"items": {
|
|
16
|
+
"type": "object",
|
|
17
|
+
"required": ["id", "name", "description", "repo", "install", "tags"],
|
|
18
|
+
"properties": {
|
|
19
|
+
"id": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"pattern": "^[a-z0-9]+(-[a-z0-9]+)*$"
|
|
22
|
+
},
|
|
23
|
+
"name": {
|
|
24
|
+
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"description": {
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
"repo": {
|
|
30
|
+
"type": "string",
|
|
31
|
+
"format": "uri"
|
|
32
|
+
},
|
|
33
|
+
"install": {
|
|
34
|
+
"type": "object",
|
|
35
|
+
"required": ["type", "url", "default_ref"],
|
|
36
|
+
"properties": {
|
|
37
|
+
"type": {
|
|
38
|
+
"type": "string",
|
|
39
|
+
"enum": ["git"]
|
|
40
|
+
},
|
|
41
|
+
"url": {
|
|
42
|
+
"type": "string",
|
|
43
|
+
"format": "uri"
|
|
44
|
+
},
|
|
45
|
+
"default_ref": {
|
|
46
|
+
"type": "string"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"additionalProperties": false
|
|
50
|
+
},
|
|
51
|
+
"tags": {
|
|
52
|
+
"type": "array",
|
|
53
|
+
"items": {
|
|
54
|
+
"type": "string"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"defaults": {
|
|
58
|
+
"type": "object",
|
|
59
|
+
"properties": {
|
|
60
|
+
"safe_run": {
|
|
61
|
+
"type": "boolean"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"additionalProperties": true
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"additionalProperties": false
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"additionalProperties": false
|
|
72
|
+
}
|