Skip to content
Scalekit Docs
Talk to an Engineer Dashboard

Jentic MCP connector

OAuth 2.1/DCR Developer ToolsAutomationAI

Connect to Jentic MCP. Search available API actions, load execution details, manage credentials, and execute API operations from your AI workflows.

Jentic 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 = 'jenticmcp'
    const identifier = 'user_123'
    // Generate an authorization link for the user
    const { link } = await actions.getAuthorizationLink({ connectionName: connector, identifier })
    console.log('Authorize Jentic 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: 'jenticmcp_list_credentials',
    toolInput: {},
    })
    console.log(result)

Connect this agent connector to let your agent:

  • Search apis — Search for available API actions based on a natural language description of what the user wants to do
  • Info load execution — Retrieve detailed information about a specific action before running it, including required inputs and parameters
  • List credentials — List all API credentials the authenticated agent has access to, showing which APIs are available to use
  • Execute records — Execute a specific API action using provided parameters, including any required inputs for the operation

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.

jenticmcp_execute # Execute a specific API action using provided parameters, including any required inputs for the operation. 1 param

Execute a specific API action using provided parameters, including any required inputs for the operation.

Name Type Required Description
params object required No description.
jenticmcp_list_credentials # List all API credentials the authenticated agent has access to, showing which APIs are available to use. 0 params

List all API credentials the authenticated agent has access to, showing which APIs are available to use.

jenticmcp_load_execution_info # Retrieve detailed information about a specific action before running it, including required inputs and parameters. 1 param

Retrieve detailed information about a specific action before running it, including required inputs and parameters.

Name Type Required Description
request object required No description.
jenticmcp_search_apis # Search for available API actions based on a natural language description of what the user wants to do. 1 param

Search for available API actions based on a natural language description of what the user wants to do.

Name Type Required Description
request object required No description.