Skip to main content
Glama
bjorges

eventor-mcp

by bjorges

import_startlist

Publish a confirmed IOF XML 3.0 start list to Eventor. Use this write action only after the user explicitly approves the exact start list.

Instructions

Upload a start list to Eventor.

THIS WRITES DATA: it changes what is published in Eventor. Only call this after the user has explicitly confirmed they want to publish this exact start list -- treat it like any other irreversible "publish" action, not a routine read.

Args: iof_xml: A complete IOF XML 3.0 StartList document as a string.

Requires EVENTOR_USERNAME and EVENTOR_PASSWORD.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
iof_xmlYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full behavioral burden and does so well: it discloses that this WRITES data, alters what is published, is irreversible, and requires EVENTOR_USERNAME/EVENTOR_PASSWORD credentials. This is exactly the safety context missing from the structured fields.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loads the action, then the critical safety warning, then the argument and auth requirement. Each sentence earns its place; the emphasis on irreversibility is warranted for a destructive publish.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-param write tool with an output schema (so return values need not be explained), the description covers purpose, danger profile, format expectations, and auth prerequisites. Nothing an agent needs to call it correctly is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0% (the property is only titled 'Iof Xml' with no description), so the description must compensate. It specifies that iof_xml is a complete IOF XML 3.0 StartList document passed as a string, adding format and version detail the schema lacks, though not edge cases like validation failure.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb+resource ('Upload a start list to Eventor'), clearly distinguishable from the sibling import_resultlist and the read-oriented get_* tools. It does not explicitly name an alternative, but the resource itself differentiates it.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to call it: only after the user has confirmed they want to publish this exact start list. It frames the action as irreversible and warns it is not a routine read, which is precisely the routing guidance an agent needs.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.