Skip to main content
Glama
robfischer1

Calliope MCP Server

by robfischer1

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
PORTNoPort for HTTP transport. Overrides CALLIOPE_MCP_PORT if set.
URANIA_URLNoURL of the Urania capture service.http://urania:8202
CALLIOPE_MCP_PORTNoPort for HTTP transport if PORT not set.8204
CALLIOPE_MCP_BACKENDNoBackend type. Set to 'fixture' for standalone server without Urania.
CALLIOPE_URANIA_WIREDNoFlag to enable live Urania transport.

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
}

Tools

Functions exposed to the LLM to take actions

NameDescription
read_bodyA

Resolve a plan node's body — its prose sections, sorted by order key. Returns { sections: [{ id, text, orderKey }] }; a node with no body returns an empty list.

write_bodyA

Replace a plan node's whole body with the given sections, in display order. The substrate mints fresh order keys and copy-on-writes changed prose. Returns { ok, count }.

append_sectionA

Append one new section to the end of a plan node's body. Returns the appended { section } and the new body { count }.

edit_sectionA

Replace the prose of a single section (copy-on-write), keeping its position and every other section untouched. Returns the edited { section }.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.2/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: appending a new section, editing a single section's prose, reading all sections, and replacing the entire body. No overlap or confusion.

Naming Consistency5/5

All tool names follow the consistent verb_noun pattern: append_section, edit_section, read_body, write_body. No mixing of styles.

Tool Count5/5

With 4 tools, the server is well-scoped for managing sections of a plan node. Each tool serves a fundamental operation without unnecessary bloat.

Completeness4/5

The set covers read, create (append), update (edit), and full replacement (write_body), but lacks a dedicated delete_section tool. However, deletion can be achieved via write_body by omitting a section, so the gap is minor.