Tool tree
toggle_plan_favoriteAction
Adds or removes a plan from the user's favorites. If the plan is already a favorite it will be removed; otherwise it will be added. Works on any page that shows plan cards (gallery or calendar view).
View tool JSON
{
"name": "toggle_plan_favorite",
"kind": "act",
"impl": "imperative",
"description": "Adds or removes a plan from the user's favorites. If the plan is already a favorite it will be removed; otherwise it will be added. Works on any page that shows plan cards (gallery or calendar view).",
"inputSchema": {
"additionalProperties": false,
"properties": {
"planId": {
"description": "The numeric plan ID to add or remove from favorites.",
"minimum": 1,
"type": "integer"
}
},
"required": [
"planId"
],
"type": "object"
},
"page": "/en"
}search_plansAnswer
Searches for plans in the current city. Returns a list of matching events with their IDs, names, URLs, and dates. Use navigate_to_plan to open a specific result.
View tool JSON
{
"name": "search_plans",
"kind": "answer",
"impl": "imperative",
"description": "Searches for plans in the current city. Returns a list of matching events with their IDs, names, URLs, and dates. Use navigate_to_plan to open a specific result.",
"inputSchema": {
"additionalProperties": false,
"properties": {
"query": {
"description": "Search keywords, e.g. \"concert\", \"jazz\", \"halloween\".",
"minLength": 1,
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
},
"page": "/en"
}home_list_citiesAnswer
Returns the list of top cities available on Fever, each with its name, slug, country, and direct feed URL. Call this to discover which cities a user can navigate to.
View tool JSON
{
"name": "home_list_cities",
"kind": "answer",
"impl": "imperative",
"description": "Returns the list of top cities available on Fever, each with its name, slug, country, and direct feed URL. Call this to discover which cities a user can navigate to.",
"inputSchema": {
"additionalProperties": false,
"type": "object"
},
"page": "/en"
}home_navigate_to_cityAction
Navigates the browser to the event feed for the given city slug. Use slugs returned by home_list_cities. Navigation is blocked if the target URL leaves the current domain.
View tool JSON
{
"name": "home_navigate_to_city",
"kind": "act",
"impl": "imperative",
"description": "Navigates the browser to the event feed for the given city slug. Use slugs returned by home_list_cities. Navigation is blocked if the target URL leaves the current domain.",
"inputSchema": {
"additionalProperties": false,
"properties": {
"citySlug": {
"description": "The city slug to navigate to, as returned by home_list_cities.",
"minLength": 1,
"type": "string"
}
},
"required": [
"citySlug"
],
"type": "object"
},
"page": "/en"
}webmcp_get_page_summaryAnswer
Returns a high-level summary of the current page and the list of available tools. Call this first on any page to understand context and capabilities.
View tool JSON
{
"name": "webmcp_get_page_summary",
"kind": "answer",
"impl": "imperative",
"description": "Returns a high-level summary of the current page and the list of available tools. Call this first on any page to understand context and capabilities.",
"inputSchema": {
"additionalProperties": false,
"type": "object"
},
"page": "/en"
}