BeefChicken MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| HOST | No | The host interface to bind the server to. Defaults to localhost. | |
| API_KEY | Yes | Bearer token for the target API. Forwarded as-is via the Authorization header when running in stdio mode. | |
| API_BASE_URL | Yes | The base URL of the target API to proxy. | |
| ALLOWED_HOSTS | No | Comma-separated list of allowed hosts. |
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
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| tasks_getC | List tasks |
| tasks_postB | Create a task |
| tasks_id_getC | Get a task |
| tasks_id_deleteC | Delete a task |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool maps to a distinct operation: list, create, get by ID, and delete by ID. There is no meaningful overlap, and the names make the resource and action clear.
All tool names follow the same resource_verb pattern, with tasks_id_get and tasks_id_delete clearly indicating the ID path parameter. The consistent snake_case and operation-based suffixes make the set predictable.
Four tools is an appropriate, focused count for a simple task management server. Each tool covers a core operation without unnecessary bloat.
The server covers list, create, read, and delete operations for tasks, but notably lacks an update operation. This is a minor gap since delete-and-recreate is a possible workaround, but update is a standard task lifecycle need.