Kontomanager MCP Server
Enables programmatic access to Austrian mobile carriers (yesss!, Georg, XOXO) account management. Allows users to check usage, download bills, manage SIM settings, and configure call forwarding through natural language interactions.
README
MCP Server for Kontomanager
An unofficial MCP server for the Austrian mobile brands yesss!, Georg, and XOXO.
This server acts as a bridge, exposing the functionalities of the Kontomanager web interface through a structured set of MCP tools. It allows you to programmatically read account information, check usage, download bills, and modify settings like call forwardings.
✨ Features
This server is designed with a tool-first approach for broad client support. It provides a comprehensive set of functions mirroring the web portal:
- Read Account Data: Fetch usage, credit, plan details, phone numbers, and call history.
- Manage Bills: List past bills and download their PDF content.
- Modify Settings: Change SIM settings like roaming and configure detailed call forwarding rules.
- High-Level Workflows: Use simple tools for common actions like disabling voicemail.
🛠️ Available Tools
The server exposes all functionality through tools, which can be called by an MCP client or an LLM.
Data Retrieval Tools
get_account_usage(): Retrieves the main account overview, including plan details, usage statistics, and credit balance.get_phone_numbers(): Lists all phone numbers associated with the logged-in account.list_bills(): Fetches a list of available bills (metadata only).download_bill(bill_number, document_type): Fetches a specific bill or its itemized record (EGN) and returns its binary content (PDF).get_call_history(): Retrieves a list of recent calls and SMS messages.get_sim_settings(): Reads the current state of all SIM-related settings (e.g., roaming status, data barring).get_call_forwarding_settings(): Reads the current call forwarding and voicemail settings.
Action & Workflow Tools
switch_active_phone_number(subscriber_id): Switches the active phone number for the session.toggle_roaming(enabled): A simple tool to enable or disable international roaming.set_sim_setting(setting_name, enabled): A low-level tool to enable or disable a specific SIM setting.set_call_forwarding_rule(...): A low-level tool to configure a specific call forwarding rule (e.g., forward when busy to a specific number).
🗣️ Example Usage
You can interact with this server using natural language in a compatible MCP client. The client's LLM will select and execute the appropriate tools.
- "What's my current data usage and credit?"
- → Calls
get_account_usage()
- → Calls
- "Show me my last few bills."
- → Calls
list_bills()
- → Calls
- "Download my bill number 8177 and the itemized record for it."
- → Calls
download_bill(bill_number='8177', document_type='bill') - → Calls
download_bill(bill_number='8177', document_type='egn')
- → Calls
- "Turn on roaming for my trip."
- → Calls
toggle_roaming(enabled=True)
- → Calls
- "Forward all my calls to +436811234567 when my line is busy."
- → Calls
set_call_forwarding_rule(condition='wtel', target='a', target_number='+436811234567')
- → Calls
⚙️ Configuration
The server requires your Kontomanager credentials. These must be provided via environment variables, which you will set in your MCP client's configuration file.
The required variables are:
KONTOMANAGER_BRAND: The brand of your mobile carrier. Supported values:"yesss","georg","xoxo".KONTOMANAGER_USERNAME: Your login phone number or username.KONTOMANAGER_PASSWORD: Your Kontomanager account password.
🚀 Setup and Usage
This project is an MCP server and is designed to be launched and managed by an MCP client. You do not run it standalone.
-
Clone the repository:
git clone https://github.com/dhofer/mcp-server-kontomanager.git -
Configure your MCP client: Add a new server definition to your MCP client's configuration file. The command will use
uv runto execute the server from its local directory. Make sure to use the absolute path to the cloned repository.{ "mcpServers": { "kontomanager": { "command": "uv", "args": [ "run", "--directory", "/absolute/path/to/mcp-server-kontomanager", "python", "src/server.py" ], "env": { "KONTOMANAGER_BRAND": "yesss", "KONTOMANAGER_USERNAME": "43681...", "KONTOMANAGER_PASSWORD": "your_secret_password" } } } }
⚠️ Important Warnings: Read Before Use
Data Privacy
When you use this MCP server, any data retrieved by the tools (like your account usage, phone numbers, or bill details) is sent to the Large Language Model (LLM) that powers your MCP client. This means a third-party company (e.g., OpenAI, Google, Anthropic) will process this potentially sensitive information. Please be aware of the privacy implications and review your LLM provider's policies before using this server.
Financial Risk
This server provides tools that can change your mobile account settings in real-time. Actions like toggle_roaming or set_call_forwarding_rule can lead to significant, real-world charges on your phone bill, especially if misconfigured. You are solely responsible for any and all costs incurred as a result of using these tools. Use them with extreme caution.
🧑💻 Development Philosophy
This project is, for all intents and purposes, vibe coded. It was built based on intuition and the specific needs of the developer. While it aims to be functional, it may not follow the strictest engineering practices and has limited tests. Pull requests for improving robustness, adding tests, or refining the code are highly encouraged!
Disclaimer: This is an unofficial project and is not affiliated with, endorsed, or supported by A1 Telekom Austria AG or any of its brands. The Kontomanager website structure can change at any time, which may break the functionality of this server. Use at your own risk.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.