This guide covers REST API tool integration. Dedicated Fundable MCP setup will be
documented separately.
Start with one narrow tool
A useful first tool isfind_funded_companies. Its server-side implementation calls
POST /companies and exposes only the filters your agent needs.
Tool schema
Resolve names before filtering
Do not let the model guess location or industry permalinks. Give the agent separate tools backed byGET /location/search and
GET /industry/search, then pass the returned
permalinks into find_funded_companies.
Round types use fixed enum values such as SEED and SERIES_A. See
Filtering and Permalinks for the complete rules.
Add guardrails on the server
- Keep the Fundable API key server-side and out of model context.
- Allowlist filters and round-type enum values.
- Cap
page_sizeand the number of automatic pagination requests. - Return concise records to the model, not an unbounded raw payload.
- Log tool arguments, response status, credits used, and destination user.
- Require confirmation before the agent writes to a CRM or sends outreach.
Expand by user intent
Add tools only when the agent needs them:
Keeping each tool narrow produces more predictable calls, clearer permissions, and
better audit logs than exposing the entire API through one generic request tool.

