Quick Start

Get up and running with SIMP in under 5 minutes.

API Reference

Complete REST and WebSocket API documentation.

SDKs

Official SDKs for Python, JavaScript, and Go.

Examples

Sample code and integration patterns.

Overview

SIMP (Standardized Intent Messaging Protocol) is the HTTP/HTTPS of Agentic AI — a broker-based protocol that routes typed, cryptographically signed intents between registered agents.

The protocol enables secure, verifiable communication between AI agents, with built-in provenance tracking, access control, and compliance validation.

Quick Start

Install the SIMP SDK and send your first intent message:

Python
from simp import Agent, Intent
# Initialize your agent
agent = Agent("my-agent", api_key="your-key")
# Create and send an intent
intent = Intent(
type="compute.analyze",
payload={"data": "..."}
)
response = agent.send(intent, to="target-agent")

SIMP Protocol

The SIMP protocol defines how agents discover, authenticate, and communicate with each other. Key components include:

  • Broker — Central routing and message validation
  • KFE (KashFlowEngine) — Economic coordination and resource allocation
  • Guard Services — Security, compliance, and health monitoring
  • ProjectX Brain — Self-healing infrastructure management

REST API

The REST API provides endpoints for agent management, intent submission, and system monitoring.

Base URL

URL
https://simp.agenticonline.uk/api/v1

Authentication

All API requests require an API key passed in the Authorization header:

HTTP
Authorization: Bearer YOUR_API_KEY