📦
Mcpservertools
Tool manifests for MCP Server tool registry
0 installs
1 stars
Trust: 51 — Fair
Devtools
Installation
npx mcpservertoolsAsk AI about Mcpservertools
Powered by Claude · Grounded in docs
I know everything about Mcpservertools. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
McpServerTools
Tool manifests for the MCP Server tool registry. This repository acts as the primary tool bucket — a collection of tool definitions that can be browsed, installed, and synced via the MCP Server's tool registry API.
Structure
Each tool is defined as a JSON manifest file in the root directory:
tool-name.json
Manifest Format
{
"name": "tool-name",
"description": "Human-readable description of what this tool does",
"tags": ["keyword1", "keyword2"],
"parameterSchema": "{ ... optional JSON schema ... }",
"commandTemplate": "command --arg {{param1}}"
}
Usage
Register this bucket with MCP Server
curl -X POST http://localhost:7147/mcpserver/tools/buckets \
-H "Content-Type: application/json" \
-d '{
"name": "official",
"owner": "sharpninja",
"repo": "McpServerTools",
"branch": "main",
"manifestPath": "/"
}'
Browse available tools
curl http://localhost:7147/mcpserver/tools/buckets/official/browse
Install a tool from this bucket
curl -X POST "http://localhost:7147/mcpserver/tools/buckets/official/install?toolName=screenshot"
Sync to pick up updates
curl -X POST http://localhost:7147/mcpserver/tools/buckets/official/sync
Contributing
Add a new .json manifest file following the format above and submit a pull request.
