ca_grants_closing_soon
Pack: ca-grants · Endpoint: https://gateway.pipeworx.io/ca-grants/mcp
List currently-open State of California grant opportunities whose application deadline falls within the next N days, soonest deadline first, so an applicant can see what is about to expire. Returns each grant with its days remaining, deadline timestamp, administering California state department, eligible applicant types, estimated funding available, and official link. Also reports separately how many active grants accept applications on a rolling “Ongoing” basis with no fixed due date, and how many rows carried an unreadable deadline. Answers “which California state grants close this month”, “urgent CA grant deadlines”, “what should I apply for before it closes”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
days | number,string | no | Deadline window in days from today (default 30, max 365). |
category | string | no | Optional: restrict to one grant category, case-insensitive, e.g. “Environment & Water”. |
applicant_type | string | no | Optional: restrict to one eligible-applicant type, case-insensitive, e.g. “Nonprofit”, “Tribal Government”. |
limit | number,string | no | Max records to return (default 25, max 100). |
Example call
Arguments
{
"days": 30,
"limit": 3
}
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_grants_closing_soon","arguments":{"days":30,"limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ca_grants_closing_soon', {
"days": 30,
"limit": 3
});
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.