pax8-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AUTH_MODE | No | gateway (per-request, SOP-compliant) or env (dev only) | gateway |
| MCP_HTTP_HOST | No | HTTP listen host | 0.0.0.0 |
| MCP_HTTP_PORT | No | HTTP listen port | 8080 |
| MCP_TRANSPORT | No | http for production, stdio for local dev | stdio |
| PAX8_BASE_URL | No | Pax8 API base URL | https://api.pax8.com/v1 |
| PAX8_API_TOKEN | No | Access token (required if AUTH_MODE=env) | |
| PAX8_AUTH_HEADER | No | MCP request header carrying the token | X-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
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| pax8_list_companiesA | List companies in the Pax8 partner account. |
| pax8_list_company_contactsA | List contacts for a specific company. |
| pax8_list_subscriptionsA | List subscriptions in the Pax8 partner account. |
| pax8_list_subscription_usage_summariesB | List usage summaries for a specific subscription. |
| pax8_list_invoicesA | List invoices in the Pax8 partner account. |
| pax8_list_invoice_itemsA | List line items for a specific invoice. |
| pax8_list_ordersC | List orders in the Pax8 partner account. |
| pax8_list_productsA | List products available in the Pax8 marketplace. |
| pax8_list_usage_summary_linesA | List usage lines for a specific usage summary. |
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 9 tools
Each tool targets a distinct entity (companies, contacts, invoices, subscriptions, etc.), so there is no overlap or ambiguity in purpose.
All tools follow the exact same pattern 'pax8_list_<entity>', with clear and consistent naming conventions.
With 9 tools, the set is well-scoped for a read-only listing API, covering all major data entities without excess.
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.