Back to MCP Overview

App Connections Tools

Tools for managing connected app accounts and integrations.

3 tools

Available Tools

appAccount_create

Connect a new app account. Params: mcpServerId (required, from mcpServer.list), connectionName (required), credentials (object with API keys/tokens).

Input Schema

mcpServerIdstringrequired
connectionNamestringrequired
credentialsobjectrequired

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appAccount_create",
    "arguments": {
          "mcpServerId": "example",
          "connectionName": "example",
          "credentials": {}
    }
  }
}
appAccount_list

List connected app accounts (OAuth integrations). Optional param "mcpServerId" to filter. Returns accounts with connection status.

Input Schema

mcpServerIdstring

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appAccount_list",
    "arguments": {
          "mcpServerId": "example"
    }
  }
}
appAccount_delete

Disconnect an app account. Param "appAccountId".

Input Schema

appAccountIdstringrequired

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appAccount_delete",
    "arguments": {
          "appAccountId": "example"
    }
  }
}
App Connections MCP Tools - Serenities