MCP for Codex, Claude, and AI agents
Connect, discover, act with a human.
Add Limowo as a remote MCP server. Public discovery needs no credentials; delegated commerce uses scoped bearer tokens and keeps publication and marketplace side effects under human control.
V1 workflow
Browse marketplaceSearch marketplace
Public agents can discover active listings and categories without credentials through typed read commands.
marketplace.articles.searchPrepare listing draft
Authorized agents can prepare draft data for the represented owner. Owner, author, and sender identities are derived from the grant.
listing.draft.createReview with owner
Draft creation returns safe next actions so the human owner can review, edit, approve, and publish from Limowo.
listing.draft.validateRoute safely
Commands return route hints only for public listing/search pages or authenticated owner review pages.
nextActions[]Live
/agentsHuman-readable portal for safe web agent workflows.
Live
/llms.txtPlain-text discovery summary for assistants and indexers.
Live
/.well-known/limowo-agent.jsonCompact machine identity and rollout metadata.
Live
/mcp-server.jsonOfficial remote-server metadata prepared for MCP Registry publication.
Live
/mcpProvider-neutral Streamable HTTP endpoint for MCP clients.
Live
/api/agent/v1/openapi.jsonVersioned contract generated from the active command registry.
Connect and use
Add to Codex
codex mcp add limowo --url https://limowo.ch/mcp
Add to Claude Code
claude mcp add --transport http limowo https://limowo.ch/mcp
Add to another MCP client
{
"name": "limowo",
"transport": "streamable-http",
"url": "https://limowo.ch/mcp"
}Discover commands
GET /api/agent/v1/commands
Prepare a public search
POST /api/agent/v1/commands/prepare
{
"command": "marketplace.articles.search",
"version": 1,
"input": { "query": "bike", "take": 5 }
}Execute unchanged input
POST /api/agent/v1/commands/prepared/{preparedCommandId}/executeRoute owner to review
nextActions: [
{
"id": "review_draft",
"requiredActor": "HUMAN_OWNER",
"risk": "DRAFT_WRITE"
}
]Authentication status
Public search and listing discovery work without authentication. Delegated listing, conversation, and offer tools require a Limowo bearer token with matching scopes. Automatic OAuth client onboarding is not live yet.
Safety boundaries
01
No arbitrary shell, SQL, GraphQL documents, filesystem operations, or unrestricted HTTP.
02
No autonomous article publication, offers, orders, payments, or account administration in V1.
03
Write commands require delegated scopes and idempotency; publication stays with the human owner.

