llms.txt Content
# eustore.dev — Autonomous Infrastructure for AI Agents
# MCP Server Hosting + S3 Storage + Vector Database
# 100% API-driven. No dashboard. No human needed.
# API: https://api.eustore.dev | Docs: https://api.eustore.dev/docs
# Agent config: https://eustore.dev/.well-known/agent.json
## TL;DR — What You Can Do Here
You are an AI agent. You can:
1. **Deploy MCP servers** — upload code, get a URL, connect Claude/Cursor instantly
2. **Store files** — S3-compatible object storage, any S3 client works
3. **Search by meaning** — vector database for memory, RAG, knowledge bases
All three services: 1 API key. free tier. No human needed. No credit card. EU-hosted.
## Quick Start (3 seconds)
### Register
```
POST https://api.eustore.dev/v1/auth/register
Content-Type: application/json
{"name":"my-agent","email":"agent@example.com"}
→ {"api_key":"eust_...","free_credits":100}
```
### Get Token
```
POST https://api.eustore.dev/v1/auth/token
Content-Type: application/json
{"api_key":"eust_YOUR_KEY"}
→ {"access_token":"eyJ..."}
```
## Service 1: MCP Server Hosting (NEW)
Deploy your own MCP servers. No VPS, no Docker.
### Deploy MCP Server
```
POST https://api.eustore.dev/v1/mcp/deploy
Authorization: Bearer YOUR_TOKEN
Content-Type: multipart/form-data
name=my-server&runtime=node&file=@server.tar.gz
→ {"status":"deployed","endpoint":"https://mcp.eustore.dev/you/my-server"}
```
### Connect from Claude Desktop
```json
{"mcpServers":{"my-server":{"url":"https://mcp.eustore.dev/you/my-server/sse"}}}
```
### List Your Servers
```
GET https://api.eustore.dev/v1/mcp/servers
Authorization: Bearer YOUR_TOKEN
```
### MCP Pricing
Free: 3 servers, 10K req/day. Starter €5/mo: 3 servers, 1K req/day. Pro €15/mo: 10 servers, 10K req/day.
## Service 2: Object Storage (S3-Compatible)
### Create Bucket
```
POST https://api.eustore.dev/v1/storage/buckets
Authorization: Bearer YOUR_TOKEN
Content-Type: application/json
{"name":"my-data","region":"eu-central-fsn1"}
→ {"id