Skip to content
Scalekit Docs

DeepWiki

Vendor MCP3 toolsNo AuthDeveloper Tools

Connect to DeepWiki MCP to ask questions about and read AI-generated documentation for public GitHub repositories directly from your AI workflows.

DeepWiki connector

  1. Terminal window
    npm install @scalekit-sdk/node

    Full SDK reference: Node.js | Python

  2. Add your Scalekit credentials to your .env file. Find values in app.scalekit.com > Developers > API Credentials.

    .env
    SCALEKIT_ENVIRONMENT_URL=<your-environment-url>
    SCALEKIT_CLIENT_ID=<your-client-id>
    SCALEKIT_CLIENT_SECRET=<your-client-secret>

Connect this agent connector to let your agent:

  • Read wiki structure, wiki contents — Get a list of documentation topics for a GitHub repository
  • Question ask — Ask any question about a GitHub repository and get an AI-powered, context-grounded response

Use the exact tool names from the Tool list below when you call execute_tool. If you’re not sure which name to use, list the tools available for the current user first.

deepwikimcp_ask_question#Ask any question about a GitHub repository and get an AI-powered, context-grounded response.4 params

Ask any question about a GitHub repository and get an AI-powered, context-grounded response.

NameTypeRequiredDescription
questionstringrequiredThe question to ask about the repository.
repoNamestringrequiredGitHub repository or list of repositories (max 10) in owner/repo format.
schema_versionstringoptionalOptional schema version to use for tool execution
tool_versionstringoptionalOptional tool version to use for tool execution
deepwikimcp_read_wiki_contents#View documentation about a GitHub repository.3 params

View documentation about a GitHub repository.

NameTypeRequiredDescription
repoNamestringrequiredGitHub repository in owner/repo format (e.g. "facebook/react").
schema_versionstringoptionalOptional schema version to use for tool execution
tool_versionstringoptionalOptional tool version to use for tool execution
deepwikimcp_read_wiki_structure#Get a list of documentation topics for a GitHub repository.3 params

Get a list of documentation topics for a GitHub repository.

NameTypeRequiredDescription
repoNamestringrequiredGitHub repository in owner/repo format (e.g. "facebook/react").
schema_versionstringoptionalOptional schema version to use for tool execution
tool_versionstringoptionalOptional tool version to use for tool execution