Skip to main content
Glama
nasoma

Africa's Talking Airtime MCP

by nasoma

Afrikas sprechende Airtime MCP

Schmiedeabzeichen

Dieses Projekt implementiert einen Model Context Protocol (MCP)-Server zur Verwaltung von Gesprächsguthabentransaktionen mithilfe der Africa's Talking API . Es bietet eine Reihe von Tools zum Abrufen des Kontostands, Senden von Gesprächsguthaben, Anzeigen aktueller Aufladungen, Summieren der Beträge aktueller Aufladungen und Zählen der Aufladungen für eine bestimmte Telefonnummer. Die Anwendung nutzt SQLite zur Speicherung von Transaktionsdaten und unterstützt afrikanische Länder, die vom Africa's Talking Airtime Service unterstützt werden, mit der korrekten Formatierung von Telefonnummern.

Beschreibung

Der Africa's Talking Airtime MCP-Server ist in die Africa's Talking Airtime API integriert, um die Übertragung von Gesprächsguthaben zu erleichtern. Zu den wichtigsten Funktionen gehören:

  • Senden von Sendezeit an bestimmte Telefonnummern.

  • Speichern von Transaktionsdetails in einer SQLite-Datenbank.

  • Abrufen und Zusammenfassen des Transaktionsverlaufs.

  • Überprüfen des Kontostands bei Africa's Talking.

Die Anwendung unterstützt die Länder, in denen der afrikanische Talking Airtime-Dienst unterstützt wird.

Related MCP server: mpesa-mcp

Installation

Installation über Smithery

So installieren Sie Africa's Talking Airtime Server für Claude Desktop automatisch über Smithery :

npx -y @smithery/cli install @nasoma/africastalking-airtime-mcp --client claude

Voraussetzungen

  1. Python 3.10 oder höher

  2. UV installieren

curl -LsSf https://astral.sh/uv/install.sh | sh

Führen Sie die folgenden Schritte aus, um das Projekt lokal einzurichten und auszuführen:

  1. Klonen Sie das Repository:

git clone https://github.com/nasoma/africastalking-airtime-mcp.git
cd africastalking-airtime-mcp
  1. Richten Sie die virtuelle Umgebung ein und installieren Sie Abhängigkeiten, indem Sie Folgendes ausführen:

uv sync 
  1. Sie können loslegen!

Verwendung mit KI-Tools

Mit Claude Desktop

Fügen Sie dies zu Ihrer claude_desktop_config.json hinzu:

{
  "mcpServers": {
    "Airtime Server": {
      "command": "{{PATH_TO_UV}}", // Run `which uv` and place the output here
      "args": [
        "--directory",
        "{{PATH_TO_PROJECT}}", // cd into the repo, run `pwd` and enter the output here
        "run",
        "main.py"
      ],
      "env": {
        "username": "your_africastalking_username",
        "api_key": "your_africastalking_api_key",
        "country":"your_country", # e.g kenya, uganda, dr congo, rwanda, south africa
        "currency_code":"currency-code"  # e.g. KES, UGX, NGN
      }
    }
  }
}

Mit Gans

Goose ist eine gute Option, wenn Sie Ihr bevorzugtes LLM verwenden und einen API-Schlüssel angeben möchten.

  • Installieren Sie Goose.

  • Öffnen Sie das Einstellungsfenster und fügen Sie eine benutzerdefinierte Erweiterung (MCP-Server) hinzu.

  • Geben Sie Ihrer Erweiterung einen Namen. Der Typ ist STDIO.

  • Fügen Sie den Befehl hinzu. Änderungen speichern.Goose-Demo

  • Fügen Sie Ihre Umgebungsvariablen hinzu: username , api_key , currency_code und country .

  • Änderungen speichern.

Goose Demo2

Werkzeugbeschreibungen

