Skip to content
Scalekit Docs
Talk to an Engineer Dashboard

Sybill MCP connector

OAuth 2.1/DCRCRM & SalesAIAnalytics

Connect to Sybill. Access AI-generated summaries of sales calls, deals, accounts, and conversations to accelerate B2B revenue workflows.

Sybill MCP connector

  1. Terminal window
    npm install @scalekit-sdk/node

    Full SDK reference: Node.js | Python

  2. Add your Scalekit credentials to your .env file. Find values in app.scalekit.com > Developers > API Credentials.

    .env
    SCALEKIT_ENVIRONMENT_URL=<your-environment-url>
    SCALEKIT_CLIENT_ID=<your-client-id>
    SCALEKIT_CLIENT_SECRET=<your-client-secret>
  3. quickstart.ts
    import { ScalekitClient } from '@scalekit-sdk/node'
    import 'dotenv/config'
    const scalekit = new ScalekitClient(
    process.env.SCALEKIT_ENV_URL,
    process.env.SCALEKIT_CLIENT_ID,
    process.env.SCALEKIT_CLIENT_SECRET,
    )
    const actions = scalekit.actions
    const connector = 'sybilmcp'
    const identifier = 'user_123'
    // Generate an authorization link for the user
    const { link } = await actions.getAuthorizationLink({ connectionName: connector, identifier })
    console.log('Authorize Sybill MCP:', link)
    process.stdout.write('Press Enter after authorizing...')
    await new Promise(r => process.stdin.once('data', r))
    // Make your first call
    const result = await actions.executeTool({
    connector,
    identifier,
    toolName: 'sybilmcp_list_accounts',
    toolInput: {},
    })
    console.log(result)

Connect this agent connector to let your agent:

  • Sybill ask — Ask Sybill AI about your sales calls, deals, accounts, or contacts
  • List conversations, accounts, deals — List sales conversations with optional filters for date range, meeting type, and attendees
  • Get conversation, deal, account — Get full details of a single conversation including summary, transcript, and recording URLs

Use the exact tool names from the Tool list below when you call execute_tool. If you’re not sure which name to use, list the tools available for the current user first.

sybilmcp_ask_sybill#Ask Sybill AI about your sales calls, deals, accounts, or contacts.1 param

Ask Sybill AI about your sales calls, deals, accounts, or contacts.

NameTypeRequiredDescription
messagestringrequiredYour question about sales calls, deals, accounts, or contacts.
sybilmcp_get_account#Get full details of a single CRM account including contacts, owner, and synced CRM fields.1 param

Get full details of a single CRM account including contacts, owner, and synced CRM fields.

NameTypeRequiredDescription
account_idstringrequiredUnique ID of the account. Get it from List Accounts.
sybilmcp_get_conversation#Get full details of a single conversation including summary, transcript, and recording URLs.1 param

Get full details of a single conversation including summary, transcript, and recording URLs.

NameTypeRequiredDescription
conversation_idstringrequiredUnique ID of the conversation. Get it from List Conversations.
sybilmcp_get_deal#Get full details of a single CRM deal including summary, contacts, owner, pipeline, and stage.1 param

Get full details of a single CRM deal including summary, contacts, owner, pipeline, and stage.

NameTypeRequiredDescription
deal_idstringrequiredUnique ID of the deal. Get it from List Deals.
sybilmcp_list_accounts#List CRM accounts with optional filters for name, website, owner, and date ranges.9 params

List CRM accounts with optional filters for name, website, owner, and date ranges.

NameTypeRequiredDescription
created_afterstringoptionalReturn records created after this ISO 8601 datetime.
created_beforestringoptionalReturn records created before this ISO 8601 datetime.
cursorstringoptionalPagination cursor from the previous response to fetch the next page.
last_activity_afterstringoptionalReturn records with last activity after this ISO 8601 datetime.
last_activity_beforestringoptionalReturn records with last activity before this ISO 8601 datetime.
limitintegeroptionalMaximum number of items to return per page.
namestringoptionalFilter by account or deal name (partial match supported).
ownerstringoptionalFilter by owner email address.
websitestringoptionalFilter by account website domain.
sybilmcp_list_conversations#List sales conversations with optional filters for date range, meeting type, and attendees.9 params

List sales conversations with optional filters for date range, meeting type, and attendees.

NameTypeRequiredDescription
attendeesstringoptionalFilter conversations by attendee email address.
crm_namestringoptionalFilter by CRM name (e.g. Salesforce, HubSpot).
cursorstringoptionalPagination cursor from the previous response to fetch the next page.
limitintegeroptionalMaximum number of items to return per page.
meeting_typestringoptionalFilter conversations by meeting category (e.g. prospect_demo, customer_onboarding, one_on_one).
source_idstringoptionalFilter by source/integration ID.
started_afterstringoptionalReturn conversations that started after this ISO 8601 datetime.
started_beforestringoptionalReturn conversations that started before this ISO 8601 datetime.
titlestringoptionalFilter conversations by title (partial match supported).
sybilmcp_list_deals#List CRM deals with optional filters for name, stage, amount, owner, and close date.12 params

List CRM deals with optional filters for name, stage, amount, owner, and close date.

NameTypeRequiredDescription
amount_maxstringoptionalReturn deals with amount less than or equal to this value.
amount_minstringoptionalReturn deals with amount greater than or equal to this value.
close_date_afterstringoptionalReturn deals with close date after this date (YYYY-MM-DD).
close_date_beforestringoptionalReturn deals with close date before this date (YYYY-MM-DD).
closedstringoptionalFilter by closed status: true for closed deals, false for open.
cursorstringoptionalPagination cursor from the previous response to fetch the next page.
last_activity_afterstringoptionalReturn records with last activity after this ISO 8601 datetime.
last_activity_beforestringoptionalReturn records with last activity before this ISO 8601 datetime.
limitintegeroptionalMaximum number of items to return per page.
namestringoptionalFilter by account or deal name (partial match supported).
ownerstringoptionalFilter by owner email address.
stagestringoptionalFilter deals by pipeline stage name.