MkDocs-Material documentation site for RingCentral's MCP servers.
# Install dependencies
pip install -r requirements.txt
# Serve with live reload
mkdocs serve
# Build static site
mkdocs buildThe dev server runs at http://127.0.0.1:8000 by default.
mkdocs gh-deployrc-mcp-docs/
├── mkdocs.yml # Site config, nav, theme
├── requirements.txt
└── docs/
├── index.md # Home page
├── changelog.md
├── stylesheets/
│ └── extra.css # RingCentral brand overrides
├── servers/
│ ├── index.md # Server registry overview
│ ├── rc-labs-mcp.md
│ └── app-connect.md
├── tools/
│ ├── app-connect/
│ │ ├── get-session-info.md
│ │ ├── get-public-connectors.md
│ │ ├── get-help.md
│ │ ├── find-contact-by-name.md
│ │ ├── find-contact-by-phone.md
│ │ ├── create-contact.md
│ │ ├── create-call-log.md
│ │ ├── rc-get-call-logs.md
│ │ └── logout.md
│ └── rc-labs/
│ └── index.md
└── guides/
├── quickstart.md
├── connecting-to-claude.md
├── crm-workflow.md
└── authentication.md
- Add or edit markdown files under
docs/ - Update
nav:inmkdocs.ymlfor new pages - Run
mkdocs serveto preview - Open a PR — the CI pipeline will build and validate
© RingCentral, Inc. All rights reserved.