CLI to submit tools to the Agent Tools Marketplace
npm install submit-agent-toolCLI tool for submitting tools to the Agent Tools Marketplace.
``bash`
npx submit-agent-tool
Just run the command and answer the prompts:
`bash`
npx submit-agent-tool
`bash`
npx 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
`bashFull command
npx submit-agent-tool -n "MyTool" -u "owner/repo" -t mcp -d "Does cool stuff"
Tool Types
- 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
Global Install
`bash
npm install -g submit-agent-tool
submit-agent-tool --help
``MIT