← WebMCP Directory

Tool tree

isainative.dev

liveDeveloper Tools
https://isainative.dev/
Scan public GitHub repositories for prompts, instructions, agents, skills, hooks, and MCP setup across GitHub Copilot, Claude Code, and OpenAI Codex.
Explore capabilities
list_available_toolsAnswer

List the WebMCP tools this page exposes to agents, including each tool's name, description, input schema, and result schema. Call it to discover the available actions before invoking them.

View tool JSON
{
  "name": "list_available_tools",
  "kind": "answer",
  "impl": "imperative",
  "description": "List the WebMCP tools this page exposes to agents, including each tool's name, description, input schema, and result schema. Call it to discover the available actions before invoking them.",
  "inputSchema": {
    "type": "object",
    "additionalProperties": false,
    "properties": {}
  }
}
scan_repository_formAction

Scan a GitHub repository for AI-native development primitives by submitting the page form and updating the visible report. Accepts owner/repository or a full GitHub URL.

View tool JSON
{
  "name": "scan_repository_form",
  "kind": "act",
  "impl": "declarative",
  "description": "Scan a GitHub repository for AI-native development primitives by submitting the page form and updating the visible report. Accepts owner/repository or a full GitHub URL.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "repo_url": {
        "type": "string",
        "description": "owner/repository or full URL"
      }
    },
    "required": [
      "repo_url"
    ]
  }
}