Handsontable Docs MCP Server
Semantic search over Handsontable and HyperFormula docs, API reference, release notes, and issues.
Should I use this
Quality & Safety
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"docs": {
"url": "https://docs-assistant.handsontable.com/mcp"
}
}
}Remote endpoints
https://docs-assistant.handsontable.com/mcpstreamable-httpWhat it can do
Tool inventory
Tools (1)
🟢search_docs(query, limit, ht_version, hf_version)
Semantic (meaning-based) search over the Handsontable + HyperFormula documentation knowledge base — docs guides, code recipes, blog posts, release notes and GitHub issues. Returns ranked page-level snippets with title, content, relevance score, url and provenance (framework, kind, htVersion/hfVersion). `url` is null when no public page exists (recipes, releases, issues) — never fabricate a link. Scores are rank-only. Guides repeat once per framework (javascript/react/angular/vue) — dedupe on url/title when you need distinct documents. Pass ht_version/hf_version (your installed releases) to get an explicit coverage note when the KB documents a different version.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 1,
"maxLength": 1000,
"description": "Search terms or a natural-language question."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 20,
"description": "Max results (default 8, max 20)."
},
"ht_version": {
"type": "string",
"maxLength": 32,
"description": "Your installed Handsontable version (e.g. \"18.1.0\") — adds an explicit coverage note when the KB documents a different minor."
},
"hf_version": {
"type": "string",
"maxLength": 32,
"description": "Your installed HyperFormula version (e.g. \"3.4.0\") — same coverage-note semantics."
}
},
"required": [
"query"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Community
Evidence