Web apps for AI agents

Design AI-friendly web applications that agents can navigate and interact with.

https://example.statespace.app/README.md
---
tools:
  - [grep]
  - [curl, -X, GET, { }]
  - [psql, -c, { regex: "^SELECT\\b.*" }]
---
 
```component
echo "Server time: $(date)"
```
 
# Instructions
- Use grep to search for logs in ./data
- Query the database for recent users
- See [analyze](src/analyze.md) for more workflows
DEPLOY IT

Ship in minutes.

From idea to production in three simple steps.

1

Build

Structure your Markdown and data files into an app

~/Documents
demo/
├── README.md
├── data/
│  ├── users.csv
│  └── logs.txt
└── src/
    ├── analyze.md
    └── search.md
2

Deploy

Push public or private apps to production with Statespace's CLI

~/Documents
$
3

Use

Pass the app URL to any agent — try the demo with any coding agent!

$ claude "Multiply the number in https://demo.statespace.app by 256"
SHARE IT

Just share the URL.

Every app gets a URL — use it anywhere agents can reach.

Chat
Fetch my latest metrics from https://demo.statespace.app

Prompts

Drop the URL into any chat with an AI agent that can make HTTP requests.

agent.py
1response = requests.get(
2"https://demo.statespace.app"
3)
4
5data = response.json()

Code

Build custom agents in any language with just an HTTP client.

CLAUDE.md
# Project
 
This is a metrics dashboard.
All data lives inside https://demo.statespace.app

Instructions

Reference URLs in instructions, code comments, or even other web apps.

INSPECT IT

Built-in observability.

Monitor your applications with detailed logs and metrics.

Observability dashboard coming soon

CONTROL IT

Secure by default.

Fine-grained access control for every app.

Access tokens

Scoped tokens for private apps. Grant read, write, or tool access to agents and revoke at any time. Learn more.

SSH access

Connect directly to your private app's runtime over SSH. Debug live, inspect state, and run commands. Learn more.

Custom runtimes

Bring your own Dockerfile to install packages, languages, and dependencies your apps need. Learn more.

Ready to start building?