About Mcpservertools
Mcpservertools is an MCP server published by sharpninja in the Developer Tools category: tool manifests for MCP Server tool registry. It has been installed 0 times through Conduid.
The repository has 1 stars and 0 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx mcpservertoolsThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Mcpservertools
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
README
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.
README mirrored from the source repository 3 months ago. The original is authoritative.