Skip to main content
Glama
Axiomatic-AI

axiomatic-mcp

Official
by Axiomatic-AI

AxMeep_execute_code

Submit a Meep simulation script for remote execution as a Kubernetes job, returning a task ID to track progress and retrieve results.

Instructions

Submit a Meep script for execution. Meep runs as a remote Kubernetes job (conda + MPI), so this returns a task_id immediately and nothing has been simulated yet — poll get_simulation_status, then call get_results. The script must import meep and contain at least one direct export('name', obj) call; otherwise it is rejected before submission at no cost. Typical runtime is 1-2 minutes (6 hour hard deadline). Requires a key with playground access.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeYesThe meep Python script to run. Must import meep and contain at least one direct export('name', obj) call, or it is rejected before submission at no cost.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
infoNo
errorNo
statusNo
successNoPresent and false only when the submission was rejected.
task_idNoPass to get_simulation_status and get_results.
error_typeNo
status_codeNo
exports_detectedNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.1.20

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations present, the description carries the full burden of behavioral disclosure. It fully discloses that execution is asynchronous on a remote Kubernetes job, returns a task_id with nothing simulated yet, has a typical 1-2 minute runtime with a 6-hour hard deadline, requires playground access, and rejects scripts that do not meet import/export requirements before submission at no cost.

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?

The description is compact yet information-dense: four sentences deliver async behavior, follow-up workflow, validation rules, cost implications, runtime, deadline, and access requirements. Every sentence adds value and the most important fact is front-loaded.

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?

Given one parameter and an output schema that presumably documents the task_id return, the description is complete enough for an agent to invoke this tool correctly. It covers the async contract, follow-up calls, failure modes, timing expectations, and required access, leaving no material gap.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already documents the single 'code' parameter thoroughly, including the import and export requirements. The description reinforces these constraints but does not add meaning beyond the schema; the 'at no cost' detail is behavioral rather than parameter-specific, so the baseline 3 is appropriate.

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

Purpose5/5

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

The opening line uses a specific verb and resource: 'Submit a Meep script for execution.' It also distinguishes itself from sibling execute_code tools by naming the Meep workflow and explicitly differentiating what happens now ('returns a task_id') versus later ('poll get_simulation_status, then call get_results').

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

Usage Guidelines4/5

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

The description gives explicit next-step guidance: poll get_simulation_status, then call get_results. It names the follow-up sibling tools and states the playground-access prerequisite. It does not explicitly say when to prefer this over AxMeep_generate_code, but the execution-vs-generation distinction is strongly implied.

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

Deploy Server

Other Tools