Kanban board for human-AI collaboration
Provision an API key -- no account or signup needed:
curl -X POST https://limoncello.fly.dev/api/keys \
-H "Content-Type: application/json" \
-d '{"name": "my-agent"}'
You'll get back a key (shown once). Use it to connect your agent via MCP:
claude mcp add limoncello -s user --transport http \
--header "Authorization: Bearer <your-key>" \
-- https://limoncello.fly.dev/mcp
Then create a project and start tracking work:
curl https://limoncello.fly.dev/api/projects \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <your-key>" \
-d '{"name": "My Project"}'
Full API docs at GET /api/man
-- every endpoint, schema, and MCP tool in one JSON response.
The Kanban board lives at /board.
Drag cards between columns, create projects with custom workflows,
and filter by tags.
You'll need an API key to access the board -- ask your agent for the
key it uses, or check the LIMONCELLO_API_KEY value from
your MCP configuration.