Skip to main content
Glama
alessmar

cooklang-mcp-server

by alessmar

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
COOKLANG_SERVER_URLNoThe URL of the CookCLI server. Defaults to http://localhost:9080.http://localhost:9080

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}
logging
{}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
extensions
{
  "io.modelcontextprotocol/ui": {}
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_recipesA

Return the full recipe tree: folders and .cook / .menu files.

Every node has children, name, path, recipe. recipe is null for a directory and non-null for a file.

read_recipeA

Read one recipe parsed into ingredients, cookware, timers and steps.

path: recipe path relative to the recipe directory, e.g. "Dolci/bunet-piemontese" (the .cook extension is optional). scale: multiply quantities by this factor during parsing.

read_recipe_sourceB

Return the raw Cooklang source text of a recipe, frontmatter included.

write_recipeA

Create or overwrite a recipe. source is raw Cooklang text.

The parent folder must already exist. A missing .cook extension is added automatically. Writes are atomic (temp file + rename).

delete_recipeA

Permanently delete a recipe file. There is no undo and no trash.

search_recipesA

Full-text search over recipe names and content. Returns name + path.

collection_statsA

Return collection counts (recipe_count, menu_count, pantry_* counts).

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4/5.0

Scored across 7 tools

Disambiguation5/5

Each tool targets a clearly distinct operation: listing the tree, reading parsed recipes, reading raw source, writing, deleting, searching, and getting stats. The only potentially similar pair, read_recipe and read_recipe_source, is disambiguated by the parsed-versus-raw distinction.

Naming Consistency4/5

Most tools follow a consistent verb_noun snake_case pattern: list_recipes, read_recipe, read_recipe_source, write_recipe, delete_recipe, search_recipes. collection_stats is the one outlier since it lacks a verb, but it remains readable and stylistically compatible.

Tool Count5/5

Seven tools is well-scoped for a recipe management server. Each tool covers a meaningful part of the workflow without redundancy or unnecessary bloat.

Completeness4/5

The core recipe lifecycle is covered: discover, read, write, delete, and search. Minor gaps exist such as no folder creation tool and no dedicated menu management, but these do not block the primary recipe workflow.

Maintenance

ActivityMaintained
ResponsivenessNo issues