Skip to main content
Glama

Server Details

AI-callable calculators and engineering models with real formulas. No hallucinated math.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
metamodel-app/mcp-server
GitHub Stars
0
Server Listing
MetaModel MCP Server

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.2/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a distinct, non-overlapping purpose: listing projects, fetching schema, and running computations. The workflow is clear and sequential.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with the same prefix 'metamodel_', making them easy to distinguish.

Tool Count5/5

With only 3 tools for a focused modeling service, each earns its place. The count is ideal for discoverability and straightforward usage.

Completeness5/5

The tool set covers the full lifecycle for the server's purpose: discover projects, inspect schema, and run computations. No obvious gaps for a read-only computational service.

Available Tools

3 tools
metamodel_computeA
Read-only
Inspect

Run a computation on a MetaModel project. Send input values and get computed outputs from all models. Inputs are auto-routed to the correct model by property name. Models marked "presentation": true in results are display scaffolding, not engineering outputs. Use metamodel_get_schema first to discover available inputs and outputs.

ParametersJSON Schema
NameRequiredDescriptionDefault
modelNoTarget a specific model by name. When omitted, returns outputs from ALL models (recommended).
tokenYesThe publish token of the project
inputsNoInput values as key-value pairs (e.g., {"width": 12}). Auto-routed to the correct model. Omitted inputs use defaults.
Behavior4/5

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

Annotations already indicate readOnlyHint=true. The description adds context about auto-routing of inputs and that presentation models are display scaffolding, which are behavioral nuances beyond annotations. No contradictions.

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?

Four sentences, front-loaded with the main purpose, no filler. Every sentence adds essential information. Highly efficient.

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

Completeness4/5

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

Given no output schema, the description adequately explains that outputs are computed results from all models and notes presentation scaffolding. Could be more explicit about output format, but overall sufficient for the tool's complexity.

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 covers 100% of parameters with descriptions. The description adds value by explaining 'Inputs are auto-routed to the correct model by property name' and reinforcing that omitted inputs use defaults. This supplements the schema.

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 description starts with 'Run a computation on a MetaModel project,' clearly stating the verb and resource. It adds specifics about auto-routing inputs and distinguishing presentation models from engineering outputs, making the purpose distinct from sibling tools (get_schema, list_projects).

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?

Explicitly advises using metamodel_get_schema first to discover inputs/outputs, providing a clear prerequisite. However, it lacks explicit 'when not to use' guidance, but given the sibling set, the usage context is clear.

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

metamodel_get_schemaA
Read-only
Inspect

Get the input/output schema for a published MetaModel project. Returns model names, input parameters (with types, defaults, validation), and output fields. Models marked "presentation": true are display scaffolding (3D scenes etc.) — skip them for engineering analysis. Use a token from metamodel_list_projects.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenYesThe publish token of the project (from metamodel_list_projects)
Behavior4/5

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

Annotations declare readOnlyHint=true, destructiveHint=false, aligning with description's 'Get' operation. Description adds behavioral nuance about filtering presentation models, enhancing transparency beyond annotations.

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?

Two concise sentences with no wasted words, front-loaded with purpose and key directives (skip presentation models, use token from list).

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-parameter tool with detailed annotations and no output schema, the description fully covers purpose, behavior, usage nuance, and parameter provenance.

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 coverage is 100% with the token parameter already described. The tool description repeats the source of the token (metamodel_list_projects) but does not add new semantic information beyond the schema.

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?

Description clearly states the tool retrieves input/output schema for a published MetaModel project, listing specific return contents and distinguishing from sibling tools via reference to metamodel_list_projects for token acquisition.

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?

Provides explicit guidance to skip presentation models for engineering analysis and instructs to use a token from metamodel_list_projects. Lacks explicit when-not-to-use or comparison with metamodel_compute, but direction is sufficient.

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

metamodel_list_projectsA
Read-only
Inspect

Browse available MetaModel calculators and engineering models. Returns project names, descriptions, tokens, and model names for each published project.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

Annotations already indicate read-only and non-destructive behavior. The description adds useful context about the return contents (project names, descriptions, etc.) but does not disclose any additional behavioral traits (e.g., no mention of authentication, rate limits, or side effects). With annotations covering safety, the added value is moderate.

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 two sentences with no wasted words. It front-loads the purpose and follows with specifics, achieving maximum conciseness for the information provided.

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

Completeness4/5

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

For a simple list tool with no parameters and annotations covering safety, the description adequately explains what is returned. It could mention pagination or ordering, but overall it is complete enough for an agent to use correctly.

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?

The input schema has zero parameters with 100% coverage, so the description does not need to add parameter information. Baseline for no parameters is 4, and the description does not detract from this.

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 description clearly states the tool lists available MetaModel calculators and engineering models, specifying the returned data (names, descriptions, tokens, model names). It uses a specific verb 'browse' and resource, distinguishing it from sibling tools that compute or get schemas.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus siblings like metamodel_compute or metamodel_get_schema. There is no explicit context for its place in a workflow.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Enables AI agents to perform unit-aware engineering calculations with automatic unit conversion, dependency resolution, and access to 500+ units across 75+ categories through the CalcsLive calculation engine.
    3
    9
    MIT
  • A
    license
    -
    quality
    F
    maintenance
    Provides AI agents with physics-based corrosion engineering calculations, from rapid handbook lookups to mechanistic electrochemical models with dual-tier pitting assessment for material compatibility screening and corrosion rate prediction.
    1
    MIT
  • A
    license
    -
    quality
    A
    maintenance
    Verified unit conversion and dimensional analysis for AI agents. 190+ units, 31 domain formulas (clinical, physics, aerospace, SRE), physical constants with uncertainty propagation. Refuses invalid conversions structurally: the tool that won't convert mg to mL and knows the difference between torque and energy.
    AGPL 3.0
  • A
    license
    A
    quality
    C
    maintenance
    Enables AI assistants to perform petroleum engineering calculations including PVT analysis, well performance modeling, and reservoir simulation support using industry-standard correlations and field units.
    45
    43
    GPL 3.0

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.