MCP server for the Ravelry knitting/crochet API
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.
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).
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 URLsearch_patterns — query, craft, availability, yarn_weight, difficulty_min, difficulty_max, fit, pc, colors, page, page_size, sortget_pattern — id (required)get_patterns — ids[] (required, max 100)search_yarns — query, weight, fiber_type, company_name, rating_min, discontinued, page, page_size, sortget_yarn — id (required)get_yarns — ids[] (required, max 100)get_current_user — —get_queue — query, page, page_sizeadd_to_queue — pattern_id, stash_id?, sort_position?remove_from_queue — queue_entry_idget_stash — query, weight, color_family, stash_status, page, page_sizeYou 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.
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.
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.
| Tool | What it does |
|---|---|
| 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 |
| get_projects | status, craft, page, page_size |
| update_project | id (required), status, completed, started, progress, notes, name |
{
"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.
| Variable | Description | Required |
|---|---|---|
| RAVELRY_ACCESS_KEY | Credential the server authenticates with. | Yes |
| RAVELRY_PERSONAL_KEY | Credential the server authenticates with. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.