← whatcanido.dev

INDIVIDUAL MCP TOOL

invoke_capability

Execute a capability call against a chosen provider with typed inputs.

whatcanido.devnone authenticationAvailability not checked

Input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description suggests code or command execution.

Parent endpoint

whatcanido.dev

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.
  • get_provider_actions — Return the action types a provider exposes and the canonical input schema for each (required fields, optional fields, types, descriptions).
  • 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.