influzer.ai
Influzer.ai
live
Influzer verified
Directories & Discovery
8 tools
imperative implementation
Influzer.ai exposes its MCP and WebMCP directories as browser-native WebMCP tools so agents can search sites, inspect schemas, and navigate without scraping the UI.
First seen 2026-08-17 · Last seen 2026-08-17 · Source: influzer.ai
Answer 7 · Act 1 · Transact 0 · Score: Not yet scored
Tool inspector
search_webmcp_sites
answer
imperative
Search websites in the Influzer WebMCP Directory by keyword, category, site type, or verification status. Returns matching hosts with tool counts.
Page: /webmcp
Input schema
| Property | Type | Required | Description |
|---|---|---|---|
q |
string | no | Free-text query matching host, name, description, or category. |
category |
string | no | Category slug or name (e.g. developer-tools). |
type |
string | no | Filter by site type. Defaults to all. |
verified |
string | no | Filter by verification status. Defaults to any. |
limit |
integer | no | Max results to return (1–25). Defaults to 10. |
Raw JSON schema
{
"type": "object",
"properties": {
"q": {
"type": "string",
"description": "Free-text query matching host, name, description, or category."
},
"category": {
"type": "string",
"description": "Category slug or name (e.g. developer-tools)."
},
"type": {
"type": "string",
"enum": [
"live",
"demo",
"all"
],
"description": "Filter by site type. Defaults to all."
},
"verified": {
"type": "string",
"enum": [
"verified",
"unverified",
"any"
],
"description": "Filter by verification status. Defaults to any."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 25,
"description": "Max results to return (1–25). Defaults to 10."
}
},
"additionalProperties": false
}