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_mcp_servers
answer
imperative
Search Influzer's MCP server directory (backend MCP integrations, not WebMCP). Returns matching servers with categories and tool names.
Page: /mcp
Input schema
| Property | Type | Required | Description |
|---|---|---|---|
q |
string | yes | Free-text query matching server name, slug, description, or category. |
scope |
string | no | Search Top 100 (default) or the full catalog. |
limit |
integer | no | Max results (1–25). Defaults to 10. |
Raw JSON schema
{
"type": "object",
"properties": {
"q": {
"type": "string",
"description": "Free-text query matching server name, slug, description, or category."
},
"scope": {
"type": "string",
"enum": [
"top",
"all"
],
"description": "Search Top 100 (default) or the full catalog."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 25,
"description": "Max results (1–25). Defaults to 10."
}
},
"required": [
"q"
],
"additionalProperties": false
}