HomeSearch & Research › DocsMint

DocsMint

Cloud or self-hosted knowledge for AI agents: hybrid search, reranking, GraphRAG, scoped MCP tools.

TypeScript Remote
★ 55 stars Last pushed 2026-09-23 License: Apache-2.0

Connect

Review any command before running it. Package names and URLs come from the server's own registry entry.

Remote (streamable-http)

https://docsmint.com/mcp Requires auth (checked 2026-09-24)

Claude Code:

claude mcp add --transport http docsmint https://docsmint.com/mcp --header "Authorization: <YOUR_VALUE>" --header "X-Docsmint-Workspace: <YOUR_VALUE>"

Or add to your MCP client config:

{
  "mcpServers": {
    "docsmint": {
      "url": "https://docsmint.com/mcp",
      "headers": {
        "Authorization": "<YOUR_VALUE>",
        "X-Docsmint-Workspace": "<YOUR_VALUE>"
      }
    }
  }
}
  • Authorization required secret — DocsMint Cloud remote at https://docsmint.com/mcp; no self-hosted server is required. Discovery advertises /oauth/authorize, /oauth/token, and active DCR at https://docsmint.com/oauth/register. Metadata supports the code response type, authorization_code grant only, no token-endpoint client authentication, and PKCE S256; CIMD is not part of the contract. Access tokens last one hour, have no refresh token, and are bound by browser consent to a workspace, optional category, and requested scopes. API-key clients can use Authorization: Bearer <key> with a workspace-bound or category-scoped credential created at https://docsmint.com/mcp/connect?source=mcp_registry. Credential management requires a browser session. For self-hosting, use the stdio package with your own API and API key; it does not install the Cloud OAuth server.
  • X-Docsmint-Workspace — Canonical workspace slug. Bound workspace keys may omit this header.

Package (npm 0.8.8)

npx -y @hiai-gg/[email protected]

Or add to your MCP client config:

{
  "mcpServers": {
    "docsmint": {
      "command": "npx",
      "args": [
        "-y",
        "@hiai-gg/[email protected]"
      ],
      "env": {
        "HIAI_DOCS_URL": "<YOUR_VALUE>",
        "HIAI_DOCS_API_KEY": "<YOUR_VALUE>"
      }
    }
  }
}
  • HIAI_DOCS_URL — Base URL of your running self-hosted DocsMint REST API, for example http://localhost:50700. For Cloud MCP, use the Streamable HTTP remote below.
  • HIAI_DOCS_API_KEY required secret — Create an API key in your self-hosted DocsMint browser UI. The stdio bridge uses it only with your own API; it does not install the Cloud OAuth server. Prefer workspace-bound or category-scoped credentials.

This server takes extra arguments — see its repository.

Related servers

Data from the Official MCP Registry