Skip to main content
Glama
MSPbotsAI

pax8-mcp

by MSPbotsAI

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
AUTH_MODENogateway (per-request, SOP-compliant) or env (dev only)gateway
MCP_HTTP_HOSTNoHTTP listen host0.0.0.0
MCP_HTTP_PORTNoHTTP listen port8080
MCP_TRANSPORTNohttp for production, stdio for local devstdio
PAX8_BASE_URLNoPax8 API base URLhttps://api.pax8.com/v1
PAX8_API_TOKENNoAccess token (required if AUTH_MODE=env)
PAX8_AUTH_HEADERNoMCP request header carrying the tokenX-Pax8-Token

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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
pax8_list_companiesA

List companies in the Pax8 partner account.

    Args:
        page: Zero-based page number for pagination (default: 0).
        size: Number of results per page (default: 10).
        sort: Sort field and direction, e.g. "name,asc" or "createdDate,desc".
        name: Filter companies by name (partial match).
    
pax8_list_company_contactsA

List contacts for a specific company.

    Args:
        company_id: The unique identifier of the company.
        page: Zero-based page number for pagination (default: 0).
        size: Number of results per page (default: 10).
    
pax8_list_subscriptionsA

List subscriptions in the Pax8 partner account.

    Args:
        page: Zero-based page number for pagination (default: 0).
        size: Number of results per page (default: 10).
        sort: Sort field and direction, e.g. "startDate,asc".
        company_id: Filter by company ID.
        status: Filter by subscription status. One of: Active, Cancelled,
            PendingManual, PendingAutomated, PendingCancel, Terminated, Expired, Trial.
        product_id: Filter by product ID.
    
pax8_list_subscription_usage_summariesB

List usage summaries for a specific subscription.

    Args:
        subscription_id: The unique identifier of the subscription.
        page: Zero-based page number for pagination (default: 0).
        size: Number of results per page (default: 10).
    
pax8_list_invoicesA

List invoices in the Pax8 partner account.

    Args:
        page: Zero-based page number for pagination (default: 0).
        size: Number of results per page (default: 10).
        sort: Sort field and direction, e.g. "invoiceDate,desc".
        company_id: Filter by company ID.
        status: Filter by invoice status, e.g. "Paid", "Unpaid", "Overdue".
    
pax8_list_invoice_itemsA

List line items for a specific invoice.

    Args:
        invoice_id: The unique identifier of the invoice.
        page: Zero-based page number for pagination (default: 0).
        size: Number of results per page (default: 10).
    
pax8_list_ordersC

List orders in the Pax8 partner account.

    Args:
        page: Zero-based page number for pagination (default: 0).
        size: Number of results per page (default: 10).
        sort: Sort field and direction, e.g. "orderDate,desc".
        company_id: Filter by company ID.
        status: Filter by order status, e.g. "Pending", "Completed", "Cancelled".
    
pax8_list_productsA

List products available in the Pax8 marketplace.

    Args:
        page: Zero-based page number for pagination (default: 0).
        size: Number of results per page (default: 10).
        sort: Sort field and direction, e.g. "productName,asc".
        vendor_name: Filter by vendor name (partial match).
        product_name: Filter by product name (partial match).
    
pax8_list_usage_summary_linesA

List usage lines for a specific usage summary.

    Args:
        usage_summary_id: The unique identifier of the usage summary.
        page: Zero-based page number for pagination (default: 0).
        size: Number of results per page (default: 10).
    

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 9 tools

Disambiguation5/5

Each tool targets a distinct entity (companies, contacts, invoices, subscriptions, etc.), so there is no overlap or ambiguity in purpose.

Naming Consistency5/5

All tools follow the exact same pattern 'pax8_list_<entity>', with clear and consistent naming conventions.

Tool Count5/5

With 9 tools, the set is well-scoped for a read-only listing API, covering all major data entities without excess.

Completeness3/5

The tool surface covers listing for all main entities but lacks any retrieval by ID, creation, update, or delete operations, making it incomplete for full CRUD/lifecycle coverage typical of a domain API.

Maintenance

ActivityMaintained
ResponsivenessNo issues