DocsMint for AI agents
Connect your knowledge to MCP
Search, read, create, organize and update persistent knowledge with hybrid retrieval, reranking and GraphRAG.
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.
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.
- Deploy DocsMint OSS.
- Create a scoped API key in your self-hosted workspace.
- Set
HIAI_DOCS_URLandHIAI_DOCS_API_KEY. - Start
docsmint-mcpthrough 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>"
}
}
}
}