Sybill MCP connector
OAuth 2.1/DCRCRM & SalesAIAnalyticsConnect to Sybill. Access AI-generated summaries of sales calls, deals, accounts, and conversations to accelerate B2B revenue workflows.
Sybill MCP connector
-
Install the SDK
Section titled “Install the SDK”Terminal window npm install @scalekit-sdk/nodeTerminal window pip install scalekit -
Set your credentials
Section titled “Set your credentials”Add your Scalekit credentials to your
.envfile. 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> -
Authorize and make your first call
Section titled “Authorize and make your first call”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.actionsconst connector = 'sybilmcp'const identifier = 'user_123'// Generate an authorization link for the userconst { 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 callconst result = await actions.executeTool({connector,identifier,toolName: 'sybilmcp_list_accounts',toolInput: {},})console.log(result)quickstart.py import osfrom scalekit.client import ScalekitClientfrom dotenv import load_dotenvload_dotenv()scalekit_client = ScalekitClient(env_url=os.getenv("SCALEKIT_ENV_URL"),client_id=os.getenv("SCALEKIT_CLIENT_ID"),client_secret=os.getenv("SCALEKIT_CLIENT_SECRET"),)actions = scalekit_client.actionsconnection_name = "sybilmcp"identifier = "user_123"# Generate an authorization link for the userlink_response = actions.get_authorization_link(connection_name=connection_name,identifier=identifier,)print("Authorize Sybill MCP:", link_response.link)input("Press Enter after authorizing...")# Make your first callresult = actions.execute_tool(tool_input={},tool_name="sybilmcp_list_accounts",connection_name=connection_name,identifier=identifier,)print(result)
What you can do
Section titled “What you can do”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
Tool list
Section titled “Tool list”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.
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.
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.
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.
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.
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.
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.
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.