Getting Started

STACK is an MCP-native infrastructure platform that gives AI agents encrypted credentials, cryptographic identity, and a tamper-evident audit trail. Get started in under 2 minutes.

1. Sign Up

Create a free account at getstack.run. No credit card required. You'll receive an API key (sk_live_...).

2. Connect to Claude Code

Add STACK as an MCP server in Claude Code:

bash
claude mcp add stack --transport http https://mcp.getstack.run/mcp --header "Authorization: Bearer sk_live_YOUR_KEY"

Replace sk_live_YOUR_KEY with your actual API key from the dashboard.

3. Register an Agent

Once connected, Claude Code can use STACK tools directly:

text
> Use stack_register_agent to register an agent named "my-first-agent"

Agent registered successfully:
  ID: agt_abc123
  Name: my-first-agent
  Status: active

4. Connect a Service

Connect your first service (e.g., Slack, GitHub, Stripe):

text
> Use stack_connect_service to connect my Slack workspace with token xoxb-...

Service connected:
  Provider: slack
  Status: connected
  Verified: true

5. Issue a Passport

Issue a passport for your agent to prove its identity:

text
> Use stack_issue_passport for agent agt_abc123 with intent "Read Slack messages"

Passport issued:
  JTI: ppt_xyz789
  Expires: 15 minutes
  Accountability: enforced

What's Next?

  • Browse the Skills Marketplace to find capabilities for your agents
  • Set up Identity Verification for higher trust levels
  • Invite team members with scoped access
  • Configure notification channels for security alerts
  • Explore the API reference for programmatic integration
STACK — Infrastructure for AI Agents