Datagate Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Datagate Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
MCP server and CLI for the DataGate billing platform API.
pip install datagate-mcpOr run the MCP server directly:
uvx datagate-mcpSet two environment variables:
| Variable | Description |
|---|---|
DATAGATE_API_KEY | Bearer token from DataGate portal |
DATAGATE_CLIENT_ID | Integration GUID from DataGate portal |
DATAGATE_BASE_URL | (optional) Override base URL (default: https://api.dgportal.net) |
Add to claude_desktop_config.json:
{
"mcpServers": {
"datagate": {
"command": "uvx",
"args": ["datagate-mcp"],
"env": {
"DATAGATE_API_KEY": "your-api-key",
"DATAGATE_CLIENT_ID": "your-client-id"
}
}
}
}Add to .mcp.json:
{
"mcpServers": {
"datagate": {
"command": "uvx",
"args": ["datagate-mcp"],
"env": {
"DATAGATE_API_KEY": "your-api-key",
"DATAGATE_CLIENT_ID": "your-client-id"
}
}
}
}# List customers
datagate customers list
datagate customers list --page 2 --page-size 25
# Get a customer
datagate customers get <customer-id>
# Search invoices
datagate invoices search --invoice-date 2026-01-01
datagate invoices search --period-start 2025-12-01 --period-end 2025-12-31
# Invoice line items
datagate invoices details <invoice-id>
# List products (optionally by customer)
datagate products list --customer-id <id>
# JSON output
datagate --json customers listAll write commands require --confirm:
datagate customers create --name "Acme Corp" --code "50099"
datagate customers update <id> --data '{"companyName": "Acme Corp LLC"}'
datagate customers delete <id> --confirm
datagate products create --customer-id <id> --code "Internet 1Gb"
datagate sites create --customer-id <id> --name "123 Main St"
# Payments are IRREVERSIBLE — void only via DataGate portal
datagate payments create --customer-id <id> --amount 100.00 --confirm| Tool | Description |
|---|---|
list_customers | List customers with pagination |
get_customer | Get single customer by ID |
search_invoices | Search invoices by date/period |
get_invoice_details | Invoice with line-item transactions |
list_products | Products with pricing, filterable by customer |
get_product | Single product with charges |
list_agreements | Billing agreements, filterable by customer |
get_agreement | Single agreement |
list_sites | Physical locations, filterable by customer |
list_customer_users | Portal login accounts |
list_service_items | Service items |
list_rate_cards | Rate cards |
list_kit_templates | Kit templates |
MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.