MCP server for the Open Telekom Cloud Price Calculator API (eu-de, eu-nl, eu-ch2).
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
An open-source Model Context Protocol (MCP) server for the Open Telekom Cloud (OTC) Price Calculator API.
Expose OTC pricing data to Claude and other LLM clients with full observability (structured logging, Prometheus metrics, health checks).
Status: v0.1.3 β STDIO + SSE transports, Kubernetes deployment, full observability
Model Context Protocol is a standard that enables LLM applications (like Claude) to interact with external tools and data sources. This server supports two transports:
| Transport | How it works | Best for |
|---|---|---|
| STDIO | Claude launches the server as a subprocess; communication is over stdin/stdout | Local Claude Desktop, CLI tools |
| SSE | Server-Sent Events over HTTP β Claude connects to a URL | Remote/hosted deployments, web clients |
This server gives Claude access to OTC pricing data and the user-manual / API-reference documentation through 9 specialized tools, on whichever transport you prefer.
Example Use Cases:
find_compute_flavor tool β gets pricing data β answers youcompare_billing_models tool β does the analysis β shows savingsRequirements: Python 3.12+
What You'll See:
The server now listens for MCP connections on both stdin/stdout and http://localhost:8080/sse.
Option A β STDIO (local, Claude Desktop)
Option B β SSE (remote, Kubernetes)
Point any MCP client that supports SSE transport at the hosted endpoint:
Or test locally while running the server:
Once connected, Claude can call any of the 7 available tools. See the Tools Reference section below.
The server exposes 7 MCP tools for different pricing queries:
list_servicesPurpose: Get all available OTC services
Input: None
Output: List of service names and metadata
Example Claude usage:
list_regionsPurpose: Get available OTC regions
Input: None
Output: List of region codes (eu-de, eu-nl, eu-ch2, etc.)
Example Claude usage:
get_service_schemaPurpose: Get filterable/returnable columns for a service
Input:
service (string): Service name (e.g., "ecs", "evs", "obs", "s3", "rds")Output: Schema with filterable and returnable column names
Example Claude usage:
query_pricingPurpose: Query pricing data with flexible filtering
Input:
services (array): List of service names (e.g., ["ecs", "evs"])region (string, optional): Filter by region (e.g., "eu-de")max_results (integer, optional): Max results to return (default: 5000)Output: Pricing rows matching the filter
Example Claude usage:
find_compute_flavorPurpose: Find compute (ECS) instances by vCPU/RAM/OS
Input:
v_cpu (integer): Number of virtual CPUsram_gb (number): RAM in GiBos (string, optional): Operating system (Linux, Windows, etc.)region (string, optional): Region (default: eu-de)Output: Matching ECS instance types with pricing
Example Claude usage:
estimate_monthly_costPurpose: Calculate monthly cost for multiple resources
Input:
items (array): Resources with:
id (string): Product ID (e.g., "OTC_S3M1_LI")quantity (number, optional): How many units (default: 1)hours_per_month (number, optional): Usage hours (default: 730)Output: Itemized costs with monthly total
Example Claude usage:
compare_billing_modelsPurpose: Compare PAYG vs Reserved Instance pricing
Input:
product_id (string): Product ID (e.g., "OTC_S3M1_LI")quantity (number, optional): Quantity (default: 1)hours_per_month (number, optional): Usage hours (default: 730)Output: Cost comparison for PAYG, 12mo, 24mo, 36mo reserved
Example Claude usage:
search_otc_docsPurpose: Full-text search across the indexed OTC user manual and API reference
Input:
query (string): Search terms (BM25-ranked, AND of tokens)scope (string, optional): public | swiss | both (default: both)service (string, optional): Restrict to one service repo (e.g. elastic-cloud-server)top_k (integer, optional): 1-50, default 5Output: Ranked list of {url, title, h2, h3, snippet, service, cloud, upstream_commit} hits.
The index ships with the package and is rebuilt weekly from the upstream
opentelekomcloud-docs/<service> Sphinx/RST repos (Apache-2.0); the runtime
never touches the Anubis-gated docs.otc.t-systems.com HTML.
Example Claude usage:
get_otc_doc_sectionPurpose: Fetch the body of one indexed documentation page (or one of its sections) as Markdown
Input:
url (string): Canonical URL as returned by search_otc_docs (with or without #anchor)section (string, optional): H2/H3 heading filter (case-insensitive substring)Output: {url, title, sections: [{h2, h3, anchor, body}, ...], matched, ...}
Example Claude usage:
Control the server behavior with environment variables:
| Variable | Default | Description |
|---|---|---|
LOG_LEVEL | INFO | Logging level: DEBUG, INFO, WARNING, ERROR |
METRICS_PORT | 8080 | Port for metrics/health endpoints |
METRICS_HOST | 0.0.0.0 | Bind address for the HTTP server (set to 127.0.0.1 for non-container runs) |
OTC_PRICING_API_BASE | https://calculator.otc-service.com/en/open-telekom-price-api/ | OTC API endpoint |
OTC_DOCS_DB | (auto) | Override path to the docs FTS5 index (default: bundled data/otc_docs.sqlite3) |
Example:
This server is built with production-grade observability so you can debug issues and monitor performance.
Every action is logged as JSON, making logs machine-readable for aggregation and analysis.
Start the server with DEBUG logging:
You'll see JSON logs like:
Key fields in every log:
timestamp: When the event happened (ISO 8601)event: What happened (tool_invocation_start, upstream_request_success, etc.)request_id: Unique ID for this request (same across all related logs)Logs are printed to stderr, so redirect to a file or log aggregator:
Pipe to jq for pretty printing:
The uvicorn server exposes all endpoints on port 8080:
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/otc-pricing-mcp)<a href="https://allmcps.com/mcp/otc-pricing-mcp"><img src="https://allmcps.com/api/badge/otc-pricing-mcp?style=directory" alt="OTC Pricing MCP on AllMCPs" /></a>