MCP server to parse open documentation on Rtbrick site and provide responses
- Review Rtbrick's open documentation for technology and configuration
- Rtbrick documentation for reference design and topology
Add to your claude_desktop_config.json:
```json { "mcpServers": { "rtbrick-docs": { "command": "python3", "args": ["-m", "mcpserver_opt.py"], "env": { "CONFIG_PATH": "/path/to/your/config.json" } } } } ```
```json { "mcpServers": { "rtbrick-docs": { "command": "python3", "args": ["/path/to/rtb-doc-mcp-server/src/rtb_doc_mcp_server/mcpserveri_opt.py"], "env": { "CONFIG_PATH": "/path/to/your/config.json" } } } } ```
After configuration, the server will be available in Claude Desktop. You can use:
Rtbrick has a cloud native operating system known as RBFS that can be deployed at the network edge for BNG/Business services, Peering, CGNAT, FTTH deployment environments and DCI
- Rtb document server parses the available open documentation on the website to provide specific information about the technology, Rtbrick's implementation and feature set
- Provides responses about reference designs for the various use cases above and specific configuration that can ease validation, testing and eventually deployment of the features
- Provides information on the ODM platform that Rtbrick supports as well as optical interfaces
- Python 3.80 or higher
- pip3
```bash pip3 install rtb-doc-mcp-server ```
```bash pip3 install git+https://github.com/rtbrick/rtb-doc-mcp-server.git ```
```bash git clone https://github.com/yourusername/rtb-doc-mcp-server.git cd rtb-doc-mcp-server pip3 install -e . ```
-
Copy the example configuration file: ```bash cp config.example.json config.json ```
-
Edit
config.jsonwith your settings: ```json
``` User: [Example of how to use your server] ```
```bash
git clone https://github.com/rtbrick/rtb-doc-mcp-server.git cd rtb-doc-mcp-server
python3 -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
pipi3 install -e ".[dev]"
pytest ```
None
MIT
Pull requests are welcome! Please read CONTRIBUTING.md for details.