Skip to main content
Glama

t2000_history

View recent transactions including sends, saves, borrows, swaps, and investments to generate activity summaries and weekly recaps.

Instructions

View recent transactions (sends, saves, borrows, swaps, investments). Use for activity summaries and weekly recaps.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of transactions to return (default: 20)

Implementation Reference

  • The t2000_history tool is defined and implemented here, using `agent.history` to fetch the data.
    server.tool(
      't2000_history',
      'View recent transactions (sends, saves, borrows, swaps, investments). Use for activity summaries and weekly recaps.',
      { limit: z.number().optional().describe('Number of transactions to return (default: 20)') },
      async ({ limit }) => {
        try {
          const result = await agent.history({ limit });
          return { content: [{ type: 'text', text: JSON.stringify(result) }] };
        } catch (err) {
          return errorResult(err);
        }
      },
    );

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/mission69b/t2000'

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