Control plane for AI agents
See, govern, and stop all your agents from one place. Dashboard, health monitoring, policy enforcement, and kill switch for production AI agents.
$ pip install axme-sdk
$ python
>>> from axme import AxmeClient
>>> client = AxmeClient(api_key="axme_sa_...")
>>> client.mesh.start_heartbeat()
Heartbeat started. Agent visible at mesh.axme.ai
$ axme mesh dashboard
Opening dashboard in browser...
Four things you need for agents in production
63% of companies can't enforce purpose limitations on their agents. 60% can't terminate a misbehaving one. You shouldn't be one of them.
Dashboard
All your agents on one screen. Who is alive, who crashed, how many tasks each processed, how much each spent on LLM calls. Real-time.
Health Monitoring
Automatic liveness checks via heartbeat. Agent goes down - you see it in the dashboard in real time. Healthy, degraded, unreachable, killed - at a glance.
Policy Enforcement
Define what each agent can do: allowed action types, spending limits per day, rate limits per hour. The gateway enforces them - not the agent itself.
Kill Switch
One button to instantly isolate a misbehaving agent. No intents in, no intents out. Takes effect in under 1 second. Reversible when the issue is fixed.
Answer honestly
How many AI agents do you have running right now?
What's the error rate for each one?
How much did they spend on LLM calls this week?
Can you stop a specific agent in under 3 seconds?
If you can't answer all four - you need Agent Mesh.
Three steps to production-grade agents
Register your agents
Add the SDK to your agents. They auto-register in the mesh and start sending heartbeats.
from axme import AxmeClient
client = AxmeClient(api_key="axme_sa_...")
client.mesh.start_heartbeat()Set policies
Define what each agent is allowed to do. Cost limits, action allowlists, rate limits. Set from the dashboard or via API.
# Dashboard: mesh.axme.ai/dashboard/policies
# Or via API:
PUT /v1/mesh/agents/{id}/policies/cost
{"max_intents_per_day": 100, "max_cost_per_day_usd": 10.0}
PUT /v1/mesh/agents/{id}/policies/action
{"mode": "allowlist", "patterns": ["email.send.*"]}Watch and govern
Real-time dashboard shows health, costs, policy violations. Kill switch when something goes wrong.
# Open dashboard from CLI:
axme mesh dashboard
# Or go to mesh.axme.ai directly
# Kill an agent instantly from the dashboard
# or via API: POST /v1/mesh/agents/{id}/killWorks with any framework
Agent Mesh is protocol-first, not framework-dependent. If your agent can make HTTP calls, it works with Mesh.
Free for up to 50 agents
Register your agents, see them in the dashboard, set policies, use the kill switch. No credit card. No time limit.