about
Retrieve platform information, pricing details, usage statistics, or documentation for the MCP Analytics server's data analysis and reporting capabilities.
Instructions
Get platform info, pricing, usage stats, or documentation.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| topic | Yes | Topic: platform, pricing, current_usage, manual, or a docs section |
Implementation Reference
- src/index.js:105-118 (handler)The tool execution is dynamic: it proxies the tool call (including "about") to a remote server using `remoteClient.callTool`. There is no local hardcoded implementation for "about"; it is retrieved from the remote catalog.
server.setRequestHandler(CallToolRequestSchema, async (request) => { try { const result = await remoteClient.callTool({ name: request.params.name, arguments: request.params.arguments || {}, }); return result; } catch (err) { return { content: [{ type: "text", text: `Error: ${err.message}` }], isError: true, }; } });