Okta Calculator MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Okta Calculator MCP Serveradd 15 and 27"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Okta Calculator MCP Server
Simple MCP server (Streamable HTTP) that exposes basic calculator tools and validates an Okta access token on tool calls.
Features
Calculator tools:
add,subtract,multiply,divideOkta auth via Bearer token: tool calls require an
Authorization: Bearer <okta-jwt>headerValidation: the server verifies the token as a JWT signed by Okta using the Okta JWKS endpoint (signature, issuer, audience, expiry)
Discovery calls (
initialize,tools/list) work without a token, so gateways can list tools
Prerequisites
Node.js 20+
Configuration
Okta config is hardcoded in src/server.ts:
Issuer:
https://truefoundry.okta.com(Okta org authorization server)Audience:
https://truefoundry.okta.comJWKS:
https://truefoundry.okta.com/oauth2/v1/keys
The HTTP port defaults to 8080 and can be overridden with the PORT env var.
Install, build and run
npm install
npm run build
npm startFor local development:
npm run devEndpoints
POST /mcp(andPOST /): MCP Streamable HTTP endpointGET /health: health probe, returns{"status":"ok"}
MCP tools
Each tool takes a and b (numbers):
add: returnsa + bsubtract: returnsa - bmultiply: returnsa * bdivide: returnsa / b(errors on divide-by-zero)
Tool calls without a valid Okta Bearer token get HTTP 401:
Unauthorized: invalid or missing Okta token.
Docker
docker build -t okta-calculator-mcp .
docker run -p 8080:8080 okta-calculator-mcpTrueFoundry MCP Gateway
Register the deployed URL as a remote MCP server with Token Passthrough auth, so the gateway forwards the caller's Okta Bearer token to this server on tool calls.
This server cannot be deployed
Maintenance
Related MCP Connectors
Tested financial & practical calculators as free, no-auth MCP tools for AI agents.
500+ deterministic tools for AI agents: math, conversion, validation, hashing, encoding, date/time.
Loan & mortgage calculator, compound interest, ROI, crypto prices, FX conversion for AI agents.
Gateway between LLM agents and world data through eight tools and a bundled endpoint catalog.
Related MCP Servers
- -licenseNot gradedqualityNot gradedmaintenanceA calculator server that exposes mathematical functions as tools (add, subtract, multiply, divide, square, power, square root), enabling language models to perform calculations through Model Context Protocol (MCP).-
- FlicenseAqualityDmaintenanceEnables mathematical calculations through basic arithmetic operations including addition, subtraction, multiplication, division, exponentiation, and logarithms. Provides a simple interface for AI agents to perform mathematical computations.63-
- AlicenseNot gradedqualityDmaintenanceEnables AI applications to perform basic mathematical operations like addition and subtraction through MCP tools. Also provides REST API endpoints for the same operations.MIT
- FlicenseDqualityDmaintenanceProvides basic mathematical operations (addition, subtraction, multiplication, division) through a calculate tool. Supports both stdio and HTTP/SSE transport modes.19 npm-