Skip to content
Scalekit Docs
Talk to an Engineer Dashboard

Sybill MCP connector

OAuth 2.1/DCR CRM & 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.

Name Type Required Description
message string required Your 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.

Name Type Required Description
account_id string required Unique 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.

Name Type Required Description
conversation_id string required Unique 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.

Name Type Required Description
deal_id string required Unique 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.

Name Type Required Description
created_after string optional Return records created after this ISO 8601 datetime.
created_before string optional Return records created before this ISO 8601 datetime.
cursor string optional Pagination cursor from the previous response to fetch the next page.
last_activity_after string optional Return records with last activity after this ISO 8601 datetime.
last_activity_before string optional Return records with last activity before this ISO 8601 datetime.
limit integer optional Maximum number of items to return per page.
name string optional Filter by account or deal name (partial match supported).
owner string optional Filter by owner email address.
website string optional Filter 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.

Name Type Required Description
attendees string optional Filter conversations by attendee email address.
crm_name string optional Filter by CRM name (e.g. Salesforce, HubSpot).
cursor string optional Pagination cursor from the previous response to fetch the next page.
limit integer optional Maximum number of items to return per page.
meeting_type string optional Filter conversations by meeting category (e.g. prospect_demo, customer_onboarding, one_on_one).
source_id string optional Filter by source/integration ID.
started_after string optional Return conversations that started after this ISO 8601 datetime.
started_before string optional Return conversations that started before this ISO 8601 datetime.
title string optional Filter 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.

Name Type Required Description
amount_max string optional Return deals with amount less than or equal to this value.
amount_min string optional Return deals with amount greater than or equal to this value.
close_date_after string optional Return deals with close date after this date (YYYY-MM-DD).
close_date_before string optional Return deals with close date before this date (YYYY-MM-DD).
closed string optional Filter by closed status: true for closed deals, false for open.
cursor string optional Pagination cursor from the previous response to fetch the next page.
last_activity_after string optional Return records with last activity after this ISO 8601 datetime.
last_activity_before string optional Return records with last activity before this ISO 8601 datetime.
limit integer optional Maximum number of items to return per page.
name string optional Filter by account or deal name (partial match supported).
owner string optional Filter by owner email address.
stage string optional Filter deals by pipeline stage name.