{"id":47949154,"url":"https://github.com/openremote/service-mcp-server","last_synced_at":"2026-04-04T08:56:33.129Z","repository":{"id":337912007,"uuid":"1113768527","full_name":"openremote/service-mcp-server","owner":"openremote","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-12T10:24:52.000Z","size":30,"stargazers_count":0,"open_issues_count":1,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-04T08:56:28.126Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openremote.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-10T12:44:55.000Z","updated_at":"2026-01-12T10:24:56.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/openremote/service-mcp-server","commit_stats":null,"previous_names":["openremote/service-mcp-server"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/openremote/service-mcp-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openremote%2Fservice-mcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openremote%2Fservice-mcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openremote%2Fservice-mcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openremote%2Fservice-mcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openremote","download_url":"https://codeload.github.com/openremote/service-mcp-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openremote%2Fservice-mcp-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31393781,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T04:26:24.776Z","status":"ssl_error","status_checked_at":"2026-04-04T04:23:34.147Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-04T08:56:32.649Z","updated_at":"2026-04-04T08:56:33.116Z","avatar_url":"https://github.com/openremote.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OpenRemote MCP Server Service\nMCP Server for your OpenRemote instance.\n\n\n\n## Quick start guide\nThis guide assumes you already have an OpenRemote instance running.\n\n1. **Create service user**\n\n   In your OpenRemote instance, create a new service user (`settings \u003e users \u003e SERVICE USERS \u003e ADD USER`) and give it the permissions you want to have.\n   The MCP server will auto discover the tools that are available.\n\n   _Note: The service user is required to have the `read:services` \u0026 `write:services` role._\n\n\n2. **Setup docker service**\n   Create a docker-compose.yml file and configure the service.\n    ```yaml\n    services:\n      # Other OpenRemote services...\n    \n      mcp-server:\n        image: openremote/mcp-server:latest\n        restart: always\n        depends_on:\n          manager:\n            condition: service_healthy\n        ports:\n          - \"8420:8420\"\n        environment:\n          APP_HOMEPAGE_URL: https://\u003cSERVICE_URL\u003e:8420 # Change this to the URL this service is available on\n          \n          OPENREMOTE_CLIENT_ID: \u003cOPENREMOTE_CLIENT_ID\u003e\n          OPENREMOTE_CLIENT_SECRET: \u003cOPENREMOTE_CLIENT_SECRET\u003e\n          OPENREMOTE_URL: \u003cOPENREMOTE_URL\u003e\n          OPENREMOTE_VERIFY_SSL: 1\n    ```\n\n4. **Run the service**\n\n   Finally, you can run the new service by using docker compose.\n    ```shell\n    docker compose up\n    ```\n   This will run the additional service, it will auto-register to your OpenRemote instance. and you can view them in the services tab inside your OpenRemote dashboard.\n\n\n## Development guide\nThis guide assumes you already have an OpenRemote instance running.\n\n### Prerequisites:\n- [Python](https://www.python.org/downloads/) \u0026 [UV](https://docs.astral.sh/uv/#installation) installed\n- Running an instance of [OpenRemote](https://docs.openremote.io/docs/quick-start)\n\n1. **Create service user**\n\n   In your OpenRemote instance, create a new service user (`settings \u003e users \u003e SERVICE USERS \u003e ADD USER`) and give it the permissions you want to have.\n   The MCP server will auto discover the tools that are available.\n\n   _Note: The service user is required to have the `read:services` \u0026 `write:services` role._\n\n\n2. **Sync dependencies**\n    ```shell\n    uv sync\n    ```\n\n3. **Setup environment variables**\n\n   Create a new file `.env` in the root of the project directory. and fill in the following variables replacing the brackets with your own values.\n    ```dotenv\n    OPENREMOTE_CLIENT_ID=\u003cOPENREMOTE_CLIENT_ID\u003e\n    OPENREMOTE_CLIENT_SECRET=\u003cOPENREMOTE_CLIENT_SECRET\u003e\n    OPENREMOTE_URL=\u003cOPENREMOTE_URL\u003e\n    OPENREMOTE_VERIFY_SSL=0\n    ```\n\n4. **Run service**\n    ```shell\n    uv run uvicorn app:app --reload --port=8420\n    ```\n\n## Production guide\n\n### Prerequisites:\n- [Docker](https://docs.docker.com/engine/install/) installed\n\n1. **Build docker image**\n\n    Build the docker image\n    ```shell\n    docker build . --tag=openremote/mcp-server:latest \n    ```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenremote%2Fservice-mcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenremote%2Fservice-mcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenremote%2Fservice-mcp-server/lists"}