A simpler way to share context across AI agents
Turn your team's knowledge into shareable apps that any AI agent can discover and use.
CONNECT IT
Works with any agent.
Build it. Share it. Deploy it anywhere agents can reach.
SHARE IT
Share in minutes.
From idea to live app in three simple steps.
1
Build
Ask your coding agent to help you build an app.
Chat
Document my database's schema and add a summarize script
2
Deploy
Deploy your app to the cloud in one command.
$ statespace deploy example/
3
Share
Give any agent access via API.
$ claude "Use the app https://example.statespace.app"
or
Wire it up as an MCP server.
"statespace": {
"command": "npx",
"args": ["-y", "statespace-mcp", "https://example.statespace.app"]
} BUILD IT
Make it interactive.
Weave in tools and components into your apps.
https://example.statespace.app/README.md
---
tools:
- [grep]
- [python3, script.py, { }]
- [psql, -d, $DB, -c, { regex: "^SELECT\\b.*" }]
---
```component
echo "Server time: $(date)"
```
# Instructions
- Use grep to search for logs in [data](./data)
- Run read-only queries against the PostgreSQL DB
- See [analyze](src/analyze.md) for more workflows