Ravelry MCP Server

MCP server for the Ravelry knitting/crochet API

Local serverstdioGo

What is the Ravelry MCP server?

MCP server for the Ravelry knitting/crochet API. The ravelry mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.

What it actually does

An MCP server that gives Claude full access to the Ravelry knitting and crochet API — pattern search, yarn database, and your personal notebook (queue, stash, projects, favorites, library).

Its toolset

Everything the assistant can do here goes through one of these:

  • ravelry_whoami — Verify credentials and return the authenticated user's username, avatar, and profile URL
  • search_patterns — query, craft, availability, yarn_weight, difficulty_min, difficulty_max, fit, pc, colors, page, page_size, sort
  • get_pattern — id (required)
  • get_patterns — ids[] (required, max 100)
  • search_yarns — query, weight, fiber_type, company_name, rating_min, discontinued, page, page_size, sort
  • get_yarn — id (required)
  • get_yarns — ids[] (required, max 100)
  • get_current_user — —
  • get_queue — query, page, page_size
  • add_to_queue — pattern_id, stash_id?, sort_position?
  • remove_from_queue — queue_entry_id
  • get_stash — query, weight, color_family, stash_status, page, page_size

Configuration

You will need 2 environment variables: RAVELRY_ACCESS_KEY, RAVELRY_PERSONAL_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

The server ships on npm as npm, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

When to reach for it

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Ravelry's toolset — ravelry_whoami, search_patterns, get_pattern and 11 more — is a fair guide to whether it matches your workflow. It is maintained by buzzsurfr; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Ravelry's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Ravelry.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the ravelry mcp server does with a few real requests.

Available tools

ToolWhat it does
ravelry_whoamiVerify credentials and return the authenticated user's username, avatar, and profile URL
search_patternsquery, craft, availability, yarn_weight, difficulty_min, difficulty_max, fit, pc, colors, page, page_size, sort
get_patternid (required)
get_patternsids[] (required, max 100)
search_yarnsquery, weight, fiber_type, company_name, rating_min, discontinued, page, page_size, sort
get_yarnid (required)
get_yarnsids[] (required, max 100)
get_current_user
get_queuequery, page, page_size
add_to_queuepattern_id, stash_id?, sort_position?
remove_from_queuequeue_entry_id
get_stashquery, weight, color_family, stash_status, page, page_size
get_projectsstatus, craft, page, page_size
update_projectid (required), status, completed, started, progress, notes, name

How to install the Ravelry MCP server

{
  "mcpServers": {
    "ravelry": {
      "command": "npx",
      "args": ["-y", "ravelry-mcp"],
      "env": {
        "RAVELRY_ACCESS_KEY": "your_access_key_here",
        "RAVELRY_PERSONAL_KEY": "your_personal_key_here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
RAVELRY_ACCESS_KEYCredential the server authenticates with.Yes
RAVELRY_PERSONAL_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Ravelry to ravelry whoami.
  • Use Ravelry to search patterns.
  • Use Ravelry to get pattern.

Frequently asked questions

It connects Ravelry to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (ravelry_whoami, search_patterns, get_pattern, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Ravelry directly.