Make your app
agent-native.
Embed intelligent agents with your users, tools, data, and permissions already connected.
The agent answers in your interface, not in prose.
Ask an operational question and the agent renders the table, the chart, and the action — built from your real schema, scoped to the user who asked.
Which enterprise accounts are past due more than 30 days, and what's the trend?
Three layers. One connected agent.
Use the whole stack or bring your own client — every layer speaks open protocol, so nothing here is a dead end.
Drop an agent into your SaaS
One React component gives every user an agent that inherits their permissions. Set token budgets per plan, cap spend per session, and replay any conversation frame by frame.
Managed MCP servers
Connect a server you already run, or point us at an OpenAPI spec and we generate the tool surface for you. Every server deploys to the global edge with health checks and versioned rollbacks.
The OAuth 2.1 front door
Discovery, dynamic client registration, and grant brokering handled for you. Every tool call arrives carrying a real user identity — not a shared service key.
- Actor
- sam@northwind.com
- Grant
- authz_code · PKCE
- Scopes
- read:invoices
Three steps to production.
- 1Connect your APIImport an OpenAPI spec, a database, or an MCP server you already run.
- 2Attach a gatewayMap your existing identity provider to scopes. We broker the grants.
- 3Embed the agentMount the component. It renders your UI, not a wall of text.
import { AgentPanel, useAgent } from "@mcpstack/agent-sdk";
export function Assistant() {
const agent = useAgent({
server: "billing-mcp",
gateway: "northwind",
// the signed-in user, not a service key
actor: session.user.id,
budget: { tokens: 25_000 },
});
return <AgentPanel agent={agent} renderUI />;
}Start from the terminal.
$ npx agenetix init --from ./openapi.yaml
✓ parsed 24 operations
✓ generated billing-mcp · 12 tools
✓ gateway attached · oauth 2.1 + pkce
✓ deployed us-east-1 eu-west-1 ap-south-1
mcp.agenetix.io/northwind/billing livePriced per tool call, not per seat.
- 1 hosted MCP server
- 10,000 tool calls / month
- OAuth gateway + request logs
- 10 hosted MCP servers
- 100,000 tool calls / month
- Shared budgets + session replay
Ship an agent your users can trust.
Free while you build. No card, no sales call, no waiting list.