Skip to main content
Wrap a small set of Fundable REST API operations as typed tools so an AI agent can search startup and funding data without handling raw credentials or inventing query shapes.
This guide covers REST API tool integration. Dedicated Fundable MCP setup will be documented separately.

Start with one narrow tool

A useful first tool is find_funded_companies. Its server-side implementation calls POST /companies and exposes only the filters your agent needs.
Tool schema
The server translates those arguments into the API request.

Resolve names before filtering

Do not let the model guess location or industry permalinks. Give the agent separate tools backed by GET /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_size and 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.
Last modified on July 27, 2026