connect_info
Retrieve environment details including accessible wallets, policies, and capabilities to understand available crypto operations before proceeding.
Instructions
Get self-discovery info: accessible wallets, policies, capabilities, and AI-ready prompt. Call this first to understand your environment.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- Tool registration and handler for connect_info which wraps the GET /v1/connect-info endpoint.
export function registerConnectInfo(server: McpServer, apiClient: ApiClient): void { server.tool( 'connect_info', 'Get self-discovery info: accessible wallets, policies, capabilities, and AI-ready prompt. Call this first to understand your environment.', {}, async () => { const result = await apiClient.get('/v1/connect-info'); return toToolResult(result); }, ); }