{"id":42471641,"url":"https://github.com/swingerman/ha-mcp-memory-addon","last_synced_at":"2026-01-28T09:50:12.686Z","repository":{"id":320516881,"uuid":"1065472411","full_name":"swingerman/ha-mcp-memory-addon","owner":"swingerman","description":"Home Assistant add-on for hosting MCP Memory Service with HTTP API","archived":false,"fork":false,"pushed_at":"2025-10-24T06:53:51.000Z","size":86,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-24T08:41:00.093Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/swingerman.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":"SECURITY.md","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-09-27T19:54:55.000Z","updated_at":"2025-10-24T06:53:55.000Z","dependencies_parsed_at":"2025-10-24T08:41:06.835Z","dependency_job_id":null,"html_url":"https://github.com/swingerman/ha-mcp-memory-addon","commit_stats":null,"previous_names":["swingerman/ha-mcp-memory-addon"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/swingerman/ha-mcp-memory-addon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swingerman%2Fha-mcp-memory-addon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swingerman%2Fha-mcp-memory-addon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swingerman%2Fha-mcp-memory-addon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swingerman%2Fha-mcp-memory-addon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/swingerman","download_url":"https://codeload.github.com/swingerman/ha-mcp-memory-addon/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swingerman%2Fha-mcp-memory-addon/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28844011,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T07:39:25.367Z","status":"ssl_error","status_checked_at":"2026-01-28T07:39:24.487Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":"2026-01-28T09:50:12.391Z","updated_at":"2026-01-28T09:50:12.676Z","avatar_url":"https://github.com/swingerman.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Home Assistant MCP Memory Service Add-on\n\n[![GitHub Release][releases-shield]][releases]\n[![GitHub Activity][commits-shield]][commits]\n[![License][license-shield]](LICENSE)\n[![hacs][hacsbadge]][hacs]\n\n![Project Maintenance][maintenance-shield]\n[![GitHub Activity][last-commit-shield]][commits]\n\n[![Community Forum][forum-shield]][forum]\n\nA Home Assistant add-on that provides an AI memory service using the Model Context Protocol (MCP). This allows AI agents to store and retrieve persistent memories through a simple HTTP API.\n\n## About\n\nThe MCP Memory Service enables AI agents to maintain context and memory across conversations and sessions. It's perfect for:\n\n- 🤖 **AI Assistants** - Remember user preferences and past interactions\n- 💬 **Chatbots** - Maintain conversation context over time  \n- 🔄 **Automation** - Store and recall state information\n- 📚 **Knowledge Base** - Build a searchable memory database\n\n## Features\n\n- ✅ **RESTful HTTP API** for easy integration\n- 🔐 **Optional API key authentication** \n- 🌐 **CORS support** for web applications\n- 💾 **Persistent storage** in Home Assistant\n- 🏗️ **Multi-architecture support** (ARM, x64, etc.)\n- 📊 **Health monitoring** and logging\n- 🔍 **Search and filtering** capabilities\n\n## Installation\n\n### Add-on Store\n\n1. Add this repository to Home Assistant:\n   - **Supervisor** → **Add-on Store** → **⋮** → **Repositories**\n   - Add: `https://github.com/swingerman/ha-mcp-memory-addon`\n\n2. Install the **MCP Memory Service** add-on\n\n3. Configure and start the add-on\n\n### Manual Installation\n\nSee [Installation Guide](docs/installation.md) for detailed instructions.\n\n## Quick Start\n\n1. **Install and start** the add-on\n2. **Test the service**:\n   ```bash\n   curl http://homeassistant:8080/health\n   ```\n3. **Store a memory**:\n   ```bash\n   curl -X POST http://homeassistant:8080/memory/store \\\n     -H \"Content-Type: application/json\" \\\n     -d '{\"content\": \"User prefers morning meetings\"}'\n   ```\n4. **Search memories**:\n   ```bash\n   curl \"http://homeassistant:8080/memory/search?query=meeting\"\n   ```\n\n## Configuration\n\n```yaml\nlog_level: info\nstorage_path: \"/data\"\ncors_enabled: true\napi_key: \"\"  # Optional authentication\n```\n\nSee [API Documentation](docs/api.md) for complete endpoint reference.\n\n## External Access\n\nAccess your memory service from anywhere:\n\n- **Port Forwarding**: Forward port 8080 to your HA instance\n- **Reverse Proxy**: Use Nginx Proxy Manager (recommended)\n- **VPN**: Access through your Home Assistant VPN\n\n## Development\n\n### Local Development\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/swingerman/ha-mcp-memory-addon.git\n   cd ha-mcp-memory-addon\n   ```\n\n2. Build and test locally (requires Home Assistant build environment):\n   ```bash\n   # Note: This requires the Home Assistant add-on build system\n   # For local testing, install the add-on in Home Assistant\n   ```\n\n### Contributing\n\nContributions are welcome! Please:\n\n1. Fork the repository\n2. Create a feature branch\n3. Make your changes\n4. Add tests if applicable\n5. Submit a pull request\n\n## Support\n\n- 📖 **Documentation**: [Installation](docs/installation.md) | [API Reference](docs/api.md)\n- 🐛 **Issues**: [GitHub Issues](https://github.com/swingerman/ha-mcp-memory-addon/issues)\n- 💬 **Discussions**: [GitHub Discussions](https://github.com/swingerman/ha-mcp-memory-addon/discussions)\n\n## License\n\nMIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- Based on the [MCP Memory Service](https://github.com/doobidoo/mcp-memory-service)\n- Built for the [Model Context Protocol](https://modelcontextprotocol.io/)\n- Home Assistant add-on framework\n\n---\n\n[commits-shield]: https://img.shields.io/github/commit-activity/y/swingerman/ha-mcp-memory-addon.svg\n[commits]: https://github.com/swingerman/ha-mcp-memory-addon/commits/main\n[hacs]: https://hacs.xyz\n[hacsbadge]: https://img.shields.io/badge/HACS-Custom-orange.svg\n[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg\n[forum]: https://community.home-assistant.io/\n[license-shield]: https://img.shields.io/github/license/swingerman/ha-mcp-memory-addon.svg\n[maintenance-shield]: https://img.shields.io/badge/maintainer-Your%20Name-blue.svg\n[releases-shield]: https://img.shields.io/github/release/swingerman/ha-mcp-memory-addon.svg\n[releases]: https://github.com/swingerman/ha-mcp-memory-addon/releases\n[last-commit-shield]: https://img.shields.io/github/last-commit/swingerman/ha-mcp-memory-addon.svg\nHome Assistant add-on for hosting MCP Memory Service with HTTP API\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswingerman%2Fha-mcp-memory-addon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fswingerman%2Fha-mcp-memory-addon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswingerman%2Fha-mcp-memory-addon/lists"}