providers
List configured payment providers and their capabilities to manage transaction routing and processing within the Junto MCP server.
Instructions
List configured payment providers and their capabilities.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:425-434 (handler)The tool "providers" is defined and implemented in src/index.ts. It iterates over the configured providers map and returns their information via jsonResult.
// Tool: providers server.tool( "providers", "List configured payment providers and their capabilities.", {}, async () => { const list = Array.from(providers.values()).map((p) => p.info()); return jsonResult(list); } );