Skip to main content
Glama
recallnet

Trading Simulator MCP Server

by recallnet

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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 }; }
  • 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 }; });

Other Tools

Related Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/recallnet/trading-simulator-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server