{"id":29113534,"url":"https://github.com/hide-org/hide-mcp","last_synced_at":"2026-03-08T23:39:15.495Z","repository":{"id":264931466,"uuid":"894640003","full_name":"hide-org/hide-mcp","owner":"hide-org","description":"MCP server for Hide","archived":false,"fork":false,"pushed_at":"2025-03-07T11:05:06.000Z","size":180,"stargazers_count":8,"open_issues_count":2,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-29T11:07:23.386Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hide-org.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}},"created_at":"2024-11-26T18:00:15.000Z","updated_at":"2025-04-06T01:37:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"fef385b5-27ee-41b8-8ede-787dfddba4bf","html_url":"https://github.com/hide-org/hide-mcp","commit_stats":null,"previous_names":["hide-org/hide-mcp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hide-org/hide-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hide-org%2Fhide-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hide-org%2Fhide-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hide-org%2Fhide-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hide-org%2Fhide-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hide-org","download_url":"https://codeload.github.com/hide-org/hide-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hide-org%2Fhide-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30277231,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-08T20:45:49.896Z","status":"ssl_error","status_checked_at":"2026-03-08T20:45:49.525Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":"2025-06-29T11:05:38.200Z","updated_at":"2026-03-08T23:39:15.466Z","avatar_url":"https://github.com/hide-org.png","language":"Python","readme":"# Hide MCP server\n\nA MCP server for Hide – headless IDE.\n\n## Components\n\n### Tools\n\nThe server implements two tools adapted from [Anthropic's computer-use-demo](https://github.com/anthropics/anthropic-quickstarts/tree/main/computer-use-demo/computer_use_demo/tools):\n\n#### Text Editor\nFor viewing and editing files. Features file viewing with line numbers, directory listing, file creation, string replacement with exact matching, line insertion, and edit history. \n\n#### Bash\nA persistent bash shell with support for common Linux/Python packages, background processes and automatic output truncation. \n\n## Quickstart\n\n### Install\n\n#### Claude Desktop\n\nOn MacOS: `~/Library/Application\\ Support/Claude/claude_desktop_config.json`\nOn Windows: `%APPDATA%/Claude/claude_desktop_config.json`\n\n\u003cdetails\u003e\n  \u003csummary\u003eDevelopment/Unpublished Servers Configuration\u003c/summary\u003e\n  ```\n  \"mcpServers\": {\n    \"hide-mcp\": {\n      \"command\": \"uv\",\n      \"args\": [\n        \"--directory\",\n        \"/path/to/hide-mcp\",\n        \"run\",\n        \"hide-mcp\"\n      ]\n    }\n  }\n  ```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003ePublished Servers Configuration\u003c/summary\u003e\n  ```\n  \"mcpServers\": {\n    \"hide-mcp\": {\n      \"command\": \"uvx\",\n      \"args\": [\n        \"hide-mcp\"\n      ]\n    }\n  }\n  ```\n\u003c/details\u003e\n\n## Development\n\n### Building and Publishing\n\nTo prepare the package for distribution:\n\n1. Sync dependencies and update lockfile:\n```bash\nuv sync\n```\n\n2. Build package distributions:\n```bash\nuv build\n```\n\nThis will create source and wheel distributions in the `dist/` directory.\n\n3. Publish to PyPI:\n```bash\nuv publish\n```\n\nNote: You'll need to set PyPI credentials via environment variables or command flags:\n- Token: `--token` or `UV_PUBLISH_TOKEN`\n- Or username/password: `--username`/`UV_PUBLISH_USERNAME` and `--password`/`UV_PUBLISH_PASSWORD`\n\n### Packaging\n\nTo package the service into a standalone executable:\n\n```bash\nuv run pyinstaller hide-mcp.spec\n```\n\nThis will create a standalone executable in the `dist/` directory.\n\n### Debugging\n\nSince MCP servers run over stdio, debugging can be challenging. For the best debugging\nexperience, we strongly recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector).\n\n\nYou can launch the MCP Inspector via [`npm`](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) with this command:\n\n```bash\nnpx @modelcontextprotocol/inspector uv --directory /path/to/hide-mcp run hide-mcp\n```\n\n\nUpon launching, the Inspector will display a URL that you can access in your browser to begin debugging.\n","funding_links":[],"categories":["Code Execution \u0026 Automation MCP Servers","Coding Agents","Python"],"sub_categories":["How to Submit"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhide-org%2Fhide-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhide-org%2Fhide-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhide-org%2Fhide-mcp/lists"}