← flaim.app

INDIVIDUAL MCP TOOL

get_transactions

Get recent league transactions including adds, drops, waivers, and trades.

flaim.appnone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent endpoint

flaim.app

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.fantasy-mcp]
url = "https://api.flaim.app/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "fantasy-mcp": {
      "type": "http",
      "url": "https://api.flaim.app/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: fantasy-mcp
Remote MCP URL: https://api.flaim.app/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "fantasy-mcp": {
      "url": "https://api.flaim.app/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "fantasy-mcp": {
      "type": "http",
      "url": "https://api.flaim.app/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "fantasy-mcp",
  "transport": "streamable-http",
  "url": "https://api.flaim.app/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • get_user_session — Use this alone for user-specific connection, league, or account-status questions, and use it as the first data tool when a request needs the user's connected fantasy league data.
  • refresh_leagues — Refresh connected fantasy leagues by asking Flaim to rediscover leagues through connected ESPN, Yahoo, and Sleeper accounts.
  • get_ancient_history — Use this only after get_user_session, and only when the user is clearly asking about a non-current season or an inactive league.
  • get_league_info — For a selected active league, call this immediately after get_user_session and before the requested standings, matchup, roster, free-agent, player, or transaction tool.
  • get_standings — Get season standings and outcome snapshot; includes verified season-outcome fields when available.
  • get_matchups — Get matchups/scoreboard for a specific week or the current week.
  • get_roster — Get roster details for a specific team — current by default, historical on request.
  • get_free_agents — Get players available to acquire in the specified fantasy league, optionally filtered by position.