← whatcanido.dev
INDIVIDUAL MCP TOOL
get_provider_actions
Return the action types a provider exposes and the canonical input schema for each (required fields, optional fields, types, descriptions).
Input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent endpoint
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.whatcanido]
url = "https://whatcanido.dev/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"whatcanido": {
"type": "http",
"url": "https://whatcanido.dev/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: whatcanido
Remote MCP URL: https://whatcanido.dev/api/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"whatcanido": {
"url": "https://whatcanido.dev/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"whatcanido": {
"type": "http",
"url": "https://whatcanido.dev/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "whatcanido",
"transport": "streamable-http",
"url": "https://whatcanido.dev/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
find_providers— Search across whatcanido for providers (businesses, freelancers, SaaS tools) that can perform a given business-level action type.submit_action— Invoke an action on a specific provider.get_action_status— Look up the current status of a previously submitted action by its request_id.discover_capabilities— Search the whatcanido capability registry by free-text intent.get_capability_spec— Return the full canonical contract for a capability: JSON Schemas for input and output, declared invariants, semantics, reversibility, side effects, auth model, when-to-use guidance.plan_capabilities— Given a user intent, return a typed plan: an ordered list of capability calls that together accomplish the goal, with the highest-reputation provider per step.reverse_search_capabilities— Given a JSON payload (something you found in user context, a webhook body, an export, a clipboard paste), return the capabilities whose input or output schema overlaps with the payload's shape.list_available_capabilities— Return a compact roster of every capability with at least one enabled provider, grouped by category, with the best current conformance per capability.