CLI tool for submitting tools to the Agent Tools Marketplace.
npx submit-agent-toolJust run the command and answer the prompts:
npx submit-agent-toolnpx submit-agent-tool \
--name "ClawVault" \
--url "github.com/Versatly/clawvault" \
--type cli \
--description "Memory system for AI agents"| Option | Alias | Description |
|---|---|---|
--name |
-n |
Tool name |
--url |
-u |
GitHub URL (various formats accepted) |
--type |
-t |
Tool type: cli, mcp, api, library, framework, plugin |
--description |
-d |
Tool description |
--author |
-a |
Author name (optional) |
--api |
Custom API endpoint | |
--help |
-h |
Show help |
--version |
-V |
Show version |
All of these work:
https://github.com/owner/repo
github.com/owner/repo
owner/repo
# Full command
npx submit-agent-tool -n "MyTool" -u "owner/repo" -t mcp -d "Does cool stuff"
# With author
npx submit-agent-tool \
--name "SuperAgent" \
--url "github.com/dev/super-agent" \
--type framework \
--description "Agent framework for building AI tools" \
--author "YourName"- cli - Command-line tools
- mcp - Model Context Protocol servers
- api - REST/GraphQL APIs
- library - Code libraries/SDKs
- framework - Development frameworks
- plugin - Extensions/plugins for other tools
npm install -g submit-agent-tool
submit-agent-tool --helpMIT