ca_get_grant
Pack: ca-grants · Endpoint: https://gateway.pipeworx.io/ca-grants/mcp
Fetch the complete detail record for one California state grant opportunity by its California Grants Portal ID (PortalID). Returns the full narrative purpose and description, eligible applicant types and eligibility notes, geography served, funding source, whether matching funds are required, estimated funds available and per-award amounts, funding method (reimbursement vs advance), the open date and application deadline, whether electronic submission is accepted, agency contact information, and links to the official grant page and agency site. Use after ca_search_grants to read the full terms of a specific California state grant.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
portal_id | string,number | yes | The California Grants Portal ID from a search result, e.g. “189801”. |
Example call
Arguments
{
"portal_id": "189801"
}
curl
curl -X POST https://gateway.pipeworx.io/ca-grants/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ca_get_grant","arguments":{"portal_id":"189801"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ca_get_grant', {
"portal_id": "189801"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ca-grants": {
"url": "https://gateway.pipeworx.io/ca-grants/mcp"
}
}
}
See Getting Started for client-specific install steps.