INDIVIDUAL MCP TOOL
sign_test_webhook_payload
Produce a correctly-signed Tokenz webhook request so you can test your webhook handler locally BEFORE any real purchase or tunnel — the counterpart to verify_webhook_signature.
LIVE ENDPOINT
https://mcp.tokenz.one/mcp
Connect to this endpoint to inspect the live schema for sign_test_webhook_payload and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests a financial action.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.tokenz]
url = "https://mcp.tokenz.one/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"tokenz": {
"type": "http",
"url": "https://mcp.tokenz.one/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: tokenz
Remote MCP URL: https://mcp.tokenz.one/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"tokenz": {
"url": "https://mcp.tokenz.one/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"tokenz": {
"type": "http",
"url": "https://mcp.tokenz.one/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "tokenz",
"transport": "streamable-http",
"url": "https://mcp.tokenz.one/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
search_docs— Search the live Tokenz docs (guides + API reference) and return the most relevant pages with snippets and links.get_doc— Fetch the full clean Markdown for a documentation page by its path, e.g.list_docs— List every documentation page (title, description, path) so you can pick what to read.list_test_cards— Return the test card numbers and how to force success/decline in test mode.get_openapi— Return the OpenAPI (v2) spec for a Tokenz API service.verify_webhook_signature— Check a `Tokenz-Signature` header against the raw request body using the endpoint signing secret.check_auth— Diagnose the MCP connection before (or after a failure with) the test-action tools: whether a key was detected on the connection, whether it is a test key, whether test actions are enabled, and whether the key actually authenticates against the Tokenz API.create_test_checkout_session— Create a Tokenz TEST-mode Checkout Session and return the hosted checkout URL.