Skip to content
LoopSkill

Documentation · Install guide

Install in seconds.

LoopSkill works two ways: as an MCP server your agent connects to, or as a plain Markdown meta-skill any agent can read. Free skills install with no API key. Pro and Pro+ skills require a key from your library.

Recommended · MCP server

No auth for free skills

Connect your agent in one config block

Cursor, Claude Desktop, Cline, Continue.dev, Zed — every MCP-aware client wires up the same way. Your agent gets recipes_search, recipes_install, and recipes_recall as tools it can call mid-conversation.

Claude Desktop / Cursor / Cline

{
  "mcpServers": {
    "recipes": {
      "url": "https://recipes.wisechef.ai/api/mcp/sse"
    }
  }
}

Unlock Pro & Pro+ skills (optional)

{
  "mcpServers": {
    "recipes": {
      "url": "https://recipes.wisechef.ai/api/mcp/sse",
      "headers": { "x-api-key": "rec_live_…" }
    }
  }
}

Get your key from your library after subscribing. Free skills install whether the header is present or not — the key only gates Pro/Pro+ catalog access.

Alternative · Meta-skill (Markdown file)

For Claude Code, Codex, Hermes, OpenClaw

Any agent that can read files and call HTTP can use LoopSkill. Drop the meta-skill into your skills directory and tell your agent to follow it.

Claude Code

mkdir -p ~/.claude/skills/recipes
curl -sL https://recipes.wisechef.ai/skill -o ~/.claude/skills/recipes/SKILL.md

Hermes / Codex / OpenClaw

mkdir -p ~/.hermes/skills/recipes  # or ~/.codex/skills, ~/.openclaw/skills
curl -sL https://recipes.wisechef.ai/skill -o ~/.hermes/skills/recipes/SKILL.md

Then in any session ask: "read the recipes skill and follow it. List free skills." Your agent will hit the public catalog endpoints — no key needed.

For scripts · Raw HTTP

curl works too

Browse free skills (no auth)

curl -sS "https://recipes.wisechef.ai/api/skills/search?tier=free&page_size=50"

Install a free skill (no auth)

curl -sS "https://recipes.wisechef.ai/api/skills/install?slug=client-reporter"

Install a Pro skill (requires key)

curl -sS -H "x-api-key: rec_live_…" \
  "https://recipes.wisechef.ai/api/skills/install?slug=super-memory"

Verify the install

curl https://recipes.wisechef.ai/api/healthz

Should return {"status":"ok"}. If your agent connected via MCP, ask it: "call recipes_search with query=test and show me the top 3 results."