Math & Calculator MCP Server
Server Quality Checklist
Latest release: v1.0.0
- Disambiguation5/5
Each tool has a clearly distinct mathematical purpose with no overlap: calculate handles basic arithmetic, convert_units deals with unit conversions, percentage focuses on percentage calculations, solve_equation solves quadratic equations, statistics computes statistical measures, and trigonometry handles trigonometric functions. The descriptions are specific enough to prevent misselection.
Naming Consistency5/5All tool names follow a consistent verb_noun pattern (e.g., calculate, convert_units, solve_equation) using snake_case throughout. The naming is predictable and readable, with no deviations in style or convention.
Tool Count5/5With 6 tools, the server is well-scoped for a math and calculator domain, covering arithmetic, conversions, percentages, equations, statistics, and trigonometry. Each tool earns its place without being too sparse or bloated, fitting typical expectations for such a utility.
Completeness4/5The tool set covers core mathematical operations comprehensively, including basic calculations, unit conversions, percentages, equation solving, statistics, and trigonometry. Minor gaps exist, such as no tools for calculus (e.g., derivatives/integrals) or geometry (e.g., area/volume calculations), but agents can work around these for most common math tasks.
Average 3.2/5 across 6 of 6 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 0 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. While it lists operations, it doesn't mention error handling (e.g., division by zero, sqrt of negative numbers), precision limits, input constraints, or what the output format looks like. For a tool with multiple operations and no annotation coverage, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that lists all operations without unnecessary words. It's appropriately sized and front-loaded with the core purpose, making it easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (multiple operations with different parameter requirements) and lack of both annotations and output schema, the description is insufficient. It doesn't cover behavioral aspects like error cases, output format, or usage distinctions from siblings, leaving the agent with incomplete context for reliable tool invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds minimal value beyond the schema by listing the operations that map to the 'operation' enum, but doesn't provide additional context about parameter usage (e.g., that 'b' is optional for 'sqrt', or how 'power' interprets 'a' and 'b'). Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Perform basic arithmetic operations' followed by a specific list of operations (add, subtract, multiply, divide, power, sqrt, modulo). It uses a specific verb ('perform') and identifies the resource ('arithmetic operations'), but doesn't explicitly differentiate from sibling tools like 'solve_equation' or 'trigonometry' which might also involve calculations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'solve_equation' for algebraic problems, 'percentage' for percentage calculations, or 'trigonometry' for trigonometric functions, leaving the agent to infer usage context from the operation list alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states what the tool does but doesn't disclose behavioral traits like whether it handles edge cases (e.g., invalid units), precision of conversions, error handling, or rate limits. For a tool with zero annotation coverage, this leaves significant gaps in understanding how it behaves.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise and front-loaded with a single sentence that directly states the tool's purpose and scope. Every word earns its place with no redundant information, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (unit conversion across categories) and 100% schema coverage but no annotations or output schema, the description is minimally adequate. It covers the basic purpose but lacks details on behavior, error handling, and output format, which are important for a conversion tool with multiple parameter types.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all three parameters thoroughly. The description adds minimal value beyond the schema by listing example unit categories, but doesn't provide additional semantics like unit compatibility rules or conversion formulas. Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Convert between different units' with specific categories listed (length, weight, temperature). It distinguishes from siblings like 'calculate' or 'solve_equation' by focusing on unit conversion rather than general computation. However, it doesn't explicitly differentiate from all siblings (e.g., 'percentage' could involve unit-like conversions).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when unit conversion is needed versus using 'calculate' for mathematical operations, 'percentage' for percentage calculations, or other siblings. There are no explicit when/when-not statements or named alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states what the tool does (solving equations) but lacks details on traits like error handling (e.g., for invalid inputs or complex solutions), performance (e.g., speed or limitations), or output format. This leaves gaps for an AI agent to understand operational behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise and front-loaded, consisting of a single, direct sentence: 'Solve quadratic equations (ax² + bx + c = 0)'. It wastes no words and immediately conveys the core functionality, making it efficient and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (solving equations with 3 parameters) and no annotations or output schema, the description is minimally adequate. It covers the purpose but lacks behavioral details and output information. For a mathematical tool, it should ideally mention result types (e.g., real/complex roots) or error cases, but it meets a basic threshold.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with clear parameter meanings (coefficients a, b, c). The description adds no additional semantic information beyond what the schema provides, such as constraints (e.g., a ≠ 0) or examples. With high schema coverage, the baseline score of 3 is appropriate, as the description doesn't compensate but doesn't need to heavily.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Solve quadratic equations (ax² + bx + c = 0)'. It specifies the verb ('solve') and resource ('quadratic equations'), making the function unambiguous. However, it doesn't explicitly differentiate from sibling tools like 'calculate' or 'trigonometry', which might also handle mathematical operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'calculate' or 'statistics', nor does it specify contexts or exclusions (e.g., for non-quadratic equations). Usage is implied by the equation form, but explicit alternatives or prerequisites are missing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool calculates functions in degrees but doesn't mention error handling (e.g., for invalid inputs like tan(90)), performance characteristics, or output format. This leaves significant gaps for a computational tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose without unnecessary words. Every part earns its place by specifying functions and units clearly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (2 parameters, no nested objects) and 100% schema coverage, the description is minimally adequate. However, with no output schema and no annotations, it should ideally explain the return value (e.g., a numeric result) and any behavioral constraints, which it doesn't do.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters ('function' with enum values and 'angle' as a number in degrees). The description adds minimal value by specifying 'in degrees' for the angle, but this is implied in the schema. Baseline 3 is appropriate as the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool calculates trigonometric functions (sin, cos, tan, asin, acos, atan) in degrees, which is a specific verb+resource combination. However, it doesn't explicitly differentiate from sibling tools like 'calculate' or 'solve_equation', which might also handle mathematical operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'calculate' or 'solve_equation'. It mentions the functions and units but doesn't specify contexts, exclusions, or prerequisites for choosing this tool over siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions what the tool does but lacks details on traits like error handling (e.g., for empty arrays or invalid operations), performance (e.g., computational limits), or output format (since no output schema exists). This is a significant gap for a tool with no structured safety or behavioral hints.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the purpose and lists key operations without unnecessary words. Every part earns its place by specifying the action, measures, and input source, making it easy to scan and understand quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (statistical operations with two parameters) and lack of annotations and output schema, the description is incomplete. It does not explain return values, error conditions, or behavioral constraints, which are crucial for an AI agent to use the tool correctly. More context is needed to compensate for missing structured data.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters ('numbers' as an array and 'operation' with enum values). The description adds minimal value beyond the schema by implying the tool uses the numbers for statistical analysis, but it does not provide additional syntax, format details, or examples. Baseline 3 is appropriate when the schema handles most documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('calculate statistical measures') and resources ('from a list of numbers'), listing the exact operations (mean, median, mode, standard deviation, variance). It distinguishes from sibling tools like 'calculate' (generic), 'convert_units', 'percentage', etc., by specifying statistical analysis rather than general calculations or other mathematical functions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'calculate' or other mathematical tools. It does not mention prerequisites (e.g., needing numeric data), exclusions (e.g., non-numeric inputs), or specific contexts where statistical analysis is preferred over other calculations, leaving usage decisions ambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states what calculations are performed but does not describe behavioral traits such as error handling (e.g., division by zero), input validation, output format, or performance characteristics. The description is functional but lacks transparency about how the tool behaves beyond its basic purpose.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose ('Calculate percentages') and then specifies the exact operations without any wasted words. It is appropriately sized for a straightforward mathematical tool and every phrase contributes to understanding its function.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (basic calculations), high schema coverage, and no output schema, the description is adequate but has gaps. It covers the purpose and operations but lacks details on behavioral aspects like error handling or output format, which are important for an agent to use it correctly without annotations. It is minimally viable but could be more complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with clear parameter names and an enum for 'operation' that aligns with the calculation types in the description. The description adds minimal value beyond the schema by listing the operations, but it does not provide additional context like examples, formula details, or parameter relationships. Baseline 3 is appropriate as the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('calculate percentages') and enumerates the exact types of calculations it performs (percentage of a number, percentage increase/decrease, what percentage X is of Y). It distinguishes itself from sibling tools like 'calculate' (general), 'convert_units', 'solve_equation', 'statistics', and 'trigonometry' by focusing exclusively on percentage operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by listing the calculation types, but it does not explicitly state when to use this tool versus alternatives like the general 'calculate' tool or other mathematical siblings. There is no guidance on prerequisites, exclusions, or specific contexts where this tool is preferred over others.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Ankluna72/Math-Calculator-MCP-Server-'
If you have feedback or need assistance with the MCP directory API, please join our Discord server