MewCP LogoAStheTech
MCPs
Use Cases

Use cases by category

Productivity & InboxInbox, calendar, and daily flowEngineering & DevOpsShip, debug, and run on-callSales & CRMPipeline, outreach, and dealsMarketing & GrowthCampaigns, SEO, and growthSupport & SuccessTriage tickets, keep customers happyFinance & OpsClose, reconcile, and expensesCreative & ContentGenerate assets and contentPeople & HiringHiring, onboarding, and HRResearch & DataSynthesize data and insights
See all use cases
BlogsPricingDocsLogin
MewCP Logo

Infrastructure You Can Trust for Agentic Products

X

Categories

  • Productivity & Docs
  • Developer Tools
  • CRM & Sales
  • Finance & Commerce
  • Data & Analytics
  • Marketing & SEO
  • Search & Web
  • Communication
  • View All Servers →

Resources

  • Blog
  • Docs
  • Privacy Policy
  • Terms of Service

Blogs

  • View All Blogs →
Browse Servers|Pricing|Contact

Browse by Category

Productivity & Docs

  • Gmail
  • Google Drive
  • Google Classroom
  • Google Calendar
  • Google People
  • YouTube
  • Notion
  • ClickUp
  • Figma

Developer Tools

  • Gemini
  • Veo
  • ClickUp
  • Firecrawl
  • Vercel
  • Apify
  • Github
  • HTTP
  • Chef
  • Scientific Calculator
  • Figma
  • Perplexity

CRM & Sales

  • Google People

Finance & Commerce

  • Razorpay
  • Polymarket
  • Kite
  • Stripe
  • Binance

Marketing & SEO

  • Mailchimp
  • Google Business
  • YouTube

Search & Web

  • Web Scrapper
  • Firecrawl
  • Apify
  • Perplexity

Communication

  • Gmail
  • Google Meet
  • Mailchimp
  • Google Calendar
  • WhatsApp
  • Slack

© 2026 MewCP. All rights reserved.

Scientific Calculator

Scientific Calculator

v1.0.00 callsGitHub
Open in ChatGPTChatGPT
Open in ClaudeClaude

Documentation

Guide

Connect

Gateway URL

https://gateway.mewcp.com/scientific-calculator/mcp

Integrations

Click a client to view its config snippet and setup steps, or use Connect above to add this server and get your key.

Help Improve This Server

Missing a tool?

Found a bug?

Have an idea for an improvement?

Share your feedback directly with the maintainers - every feedback helps make this server better for everyone.

Open GitHub Issues →

Scientific Calculator MCP Server

A Model Context Protocol (MCP) server that provides stateless scientific calculator operations.

Authentication

This is a utility MCP server. No authentication input is required because tools do not access external tenant data.

Features

  • health_check: Verify server readiness.
  • evaluate_expression: Safely evaluate scientific expressions with optional angle mode and precision controls.
  • list_supported_operations: Return available operators, functions, constants, and angle modes.

Available Tools

health_check

Checks server readiness and basic connectivity.

Arguments:

  • None.

Example call:

{
  "tool": "health_check",
  "arguments": {}
}

evaluate_expression

Evaluates a scientific expression safely using an allowlisted AST evaluator.

Arguments:

  • expression (required, string): Scientific expression to evaluate.
    • Supports operators: +, -, *, /, //, %, **, unary +x, unary -x.
    • Supports constants: pi, , .

Example call:

{
  "tool": "evaluate_expression",
  "arguments": {
    "expression": "sin(pi / 2) + sqrt(16)",
    "angle_mode": "radians",
    "precision": 6
  }
}

list_supported_operations

Returns the server's current supported operators, functions, constants, and angle modes.

Arguments:

  • None.

Example call:

{
  "tool": "list_supported_operations",
  "arguments": {}
}

Setup

pip install -r requirements.txt

Running the Server

# stdio
python server.py
 
# sse
python server.py --transport sse --host 127.0.0.1 --port 8001
 
# streamable-http
python server.py --transport streamable-http --host 127.0.0.1 --port 8001

Example Tool Calls

{
  "tool": "evaluate_expression",
  "arguments": {
    "expression": "sin(pi / 2) + sqrt(16)",
    "angle_mode": "radians",
    "precision": 6
  }
}
{
  "tool": "evaluate_expression",
  "arguments": {
    "expression": "sin(30)",
    "angle_mode": "degrees"
  }
}

Project Structure

cl-mcp-scientific-calculator/
|-- server.py
|-- requirements.txt
|-- README.md
`-- scientific_calculator_mcp/
    |-- __init__.py
    |-- cli.py
    |-- config.py
    `-- tools.py
e
tau
  • Supports functions: abs, acos, asin, atan, ceil, cos, degrees, exp, factorial, floor, log, log10, radians, sin, sqrt, tan.
  • Maximum length: 512 characters.
  • angle_mode (optional, string): Trigonometric angle mode.
    • Allowed values: radians, degrees.
    • Default: radians.
  • precision (optional, integer): Decimal precision for finite float results.
    • Allowed range: 0 to 15.
    • Default: 10.