tags
Pack: funcheap · Endpoint: https://gateway.pipeworx.io/funcheap/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/tags for the schema, then POST the same URL with its arguments for the data.
List Funcheap event facet tags (slug, name, count). These are the filterable facets like “free”, “live-music”, “comedy”, neighborhoods. Sorted by usage.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Optional search to find matching tags, e.g. “music”. |
per_page | number | no | How many to return (1-${MAX_PER_PAGE}, default 40). |
Example call
Arguments
{
"query": "music"
}
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":"tags","arguments":{"query":"music"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tags', {
"query": "music"
});
More examples
{
"per_page": 25
}
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.