Skip to main content
Glama

Tesla Version

tesla_version

Confirm the running server build and diagnose deployment issues by returning version, Python/fastmcp versions, timezone, tool count, and TeslaMate database reachability.

Instructions

Server version & diagnostic info — call first to confirm the build.

Returns the running server version, Python/fastmcp versions, timezone, tool count, and whether the TeslaMate database is reachable. Useful for support, debugging, and confirming you hit the expected deployment.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden and discloses what the tool returns, including server version, Python/fastmcp versions, timezone, tool count, and database reachability. It implies a read-only diagnostic operation, though it does not explicitly state read-only safety or auth requirements.

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?

Three sentences, front-loaded with the primary purpose and followed by concrete return values and use cases. Every sentence earns its place with no redundancy.

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 zero-parameter diagnostic tool with an output schema, the description provides enough context to invoke it correctly. It explains when to call it and what to expect, without over-explaining return values already covered by the output schema.

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 tool takes zero parameters, so there are no parameter semantics to describe. The baseline score for a parameterless tool is 4, and the description correctly adds no misleading parameter information.

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 states a specific verb and resource: it returns server version and diagnostic info. It clearly distinguishes itself from all sibling Tesla data-query tools by being a build/deployment check.

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?

It explicitly says 'call first to confirm the build' and lists support, debugging, and deployment verification as use cases. It gives clear context but does not discuss when not to use it or name alternatives.

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