mcp-tmobile
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TMOBILE_PASSWORD | Yes | T-Mobile account password | |
| TMOBILE_USERNAME | Yes | T-Mobile account email/username | |
| BROWSERBASE_CDP_URL | No | Browserbase CDP URL for cloud browser automation |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_account_overviewB | Get T-Mobile account overview including current plan, balance, and usage summary. Requires login credentials. |
| get_usage_detailsC | Get detailed T-Mobile data, call, and text usage breakdown for the current billing period. |
| pay_billA | Initiate a one-time bill payment for T-Mobile account. Returns payment details for review before confirmation. |
| get_bill_historyB | View past T-Mobile bills and payment history. |
| check_upgrade_eligibilityB | Check T-Mobile device upgrade eligibility for lines on the account. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool maps to a distinct account action, but get_account_overview and get_usage_details overlap somewhat because the overview includes a usage summary; the 'summary vs. detailed breakdown' distinction keeps them separable.
All tools use consistent snake_case verb_noun naming: get_* for read operations and pay_bill/check_upgrade_eligibility for actions. This creates a predictable pattern with no style mixing.
Five tools is a well-scoped set for a personal T-Mobile account management server, covering billing, usage, and upgrade information without bloat or an overly thin surface.
Core account management flows—overview, usage, bill payment, and upgrade eligibility—are present. Minor gaps include no explicit payment confirmation step or autopay/plan management, but these are workable for the apparent scope.