Skip to main content
Glama

Get Bill Providers

monei_get_bill_providers
Read-onlyIdempotent

Retrieve available billers and packages for any bill category, including airtime, data, cable, and electricity. Get correct biller codes and item codes needed to pay bills.

Instructions

Returns available billers and packages for a given bill category.

Always call this before monei_pay_bill to get the correct biller codes and item codes needed for payment.

Routing:

  • UTILITYBILLS → returns all electricity providers (no billerName needed)

  • AIRTIME, MOBILEDATA, CABLEBILLS → requires billerName to filter (e.g. "MTN", "DSTV")

Args:

  • category (string): "AIRTIME" | "MOBILEDATA" | "CABLEBILLS" | "UTILITYBILLS"

  • billerName (string, optional): Network or provider to filter by. Required for non-electricity categories.

Returns for AIRTIME/MOBILEDATA/CABLEBILLS: { "providers": [ { "billerCode": string, // Use as 'biller' or 'disco' in monei_pay_bill "itemCode": string, // Use as 'itemCode' in monei_pay_bill (data/cable only) "name": string, // Human-readable package name "amount": number, // Fixed price (0 means user-specified amount) "validityPeriod": string | null } ] }

Returns for UTILITYBILLS: { "providers": [ { "name": string, // e.g. "Ikeja Electric" "code": string, // Use as 'disco' in monei_pay_bill "billerCode": string } ] }

Examples:

  • "What MTN data plans are available?" -> category: "MOBILEDATA", billerName: "MTN"

  • "What electricity providers do you support?" -> category: "UTILITYBILLS"

  • "Show me DSTV packages" -> category: "CABLEBILLS", billerName: "DSTV"

  • "Buy MTN airtime" -> category: "AIRTIME", billerName: "MTN" to get the biller code first

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
categoryYesCategory of bill to pay. AIRTIME for airtime top-up, MOBILEDATA for data bundles, CABLEBILLS for cable TV (DSTV, GOtv, Startimes), UTILITYBILLS for electricity.
billerNameNoBiller/network name to filter by. Required for AIRTIME, MOBILEDATA, CABLEBILLS (e.g. 'MTN', 'DSTV'). Not needed for UTILITYBILLS — all electricity providers are returned.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv1.3.1

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly and non-destructive behavior, and the description adds significant behavioral context beyond them: category-dependent response shapes, the fact that UTILITYBILLS returns all electricity providers, and how returned codes map to monei_pay_bill parameters. This does not contradict the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Description is long but well-organized with Routing, Args, Returns, and Examples sections, and the critical prerequisite is front-loaded. It earns its length because there is no output schema. Minor redundancy with the schema's Args descriptions prevents a 5.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description fully compensates by specifying return shapes for both UTILITYBILLS and the other categories, including the meaning of each field for downstream use. Examples cover the main category types, and routing rules are explicit, so an agent has enough context to invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so baseline is 3. The description adds extra semantic value by mapping billerCode/itemCode to monei_pay_bill fields and providing real examples for category/billerName combinations, helping the agent choose correct values beyond the schema alone.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states it returns available billers and packages for a bill category, using a specific verb and resource. It goes further to distinguish itself as the prerequisite lookup step before monei_pay_bill, separating it from payment and history siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs 'Always call this before monei_pay_bill' and details category-specific routing, including when billerName is required and when it is not. Concrete examples show query-to-argument mapping. It does not explicitly contrast with monei_get_bill_history for history lookups, so it stops short of full when-not/alternative coverage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Mr-Money01/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server