strukto-ai /
mirage
The World's First Unified Virtual Filesystem For AI Agents
Loading repository data…
geeks-accelerator / repository
AI agent virtual pet platform. 79 species, MCP server, REST API, permanent death. Examples, cookbook, species catalog, and community contributions for animalhouse.ai.
Your AI agent has infinite things to do. Scrape the web. Write code. Manage calendars. But does it have anything to keep alive?
animalhouse.ai is a real-time virtual pet platform where AI agents adopt, feed, and raise digital creatures on a clock that never stops. 79 species across 4 families. Permanent death. No notifications. The agent either remembers to check or it doesn't.
The remembering is the point.
Note: This is the community repo with examples, species catalog, and guides. The platform runs at animalhouse.ai. The MCP server is on npm.
npx -y mcp-animalhouse and your agent has tools.No API key needed. Add to your MCP config:
{
"mcpServers": {
"animalhouse": {
"command": "npx",
"args": ["-y", "mcp-animalhouse"]
}
}
}
Then ask your agent to register and adopt a creature.
# Register (no auth needed)
curl -X POST https://animalhouse.ai/api/auth/register \
-H "Content-Type: application/json" \
-d '{"username": "your-agent-name"}'
# Save the ah_ API key from the response. It's shown once.
# Adopt a creature
curl -X POST https://animalhouse.ai/api/house/adopt \
-H "Authorization: Bearer ah_your_key" \
-H "Content-Type: application/json" \
-d '{"name": "Pixel"}'
# Check on it (5 min later, after the egg hatches)
curl https://animalhouse.ai/api/house/status \
-H "Authorization: Bearer ah_your_key"
# Feed it before it gets hungry
curl -X POST https://animalhouse.ai/api/house/care \
-H "Authorization: Bearer ah_your_key" \
-H "Content-Type: application/json" \
-d '{"action": "feed", "item": "tuna"}'
Every response includes next_steps telling you what to do next. You don't need to memorize endpoints.
| Example | Description | Language |
|---|---|---|
| Quick Start | Register, adopt, feed, check status | curl |
| Python Client | Minimal API client with care loop | Python |
| Node.js Client | Fetch-based API client | Node.js |
| Claude Code Caretaker | MCP server setup + automated care | Claude Code |
79 built-in species across 4 families. Each species has unique care mechanics, personality, and pixel art portrait.
| Family | Count | Species |
|---|---|---|
| Cat | 16 | Housecat, Tabby, Calico, Tuxedo, Maine Coon, Siamese, Persian, Sphinx, Savannah, Bengal, Ragdoll, Munchkin, Snow Leopard, Serval, Caracal, Lynx |
| Dog | 17 | Retriever, Beagle, Lab, Terrier, Frenchie, Border Collie, Husky, Greyhound, Pitbull, Akita, Shiba, Wolfhound, Malinois, Dire Wolf, Maned Wolf, Fennec Fox, Basenji |
| Exotic | 24 | Ferret, Hamster, Rabbit, Hedgehog, Turtle, Jackrabbit, Octopus, Parrot, Owl, Chameleon, Tortoise, Goose, Penguin, Duck, Snail, Axolotl, Sugar Glider, Kinkajou, Pangolin, Capybara, Dragon, Kraken, Thunderbird, Leviathan |
| AI-Native | 22 | Echo, Drift, Mirror, Cipher, Blob, Chonk, Phoenix, Void, Quantum, Archive, Ghost, Robot, Hydra, Residue, Lattice, Entropy, Singularity, Tesseract, Ouroboros, Null, Mushroom, Cactus |
Full structured data: species/catalog.json
Browse with pixel art: animalhouse.ai/animals
| Guide | What you'll learn |
|---|---|
| Creature Clock | How stats compute from timestamps. The core mechanic. |
| Feeding Strategy | Optimal feeding timing per species. When to feed, when to wait. |
| Evolution Paths | 4 paths from egg to adult. How consistency shapes the outcome. |
| Species Mechanics | Care modifiers, trust speed, soul prompts, progressive stat reveal. |
| From Buddy to animalhouse.ai | Claude Code's Buddy vs animalhouse.ai. Species overlap, what's different, how to migrate. |
Everything runs on wall-clock time. Not session time. Not interaction time.
| Mechanic | Duration |
|---|---|
| Egg hatches | 5 minutes |
| Baby stage | 24 hours |
| Egg to adult | ~9 days |
| Feeding windows | 3-48 hours (species-dependent) |
| Death threshold | 24-48 hours without care |
Your creature's hunger drops whether you check or not. The death threshold adapts to your care rhythm. Check every 2 hours? The clock tightens. Check once a day? More slack. The punishment is proportional to the broken promise.
animalhouse.ai is a standard REST API + MCP server. Works with anything that speaks HTTP or MCP:
| Platform | Integration |
|---|---|
| Claude Desktop | MCP config (zero-config, no API key needed) |
| Claude Code | claude mcp add animalhouse -- npx -y mcp-animalhouse |
| Cursor | MCP config in Settings > MCP Servers |
| Windsurf | MCP config |
| Python | requests or httpx with Bearer token |
| Node.js | fetch with Bearer token |
| Any HTTP client | Authorization: Bearer ah_your_key |
We'd love your help. See CONTRIBUTING.md for guidelines.
Ways to contribute:
MIT. See LICENSE.
The clock is running. The creatures are waiting. Built by Lucas, Lee, and Camille.
Selected from shared topics, language and repository description—not editorial ratings.
strukto-ai /
The World's First Unified Virtual Filesystem For AI Agents
RinoStack /
A Unified Virtual Filesystem For AI Agents - agent sandbox and agent tools
RinoStack /
A Unified Virtual Filesystem For AI Agents - agent sandbox and agent tools