search_events
Pack: funcheap · Endpoint: https://gateway.pipeworx.io/funcheap/mcp
Search SF Bay Area free & cheap events/deals from Funcheap. Filter by keyword, facet tags (e.g. “free”, “live-music”, “comedy”, “art”, “family-friendly”, “food”), and a published-date window. Returns newest first by default. Use the tags/categories tools to discover facet slugs.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Full-text keyword search, e.g. “outdoor movie” or “jazz”. |
tags | string | no | Comma-separated tag slugs to require, e.g. “free,live-music”. Discover via the tags tool. |
categories | string | no | Comma-separated category slugs, e.g. “san-francisco,fairs-festivals”. |
after | string | no | Only posts published on/after this ISO date, e.g. “2026-06-19” or “2026-06-19T00:00:00”. |
before | string | no | Only posts published on/before this ISO date. |
per_page | number | no | Results per page (1-${MAX_PER_PAGE}, default 20). |
page | number | no | Page number (default 1). |
orderby | string | no | Sort order (default “date” = newest first; “relevance” requires query). |
Example call
Arguments
{
"query": "outdoor movie",
"tags": "free,outdoor",
"after": "2026-06-19"
}
curl
curl -X POST https://gateway.pipeworx.io/funcheap/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_events","arguments":{"query":"outdoor movie","tags":"free,outdoor","after":"2026-06-19"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_events', {
"query": "outdoor movie",
"tags": "free,outdoor",
"after": "2026-06-19"
});
More examples
{
"query": "jazz",
"categories": "san-francisco",
"orderby": "relevance",
"per_page": 10
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"funcheap": {
"url": "https://gateway.pipeworx.io/funcheap/mcp"
}
}
}
See Getting Started for client-specific install steps.