Das MCP bietet die folgenden Tools zur Verwaltung von Sendezeittransaktionen:

  1. check_balance :

    • Beschreibung : Ruft das aktuelle Sendezeitguthaben für Ihr Africa's Talking-Konto ab.

    • Verwendung : check_balance()

    • Ausgabe : Gibt den Kontostand zurück (z. B. „Kontostand: KES 1234,00“) oder eine Fehlermeldung, wenn der Kontostand nicht abgerufen werden kann.

  2. Ladezeit :

    • Beschreibung : Sendet Sendezeit an eine angegebene Telefonnummer und speichert die Transaktion in der Datenbank.

    • Parameter :

      • phone_number : Die Telefonnummer des Empfängers (z. B. „0712345678“ oder „+254712345678“).

      • amount : Die zu sendende Sendezeit (z. B. 100).

      • currency_code : Der Währungscode (z. B. „KES“).

    • Verwendung : load_airtime("0712345678", 100.00, "KES")

    • Ausgabe : Bestätigt den Erfolg (z. B. „100,00 KES Sendezeit erfolgreich an +254712345678 gesendet“) oder meldet einen Fehler.

  3. get_last_topups :

    • Beschreibung : Ruft die letzten N Aufladetransaktionen für Sendeguthaben aus der Datenbank ab.

    • Parameter :

      • limit : Anzahl der abzurufenden Transaktionen (Standard: 3).

    • Verwendung : get_last_topups(3)

    • Ausgabe : Listet die letzten Transaktionen auf (z. B. „Letzte 3 Aufladetransaktionen: …“) oder zeigt an, dass keine Transaktionen gefunden wurden.

  4. Summe der letzten n Aufladungen :

    • Beschreibung : Berechnet den Gesamtbetrag der letzten N erfolgreichen Aufladungen und stellt sicher, dass sie dieselbe Währung verwenden.

    • Parameter :

      • n : Anzahl der zu summierenden Transaktionen (Standard: 3).

    • Verwendung : sum_last_n_topups(3)

    • Ausgabe : Gibt die Summe zurück (z. B. „Summe der letzten 3 erfolgreichen Aufladungen: 300,00 KES“) oder einen Fehler, wenn die Währungen unterschiedlich sind.

  5. Aufladungen nach Anzahl zählen :

    • Beschreibung : Zählt die Anzahl der erfolgreichen Aufladungen einer bestimmten Telefonnummer.

    • Parameter :

      • phone_number : Die abzufragende Telefonnummer (z. B. „0712345678“).

    • Verwendung : count_topups_by_number("0712345678")

    • Ausgabe : Gibt die Anzahl (z. B. „Anzahl der erfolgreichen Aufladungen auf +254712345678: 5“) oder einen Fehler zurück.

Beispielaufforderungen

Im Folgenden finden Sie Beispielfragen oder -befehle, die Benutzer der KI stellen können, um mit dem Africa's Talking Airtime MCP zu interagieren, basierend auf den verfügbaren Tools:

Kontostand prüfen

  • Wie hoch ist mein Kontostand bei Africa's Talking?

  • Können Sie mir den aktuellen Kontostand anzeigen?

  • Überprüfen Sie mein Sendezeitguthaben.

Sendezeit senden

  • Senden Sie 100 KES Sendezeit an 0712345678.

  • Laden Sie mein 0712345678 mit 60 auf.

  • Laden Sie 50 NGN auf +2348012345678.

  • Können Sie 200 UGX auf 0755123456 aufladen?

Aktuelle Aufladungen anzeigen

  • Zeigen Sie mir die letzten 3 Airtime-Transaktionen.

  • Was sind meine letzten Aufladungen?

  • Listen Sie die letzten 5 Aufladungen Ihres Gesprächsguthabens auf.

Summe der letzten Aufladungen

  • Wie hoch ist der Gesamtbetrag meiner letzten 3 Aufladungen?

  • Addieren Sie die Beträge meiner letzten 4 Sendezeittransaktionen.

  • Wie viel habe ich bei meinen letzten 5 Aufladungen gesendet?

Aufladungen nach Telefonnummer zählen

  • Wie oft habe ich 0712345678 aufgeladen?

  • Zählen Sie die Aufladungen bis +254712345678.

  • Sagen Sie mir, wie viele erfolgreiche Aufladungen auf 0755123456 erfolgt sind.

