WeedUs for AI agents
Operate your WeedUs account from Claude Code, Codex, or any MCP client: browse catalogs, manage orders, book vendor days and appointments — with the same permissions and organization scoping as the app.
1. Get an API key
Sign in (or create an account) and return here to mint a key. Keys are free for all active accounts and act with your account's role and permissions.
2. Connect an MCP client
Add this to your MCP client config (Claude Code: claude mcp add --transport http weedus https://commerce.weedus.app/api/mcp --header "X-API-Key: …"):
{
"mcpServers": {
"weedus": {
"type": "http",
"url": "https://commerce.weedus.app/api/mcp",
"headers": { "X-API-Key": "wus_live_YOUR_KEY" }
}
}
}The server exposes tools for your role only. Tools marked WRITE perform real business actions (orders, bookings, catalog changes) — your agent should confirm with you before calling them.
3. Or call the REST API
The same operations are available as plain REST with the X-API-Key header. The full machine-readable surface lives at /llms.txt — point your agent at it.
curl https://commerce.weedus.app/api/notifications \
-H "X-API-Key: wus_live_YOUR_KEY"Errors: 401 invalid/revoked key · 403 operation not allowed for your key/role · 429 rate limited.