Back to MCP Overview
App Connections Tools
Tools for managing connected app accounts and integrations.
3 tools
Available Tools
appAccount_createConnect a new app account. Params: mcpServerId (required, from mcpServer.list), connectionName (required), credentials (object with API keys/tokens).
Input Schema
mcpServerId | stringrequired | |
connectionName | stringrequired | |
credentials | objectrequired |
Example Call
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "appAccount_create",
"arguments": {
"mcpServerId": "example",
"connectionName": "example",
"credentials": {}
}
}
}appAccount_listList connected app accounts (OAuth integrations). Optional param "mcpServerId" to filter. Returns accounts with connection status.
Input Schema
mcpServerId | string |
Example Call
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "appAccount_list",
"arguments": {
"mcpServerId": "example"
}
}
}appAccount_deleteDisconnect an app account. Param "appAccountId".
Input Schema
appAccountId | stringrequired |
Example Call
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "appAccount_delete",
"arguments": {
"appAccountId": "example"
}
}
}