submit-agent-tool
CLI tool for submitting tools to the Agent Tools Marketplace.
Quick Start
npx submit-agent-tool
Usage
Interactive Mode
Just run the command and answer the prompts:
npx submit-agent-tool
Command Line Arguments
npx submit-agent-tool \
--name "ClawVault" \
--url "github.com/Versatly/clawvault" \
--type cli \
--description "Memory system for AI agents"
Options
--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 |
URL Formats
All of these work:
https://github.com/owner/repo
github.com/owner/repo
owner/repo
Examples
npx submit-agent-tool -n "MyTool" -u "owner/repo" -t mcp -d "Does cool stuff"
npx submit-agent-tool \
--name "SuperAgent" \
--url "github.com/dev/super-agent" \
--type framework \
--description "Agent framework for building AI tools" \
--author "YourName"
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
npm install -g submit-agent-tool
submit-agent-tool --help
License
MIT