DocsMint for AI agents

Connect your knowledge to MCP

Search, read, create, organize and update persistent knowledge with hybrid retrieval, reranking and GraphRAG.

DocsMint Cloud Recommended

No self-hosted server required. Use your existing DocsMint account or create one. Hosted MCP requires an Advanced plan; compare plans.

Sign in → choose workspace → connect credential → configure client → verify.

Checking your account…

Add a remote MCP server in your client settings. Select Streamable HTTP. If OAuth is supported, use the sign-in prompt; otherwise replace the placeholder below with your credential.

{
  "mcpServers": {
    "docsmint": {
      "url": "https://docsmint.com/mcp",
      "headers": {
        "Authorization": "Bearer <your-credential>",
        "X-Docsmint-Workspace": "<workspace-slug>"
      }
    }
  }
}

4. Ask your client to list DocsMint documents. The verification button tests DocsMint from this browser; a successful client tool call confirms your client is connected.

Self-hosted DocsMint Advanced · OSS alternative

Run your own DocsMint deployment, create an API key in its browser UI, and connect with the npm stdio bridge. Your server URL and credential belong to your deployment.

  1. Deploy DocsMint OSS.
  2. Create a scoped API key in your self-hosted workspace.
  3. Set HIAI_DOCS_URL and HIAI_DOCS_API_KEY.
  4. Start docsmint-mcp through your client's stdio configuration.
{
  "mcpServers": {
    "docsmint": {
      "command": "npx",
      "args": [
        "-y",
        "--package",
        "@hiai-gg/docsmint@0.8.7",
        "docsmint-mcp"
      ],
      "env": {
        "HIAI_DOCS_URL": "https://your-docsmint.example",
        "HIAI_DOCS_API_KEY": "<your-self-hosted-api-key>"
      }
    }
  }
}
Full MCP documentation and tool inventory