systemprompt.io
Link your superintelligence with your website
Table of Contents
Why systemprompt.io?
The new stack for the agentic age - infrastructure and application as one. A self-building, self-understanding Rust web agent that you run from Claude, ChatGPT, or any MCP client.
- Infrastructure + Application: Not just a framework - a complete runtime combining Web API, agent processes, and MCP servers with shared authentication and database
- Open Standards: Built on A2A framework, AGUI, and MCP protocols
- Secure by Design: OAuth2/OIDC, user management, and process isolation for agents and tools
- Agent-Executable CLI: The extendable CLI runs safely in the remote environment - your AI manages your infrastructure directly
- Native Rust Performance: Zero-cost abstractions and async-first design built on Tokio
- Self-Hosted or Cloud: Run locally on Docker, or deploy to your own isolated VM with included multi-tenant database
- Open Source Foundation: Extensible architecture with compile-time safe extensions
- 100% Extensible: Build proprietary Rust wrappers on top of the core platform
What You Get
A complete platform with built-in:
- User Authentication: OAuth2/OIDC, sessions, roles, and permissions
- File Storage: Upload, serve, and manage files with metadata
- Content Management: Markdown ingestion, search, and publishing
- AI Integration: Multi-provider LLM support with request logging
- Analytics: Session tracking, metrics, and usage reporting
- Agent Orchestration: A2A protocol for agent-to-agent communication
- MCP Servers: Tool and resource providers for AI clients
Quick Start
Prerequisites
- Rust 1.75+
- Docker (for local PostgreSQL) OR systemprompt.io Cloud account
Install the CLI
Option A: Install from crates.io
Option B: Build from source
Setup
All setup is done through the CLI. Choose your database option:
Option 1: Local PostgreSQL (Free)
# Start PostgreSQL in Docker
# Login to systemprompt.io Cloud (free account - enables CLI profile management)
# Create a local tenant with your Docker database
# Create and configure your profile
# Run database migrations
# Start services
Option 2: systemprompt.io Cloud (Paid)
Production-ready agentic mesh served over the web. Cloud deployment includes your code and managed PostgreSQL running together as a complete platform. Point your DNS and deploy your web frontend chained to your agents.
# Login to systemprompt.io Cloud
# Create a cloud tenant (provisions your full platform instance)
# Create and configure your profile
# Deploy to cloud
Your agentic mesh will be deployed in the region of your choice and available at your tenant URL (e.g., https://my-tenant.systemprompt.io). This can be easily used (CNAME) to run your own web accessible agent mesh and domain.
Native MCP Client Support
Works out of the box with any MCP client - Claude Code, Claude Desktop, ChatGPT, and more. All transports are HTTP-native, supported by modern MCP clients.
// claude_desktop_config.json
Your AI can now manage your entire infrastructure: deploy updates, query analytics, manage users, and orchestrate agents - all through natural conversation.
Discovery API
Get agent and MCP connection details from the API at any time:
| Endpoint | Description |
|---|---|
/.well-known/agent-card.json |
Default agent card |
/.well-known/agent-cards |
List all available agents |
/.well-known/agent-cards/{name} |
Specific agent card |
/api/v1/agents/registry |
Full agent registry with status |
/api/v1/mcp/registry |
All MCP servers with endpoints |
Building Your Own Project
Use the systemprompt-template to create a new project with the recommended structure for agents, MCP servers, and content.
Using as a Library
Build your own extensions by adding the facade to your Cargo.toml:
[]
= { = "0.0.1", = ["full"] }
Architecture
systemprompt.io uses a layered crate architecture:
┌─────────────────────────────────────────────────────────┐
│ ENTRY: api, cli │
├─────────────────────────────────────────────────────────┤
│ APP: runtime, scheduler, generator, sync │
├─────────────────────────────────────────────────────────┤
│ DOMAIN: users, oauth, ai, agent, mcp, files, content │
├─────────────────────────────────────────────────────────┤
│ INFRA: database, events, security, config, logging │
├─────────────────────────────────────────────────────────┤
│ SHARED: models, traits, identifiers, extension │
└─────────────────────────────────────────────────────────┘
Dependencies flow downward only. Domain crates communicate via traits and events, not direct dependencies.
See full architecture documentation for details on all 25+ crates.
Extension Framework
Extensions enable downstream projects to extend core functionality without modifying it.
use *;
;
register_extension!;
register_api_extension!;
Available extension traits:
| Trait | Purpose |
|---|---|
Extension |
Base trait - ID, name, version, dependencies |
SchemaExtension |
Database table definitions |
ApiExtension |
HTTP route handlers |
ConfigExtensionTyped |
Config validation at startup |
JobExtension |
Background job definitions |
ProviderExtension |
Custom LLM/tool provider implementations |
Extensions are discovered at runtime via the inventory crate.
Versioning
Follows Semantic Versioning:
- Major: Breaking API changes
- Minor: New features, backward compatible
- Patch: Bug fixes, backward compatible
Current version: 0.0.1
License
FSL-1.1-ALv2 (Functional Source License) - see LICENSE for details.