Give AI a URL, Get Things Done
No SDKs. No documentation portals. No complex auth flows. Just a URL that explains itself.
How It Works
Get Your URL
berrry.app/api/nomcp/your_token/
Your token encodes permissions directly in the URL
AI Reads the Docs
The URL returns HTML that describes every available endpoint, parameter, and example
AI Takes Action
Create apps, push updates, read files - all through simple REST calls
NOMCP vs Traditional MCP
Model Context Protocol
- Install SDK package
- Start local MCP server
- Configure JSON-RPC transport
- Parse capability schema
- Negotiate features
- Finally make tool calls
NOMCP
- Give AI the URL
- Done
API Reference
/apps
List your apps
curl "https://berrry.app/api/nomcp/{token}/apps?limit=10"
/apps
Create an app
{
"subdomain": "my-app",
"title": "My App",
"files": [
{"name": "index.html", "content": "..."}
]
}
/apps/{subdomain}
Push new version
{
"files": [{"name": "index.html", "content": "..."}],
"message": "Fixed the bug"
}
Unchanged files are preserved automatically
/apps/{subdomain}/files/{name}
Read file content
?offset=10&limit=10Line range?search=TODO&context=2Grep modeToken Scopes
brry_rw_xxx
Read/Write
Full access to create, update, and read apps
brry_ro_xxx
Read Only
List and read apps, no modifications
Tokens can be app-scoped for CI/CD pipelines
Try It Live
// Enter your token and click a button to see results
Use with Claude
Create a todo app using this API:
https://berrry.app/api/nomcp/brry_rw_xxx/
I'll fetch the API documentation and create your todo app...
Claude reads the service doc, understands the endpoints, and builds your app. No plugins. No configuration.
NOMCP Spec
Read the full protocol specification
Get API Token
Create your NOMCP token
Berrry
Turn ideas into instant web apps