StruXure NorCal Knowledge Base
Public remote MCP server for StruXure NorCal pergola services and FAQs.
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": {
"struxure-knowledge-base": {
"url": "https://walnbot.struxurenorcal.com/mcp/struxure-knowledge-base"
}
}
}Remote endpoints
https://walnbot.struxurenorcal.com/mcp/struxure-knowledge-basestreamable-httpWhat it can do
Tool inventory
Tools (2)
🟢services(query, topK)
Find service offerings relevant to a natural-language query. Returns the closest matches, not a complete list — use `list_services` for the complete catalogue.
Input Schema
{
"type": "object",
"properties": {
"query": {
"description": "What the user wants — describe the service they're looking for.",
"type": "string"
},
"topK": {
"description": "Maximum number of results to return (1–20).",
"type": "integer",
"default": 8
}
},
"required": [
"query"
]
}⚪faq(query, topK)
Answer a question from this knowledge base's FAQ content. Returns the closest-matching FAQ passages, not extracted answers — for a customer reporting that something is broken, `troubleshoot` returns the resolution itself.
Input Schema
{
"type": "object",
"properties": {
"query": {
"description": "The question to answer from the FAQ.",
"type": "string"
},
"topK": {
"description": "Maximum number of results to return (1–20).",
"type": "integer",
"default": 8
}
},
"required": [
"query"
]
}Community
Evidence