Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.simplefunctions.dev/llms.txt

Use this file to discover all available pages before exploring further.

Use MCP when the agent already runs inside an MCP-compatible client and should call SimpleFunctions tools directly.

Claude Code

claude mcp add simplefunctions --url https://simplefunctions.dev/api/mcp/mcp
Then ask Claude Code to call SimpleFunctions tools for market search, world state, screen, inspect, query-gov, or query-econ.

Remote transport

GET /api/mcp/{transport}
POST /api/mcp/{transport}
The transport exposes SimpleFunctions tools over MCP. Public tools work without user credentials. Account, portfolio, intent, and exchange-sensitive tools require auth.

What agents can call

JobTool family
Search marketsquery, scan, screen, new markets.
Read world stateworld snapshot, world delta, inspect.
Pull source contextgovernment, economic, traditional-market anchors.
Evaluate thesesthesis context, signals, evaluations.
Read account stateauthenticated theses, intents, portfolio.
Route workflowsintents and runtime tools when authorized.

Tool discovery

curl "https://simplefunctions.dev/api/tools"
Local CLI equivalent:
sf describe --all --json
sf tools search "world delta" --json
Use the CLI manifest when the agent is running on the user’s machine. Use /api/tools and MCP when the agent is running inside a remote client.

Suggested first calls

world_state
query("Fed rate cut")
inspect_ticker("KXRATECUT-26DEC31")
query_econ("unemployment rate")
query_gov("SAVE Act")
Start with read-only tools. Require explicit authorization before using write, runtime, or trade tools.