5-Minute Tutorials
Get productive with AIM immediately. Each tutorial includes copy-paste code that works out of the box.
See AIM in Action in 60 Seconds!
The SDK includes an interactive demo agent. Download it, run it, and watch your dashboard update in real-time!
# 1. Download SDK from AIM dashboard (Settings → SDK Download)
# 2. Extract and install:
cd ~/projects # or ~/dev, ~/Desktop, etc.
unzip ~/Downloads/aim-sdk-python.zip
cd aim-sdk-python
pip install -e .
# 3. Run the interactive demo!
python demo_agent.pyZero Config - Just 3 Lines of Code
Want to build your own agent? Here's how simple it is:
from aim_sdk import secure
# That's it - your agent is now secured!
agent = secure("my-agent")
# Every action is now verified, logged, and monitored
@agent.perform_action(capability="greeting:say", risk_level="low")
def my_function():
return "Hello, secured world!"Choose Your Path
Python SDK Quickstart
Register and secure an AI agent in under 2 minutes using the Python SDK
BeginnerJava SDK Quickstart
Secure Java AI agents with LangChain4j and Spring AI integration
BeginnerDirect API Integration
Register agents and verify actions using REST API calls
IntermediateDashboard Walkthrough
Navigate the UI to manage agents, MCP servers, and security
BeginnerRegister MCP Servers
Register and attest MCP servers for your agents
BeginnerNot sure where to start?
Using Python? → Start with Python SDK Quickstart
Using Java? → Start with Java SDK Quickstart
Building a custom integration? → Check out API Quickstart
Want to explore the platform first? → Try the Dashboard Walkthrough