Hinweise

  • Stellen Sie sicher, dass Ihr Africa's Talking-Konto über ausreichend Guthaben verfügt, um Sendezeit zu senden.

  • Telefonnummern werden automatisch basierend auf der im Client oder in claude_desktop_config.json festgelegten country formatiert.

  • Die SQLite-Datenbank ( airtime_transactions.db ) wird bei der Initialisierung im Projektverzeichnis erstellt.

  • Funktioniert am besten mit Modellen, die Tool Calling unterstützen, z. B. Claude 3.7 Sonnet . Wenn Sie auf den Preis achten, ist GPT-4.1 Nano eine gute, günstigere Option bei Verwendung mit Clients wie Goose.

🙏 Credits

Available Tools

5 tools
check_balanceA

Checks the airtime balance of the Africa's Talking account.

This tool connects to the Africa's Talking API to fetch the user's
current application data, which includes the account balance.

Returns:
    str: A message displaying the account balance or an error if the
         balance cannot be retrieved.
ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes the tool's behavior: connecting to an external API, fetching application data, and returning either a balance message or an error. It covers the core operation and error handling, though it lacks details like rate limits, authentication requirements, or specific error conditions.

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?

The description is appropriately sized and front-loaded, starting with the core purpose. The second sentence adds necessary detail about the API connection, and the 'Returns' section clarifies output behavior. It's efficient with minimal waste, though the 'Returns' formatting could be slightly more concise.

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

Completeness4/5

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

Given the tool's low complexity (0 parameters, no output schema, no annotations), the description is reasonably complete. It explains what the tool does, how it operates via API, and what it returns. For a simple balance check tool, this covers essential context, though it could benefit from more detail on error scenarios or API specifics.

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?

The input schema has 0 parameters with 100% coverage, so the schema fully documents the lack of inputs. The description adds value by confirming no parameters are needed ('checks the airtime balance' implies a simple query without inputs), aligning with the schema. Baseline is 4 for 0 parameters, as it provides clear semantic context.

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?

