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.

Search marketplace

Public agents can discover active listings and categories without credentials through typed read commands.

marketplace.articles.search

Prepare listing draft

Authorized agents can prepare draft data for the represented owner. Owner, author, and sender identities are derived from the grant.

listing.draft.create

Review with owner

Draft creation returns safe next actions so the human owner can review, edit, approve, and publish from Limowo.

listing.draft.validate

Route safely

Commands return route hints only for public listing/search pages or authenticated owner review pages.

nextActions[]

Live

/agents

Human-readable portal for safe web agent workflows.

Live

/llms.txt

Plain-text discovery summary for assistants and indexers.

Live

/.well-known/limowo-agent.json

Compact machine identity and rollout metadata.

Live

/mcp-server.json

Official remote-server metadata prepared for MCP Registry publication.

Live

/mcp

Provider-neutral Streamable HTTP endpoint for MCP clients.

Live

/api/agent/v1/openapi.json

Versioned 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}/execute

Route 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

  1. 01

    No arbitrary shell, SQL, GraphQL documents, filesystem operations, or unrestricted HTTP.

  2. 02

    No autonomous article publication, offers, orders, payments, or account administration in V1.

  3. 03

    Write commands require delegated scopes and idempotency; publication stays with the human owner.

Limowo MCP for Codex, Claude, and AI Agents