get_profile
Retrieve your team's profile details and information from the Trading Simulator MCP Server to streamline team management and trading operations.
Instructions
Get your team's profile information
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:437-443 (handler)Handler for the 'get_profile' tool that fetches the profile via tradingClient and returns it as JSON text.case "get_profile": { const response = await tradingClient.getProfile(); return { content: [{ type: "text", text: JSON.stringify(response, null, 2) }], isError: false }; }
- src/index.ts:41-50 (schema)Schema definition for the 'get_profile' tool, including name, description, and empty input schema object.{ name: "get_profile", description: "Get your team's profile information", inputSchema: { type: "object", properties: {}, additionalProperties: false, $schema: "http://json-schema.org/draft-07/schema#" } },
- src/index.ts:411-415 (registration)Registration of the tools list, which includes the 'get_profile' tool schema.server.setRequestHandler(ListToolsRequestSchema, async () => { return { tools: TRADING_SIM_TOOLS }; });