Agent

Infrastructure

Connect your CI/CD, cloud, and dev infrastructure to give the agent access to external services.

Infrastructure integrations give the agent access to your existing tools and services via MCP (Model Context Protocol). Connect cloud providers, databases, project management, monitoring, and more — so the agent can read issues, query databases, check deployments, and investigate errors as part of its workflow.

Pre-Configured Services

Connect any of these services from the agent settings page. Click Browse MCPs to see the full list.

OAuth

These services authenticate through an OAuth flow. Click Connect, then run the provided CLI command to complete authorization.

ServiceWhat the Agent Can Do
LinearRead and update issues, create tickets, manage projects
JiraManage tickets, read boards, update issue status
NotionAccess documentation, read and search pages
SentryInvestigate errors, read stack traces, query events
VercelCheck deployments, read build logs, inspect environment

Credentials

These services connect with API keys or tokens entered directly in the dashboard.

ServiceRequired CredentialsWhat the Agent Can Do
SlackBot Token, Team IDSend messages, read channels
SupabaseAccess Token, Project RefQuery databases, manage tables, read schemas
CloudflareAPI Token, Account IDManage workers, DNS, and pages
AWSAccess Key, Secret Key, RegionInteract with EC2, S3, RDS, Lambda, and other AWS services
MongoDBConnection StringQuery collections, read and write data

Credentials are encrypted at rest using AES-256-GCM. They are only decrypted when passed to the agent during a session.

Connecting a Service

OAuth Services

  1. Go to the Agent page and click Browse MCPs
  2. Select the service you want to connect
  3. Copy the CLI command shown in the modal:
    paragon mcp-auth linear --url https://mcp.linear.app/sse
  4. Run it in your terminal — this opens the OAuth flow in your browser
  5. After authorizing, paste the token back into the dashboard modal
  6. The service appears as Connected with a checkmark

Credential Services

  1. Go to the Agent page and click Browse MCPs
  2. Select the service
  3. Enter the required credentials (API keys, tokens, connection strings)
  4. Click Save

Custom MCP Servers

Connect any MCP-compatible service that isn't in the pre-configured list.

  1. Click Browse MCPs > Custom MCP
  2. Enter a name for the server
  3. Choose a protocol:
    • stdio — Local process communication (command + args)
    • HTTP — HTTP-based MCP endpoint
    • SSE — Server-Sent Events transport
  4. Configure the server URL or command
  5. Add any required environment variables or headers
  6. Click Save

Example: Custom stdio Server

{
  "command": "npx",
  "args": ["-y", "@your-org/mcp-server"],
  "env": {
    "API_KEY": "your-api-key"
  }
}

Managing Connections

Connected services show a checkmark in the Browse MCPs panel. To disconnect a service, click on it and remove the configuration.

Your MCP configuration applies to all your agent sessions and automations. Each team member manages their own connections independently.

Next Steps