From 84d0738c39ac06f790d3dbdc357864fb94dd7e7e Mon Sep 17 00:00:00 2001 From: mindnmachine Date: Tue, 30 Dec 2025 01:18:54 -0800 Subject: [PATCH] Create rtbrick-docs.json for documentation access Added a JSON configuration file for RtBrick documentation including metadata, installation instructions, and available tools. --- rtbrick-docs.json | 52 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 rtbrick-docs.json diff --git a/rtbrick-docs.json b/rtbrick-docs.json new file mode 100644 index 000000000..c36bf8414 --- /dev/null +++ b/rtbrick-docs.json @@ -0,0 +1,52 @@ +{ + "name": "rtbrick-docs", + "displayName": "RtBrick Documentation", + "description": "Access and search RtBrick's technical documentation including networking configuration guides, API references, and technical specifications", + "icon": "https://www.rtbrick.com/favicon.ico", + "author": { + "name": "Pravin Bhandarkar", + "url": "https://github.com/rtbrick" + }, + "sourceUrl": "https://github.com/yourusername/rtb-doc-mcp-server", + "license": "MIT", + "runtime": "python", + "categories": [ + "documentation", + "search", + "enterprise" + ], + "tags": [ + "networking", + "documentation", + "rtbrick", + "technical-docs", + "search" + ], + "installation": { + "pip": "rtb-doc-mcp-server" + }, + "configuration": { + "type": "object", + "properties": { + "config_path": { + "type": "string", + "description": "Path to config.json file", + "required": false + } + } + }, + "tools": [ + { + "name": "search_documentation", + "description": "Search through RtBrick documentation with keywords" + }, + { + "name": "get_document", + "description": "Retrieve full content of a specific documentation file" + }, + { + "name": "list_all_documents", + "description": "List all available documentation files" + } + ] +}