get_funding_rounds
Retrieve funding round details for a specific company using the Crunchbase MCP Server. Input a company name or ID to access funding information and limit results as needed.
Instructions
Get funding rounds for a specific company
Input Schema
Name | Required | Description | Default |
---|---|---|---|
company_name_or_id | Yes | Company name or UUID | |
limit | No | Maximum number of results to return (default: 10) |
Input Schema (JSON Schema)
{
"properties": {
"company_name_or_id": {
"description": "Company name or UUID",
"type": "string"
},
"limit": {
"description": "Maximum number of results to return (default: 10)",
"type": "number"
}
},
"required": [
"company_name_or_id"
],
"type": "object"
}