The description clearly states the specific action ('Checks') and resource ('airtime balance of the Africa's Talking account'), distinguishing it from sibling tools that focus on top-up operations rather than balance inquiry. It precisely defines what the tool does without ambiguity.

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

Usage Guidelines3/5

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

The description implies usage context by mentioning it fetches 'application data' and 'account balance', suggesting it's for checking current balance status. However, it doesn't explicitly state when to use this tool versus alternatives like checking transaction history through sibling tools, nor does it provide exclusion criteria or prerequisites.

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

count_topups_by_numberA

Counts the number of top-ups for a specific phone number.

Args:
    phone_number (str): The phone number to count transactions for.

Returns:
    str: The total count of top-ups for the given number or an error message.
ParametersJSON Schema
NameRequiredDescriptionDefault
phone_numberYes

TDQS

A3.5/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool counts top-ups and returns a count or error message, but lacks details on permissions, rate limits, error conditions, or data freshness. For a tool with zero annotation coverage, this is a significant gap in transparency.

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

Conciseness5/5

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

The description is well-structured and front-loaded with the core purpose, followed by clear sections for arguments and returns. Every sentence earns its place by directly supporting tool understanding, with no redundant or verbose language, making it efficient and easy to parse.

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

Completeness3/5

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

Given the tool's low complexity (1 parameter, no output schema, no annotations), the description is adequate but incomplete. It covers the basic purpose and parameter semantics but lacks behavioral details like error handling or usage guidelines. For a simple query tool, it meets minimum viability but has clear gaps in contextual richness.

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?

The description adds meaningful context for the single parameter 'phone_number' by explaining it is 'the phone number to count transactions for,' which clarifies its role beyond the schema's basic type and title. With schema description coverage at 0%, the description effectively compensates by providing semantic value, though it could include format examples (e.g., E.164).

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?

The description clearly states the tool's purpose with a specific verb ('Counts') and resource ('number of top-ups for a specific phone number'), distinguishing it from siblings like 'check_balance' (balance checking), 'get_last_topups' (retrieving recent transactions), 'load_airtime' (airtime loading), and 'sum_last_n_topups' (summing recent transactions). It precisely defines what the tool does without ambiguity.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It does not mention scenarios where counting top-ups is preferred over other tools like 'get_last_topups' or 'sum_last_n_topups', nor does it specify prerequisites or exclusions. Usage is implied only by the purpose statement, lacking explicit context.

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

get_last_topupsA

Retrieves the last N top-up transactions from the database.

Args:
    limit (int, optional): The number of recent transactions to fetch.
                           Defaults to 3.

Returns:
    str: A formatted string listing the last N transactions or a message
         if no transactions are found.
ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo

TDQS

A4.2/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It describes the tool as retrieving transactions and returning a formatted string or message, which covers basic behavior. However, it lacks details on error handling, data format specifics, or performance aspects like rate limits or permissions needed, leaving gaps in transparency.

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

Conciseness5/5

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

The description is appropriately sized and front-loaded, starting with a clear purpose statement followed by structured sections for arguments and returns. Every sentence adds value without redundancy, making it efficient and easy to parse.

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

Completeness4/5

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

Given the tool's low complexity (1 optional parameter, no output schema, no annotations), the description is mostly complete. It covers purpose, parameter semantics, and return behavior. However, it could improve by addressing potential edge cases or linking to sibling tools for better context, slightly reducing completeness.

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?

The description adds meaningful context for the single parameter 'limit,' explaining it as 'the number of recent transactions to fetch' with a default of 3, which goes beyond the input schema's basic type and title. Since schema description coverage is 0%, the description compensates well by providing clear semantics for the parameter.

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?

The description clearly states the tool's purpose with specific verb ('retrieves') and resource ('last N top-up transactions from the database'). It distinguishes from siblings by focusing on recent transactions rather than checking balances, counting by number, loading airtime, or summing amounts.

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?

The description implies usage context by specifying 'last N top-up transactions,' suggesting it's for recent transaction review rather than other operations like checking balances or loading airtime. However, it does not explicitly state when to use this tool versus alternatives like 'sum_last_n_topups' or 'count_topups_by_number,' missing explicit exclusions or comparisons.

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

load_airtimeA

Sends airtime to a specified phone number and logs the transaction.

This tool formats the phone number, sends the airtime using the
Africa's Talking API, and saves a record of the transaction in the
database.

Args:
    phone_number (str): The recipient's phone number.
    amount (float): The amount of airtime to send.
    currency_code (str): The currency for the transaction (e.g., "KES").

Returns:
    str: A message indicating the status of the airtime transaction.
ParametersJSON Schema
NameRequiredDescriptionDefault
phone_numberYes
amountYes
currency_codeYes

TDQS

A4.1/5.0
Behavior3/5

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

With no annotations provided, the description carries full burden. It discloses key behaviors: formatting phone numbers, using Africa's Talking API, and logging to a database. However, it lacks details on error handling, rate limits, authentication needs, or what specific data is logged.

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

Conciseness5/5

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

The description is well-structured and front-loaded with the core purpose in the first sentence. Each subsequent sentence adds necessary detail without redundancy. The Args/Returns sections are clearly formatted and efficiently convey parameter and return value information.

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

Completeness4/5

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

For a mutation tool with no annotations and no output schema, the description does a good job covering purpose, parameters, and basic behavior. However, it lacks details about the return message format, error conditions, or database logging specifics that would be helpful for an agent.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must compensate. It provides clear semantic meaning for all three parameters: phone_number identifies the recipient, amount specifies airtime quantity, and currency_code defines transaction currency with an example ('KES'). This adds significant value beyond the bare schema.

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?

The description clearly states the tool's purpose with specific verbs ('sends airtime', 'logs the transaction') and identifies the resource (phone number). It distinguishes from sibling tools like check_balance or get_last_topups by focusing on sending rather than querying.

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

Usage Guidelines3/5

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

The description implies usage for sending airtime via Africa's Talking API, but provides no explicit guidance on when to use this tool versus alternatives like count_topups_by_number or sum_last_n_topups. No prerequisites, exclusions, or comparison to siblings are mentioned.

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

sum_last_n_topupsA

Calculates the sum of the last 'n' successful top-ups.

This tool retrieves the last 'n' transactions from the database and
calculates their total sum. It ensures that all transactions are in the
same currency before summing.

Args:
    n (int, optional): The number of recent top-ups to sum. Defaults to 3.

Returns:
    str: The total sum of the last 'n' top-ups or an error message if
         the currencies are mixed or no transactions are found.
ParametersJSON Schema
NameRequiredDescriptionDefault
nNo

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden and discloses key behavioral traits: it only sums successful top-ups, retrieves from a database, ensures currency consistency, and handles error cases (mixed currencies or no transactions). It doesn't cover aspects like performance, rate limits, or authentication needs, but provides substantial operational context beyond basic functionality.

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

Conciseness5/5

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

The description is appropriately sized and front-loaded: the first sentence states the core purpose, followed by operational details, then clearly formatted Args and Returns sections. Every sentence adds value—none are redundant or vague—and the structure enhances readability without unnecessary elaboration.

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

Completeness4/5

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

Given the tool's moderate complexity (database query with calculations and error handling), no annotations, and no output schema, the description is largely complete: it covers purpose, parameters, behavior, and return values. It could benefit from mentioning prerequisites (e.g., authentication) or performance characteristics, but adequately addresses core functionality and error cases for an agent to use it 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?

The description adds meaningful semantics beyond the input schema: it explains that 'n' represents 'the number of recent top-ups to sum' with a default of 3, and clarifies it's optional. With 0% schema description coverage (schema only has type and title), the description fully compensates by providing clear parameter meaning and usage context.

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?

The description clearly states the tool's purpose with specific verbs ('calculates', 'retrieves', 'ensures') and resources ('last n successful top-ups', 'transactions from the database'). It distinguishes from siblings like 'check_balance' (current balance), 'count_topups_by_number' (counts by number), 'get_last_topups' (lists without summing), and 'load_airtime' (different operation).

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

Usage Guidelines3/5

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

The description implies usage for summing recent top-ups, but doesn't explicitly state when to use this tool versus alternatives like 'get_last_topups' (for listing) or 'count_topups_by_number' (for counting by number). It mentions currency consistency as a requirement, which provides some contextual guidance, but lacks explicit when/when-not scenarios or named alternatives.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 5 tool updates
    • First observedcheck_balance
    • First observedcount_topups_by_number
    • First observedget_last_topups
    • First observedload_airtime
    • First observedsum_last_n_topups

TDQS

A4/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: check_balance for account status, load_airtime for sending airtime, and three tools (count_topups_by_number, get_last_topups, sum_last_n_topups) for analyzing transaction history from different angles. The descriptions reinforce these distinct roles, making misselection unlikely.

Naming Consistency4/5

The naming follows a consistent snake_case pattern with clear verb_noun structures (e.g., check_balance, load_airtime). However, there is a minor deviation: 'count_topups_by_number' uses a prepositional phrase instead of a simple noun, slightly breaking the pattern compared to tools like 'get_last_topups' or 'sum_last_n_topups'.

Tool Count5/5

With 5 tools, the count is well-scoped for an airtime management server. It covers core operations (checking balance, sending airtime) and transaction analysis without being overwhelming, ensuring each tool earns its place in the workflow.

Completeness4/5

The toolset provides good coverage for airtime operations: checking balance, sending airtime, and analyzing transaction history. A minor gap exists in not having tools for managing transaction errors or refunds, but agents can likely work around this with the existing tools for core workflows.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    A unified interface for major African payment providers including M-Pesa, Paystack, and MTN MoMo. It enables users to process payments, request funds, and manage transactions across the continent using natural language commands.
    7
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    MCP server for East African fintech APIs — trigger M-Pesa STK Push payments, check transaction status, send SMS to 20+ African networks, and top up airtime via Africa's Talking.
    5
    4
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Enables AI agents to call x402-gated APIs using a central credit balance, abstracting away blockchain complexity and payment proofs. It provides tools to fetch data from payment-required endpoints, check usage balances, and simulate transaction costs.
    6
    36
    2
    -
  • -
    license
    Not graded
    quality
    Not graded
    maintenance
    Field operations agent API for task management, geo-tracking, and team coordination. Built for African logistics, delivery, and field service teams.
    -