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