Logitech Sync MCP
Provides read-only tools for inspecting Logitech Sync meeting-room equipment, including rooms, desks, devices, health, occupancy, coverage, environmental readings, and network information via the Logitech Sync Cloud API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Logitech Sync MCPshow device health summary"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Logitech Sync MCP
A read-only Model Context Protocol server for the Logitech Sync Cloud API. It turns the API's place inventory endpoint into nine focused tools that AI clients can use to inspect rooms, desks, devices, health, occupancy, coverage, environmental readings, and network information.
The server is written in Python, managed with UV, and connects to Logitech Sync with mutual TLS (mTLS). Certificate material stays on the local machine and is never accepted as a tool argument or returned in a tool response.
This is an independent integration and is not affiliated with or endorsed by Logitech. See Notices.
This integration is strictly read-only. Logitech Sync Cloud API 0.1.4 exposes the inventory
operationGET /org/{orgId}/place; this project does not provide write, update, or delete
operations. Authorized administrators can obtain the vendor API documentation from Sync Portal.
Tools
Tool | Purpose |
| Validate the configuration, mTLS connection, license, and organisation access with a minimal request. |
| Read a native page of rooms or desks with explicit projection and cursor controls. |
| Search places and devices by name, ID, serial number, version, contract, IP address, MAC address, or hostname. |
| Summarise places, coverage, device types, models, versions, statuses, and health. |
| Find offline, warning, error, stale, or incomplete devices. |
| Report occupancy, known capacity, utilisation, and over-capacity places. |
| Read and filter available Spot and Rally Board sensor measurements without inventing health thresholds. |
| Audit contracts, licences, and warranties as of a given date. |
| Inventory IP addresses, MAC addresses, hostnames, and wired or Wi-Fi interfaces. |
All tools declare readOnlyHint=true, destructiveHint=false, idempotentHint=true, and openWorldHint=true.
Related MCP server: mcp-airq-cloud
Requirements
A Logitech Sync organisation ID from Sync Portal → Settings → Sync Cloud API
A PEM client certificate and its matching private key
A compatible Logitech Select, Essential, or Sync Plus license
Quick start
git clone https://github.com/bouchecousue/logitech-sync-mcp.git
cd logitech-sync-mcp
cp .env.example .envPlace your credentials at the default paths:
client-certificate/certificate.pem
client-certificate/privateKey.pemSet LOGITECH_SYNC_ORG_ID in .env, restrict the private key, then install and start the server:
chmod 600 client-certificate/privateKey.pem
uv sync --all-groups --no-editable
uv run --no-editable python run_server.pyThe last command starts a stdio MCP server and waits for protocol messages on standard input. See the complete Getting Started guide for certificate setup, client configuration, validation, and troubleshooting.
MCP client configuration
Generic stdio configuration:
{
"mcpServers": {
"logitech-sync": {
"command": "uv",
"args": [
"--directory",
"/path/to/logitech-sync-mcp",
"run",
"--no-editable",
"python",
"/path/to/logitech-sync-mcp/run_server.py"
]
}
}
}The server loads .env from the project directory. Keep credentials out of the MCP client configuration when possible so they are not duplicated across configuration files.
Configuration
Variable | Default | Description |
| none | Required organisation ID from Logitech Sync Portal. |
|
| Documented API server; override only for administration or testing. |
|
| Client certificate path; an absolute path is recommended. |
|
| Private key path; an absolute path is recommended. |
| public CA bundle | Optional custom CA bundle. |
|
| Overall timeout for one attempt. |
|
| Short in-memory cache to reduce quota usage. |
|
| Bounded retries for |
|
| Minimum interval between network attempts. |
|
| Explicitly allow HTTPX environment proxies and CA settings. |
| none | Offline fixture mode for tests and evaluations. |
The organisation ID is a separate value: the server never attempts to infer it from the X.509 certificate subject.
Pagination, quotas, and output
According to the supplied Logitech documentation, the API allows 14,400 requests per day, supports a sustained rate of one request per second, and recommends exponential backoff. The client therefore:
serialises network attempts at a minimum one-second interval;
honours
Retry-Afterwithout retrying early;applies bounded exponential backoff with jitter;
caches pages briefly and caps the cache at 256 pages;
detects cursor loops;
bounds workflows with
page_size,max_pages, andmax_results;exposes
nextResultOffsetwhen an aggregated result has another local page;keeps text and
structuredContentwithin a combined MCP response budget and reports truncation explicitly.
Tools support markdown and json text rendering and return schema-validated structuredContent. An omitted projection preserves Logitech's default projection, while [] requests place IDs only. Device child projections automatically include their required parent projection.
Security model
.env,client-certificate/, private-key formats, caches, and local tooling files are excluded from Git.On POSIX systems, startup fails if the private key is readable by the group or other users.
Server certificate verification remains enabled; the implementation has no
verify=Falsepath.HTTP redirects are disabled so the client certificate is not presented to another host.
PEM data is never exposed through MCP arguments or results.
Application logs never use stdout, which is reserved for the stdio protocol.
API-provided strings are treated as untrusted data and escaped in Markdown output.
The API URL and secret paths are administrator configuration, not model-controlled tool inputs.
Before publishing a fork or opening a pull request, run:
git status --short
git check-ignore -v .env client-certificate/privateKey.pemNever commit an organisation ID, certificate, private key, captured API response, or real inventory fixture.
Development
uv sync --all-groups --no-editable
uv run --no-editable ruff check .
uv run --no-editable ruff format --check .
PYTHONPATH=src uv run --no-sync pytest --cov=logitech_sync_mcp
uv run --no-editable python -m compileall -q srcThe live test consumes API quota and is disabled by default:
LOGITECH_SYNC_RUN_LIVE=1 uv run --no-editable pytest -m live tests/test_live.pyThe deterministic evaluation set uses the versioned synthetic fixture, never a live inventory.
Documentation
License
Released under the MIT License.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bouchecousue/logitech-sync-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server