OAUTH 2.1
B2B PROSPECTING
LeadIQ MCP gives agents authenticated access to B2B prospecting: find leads by ICP, enrich verified emails and phones, and build prospect lists.
import { ScalekitClient } from "@scalekit-sdk/node";
import { createReactAgent } from "@langchain/langgraph/prebuilt";
const sk = new ScalekitClient(env.SCALEKIT_ENV_URL, env.SCALEKIT_CLIENT_ID, env.SCALEKIT_CLIENT_SECRET);
// LeadIQ tools scoped to this user
const { tools } = await sk.tools.listScopedTools("user_123", {
filter: { connectionNames: ["leadiqmcp"], toolNames: [
"leadiqmcp_find_people",
"leadiqmcp_enrich_people",
"leadiqmcp_verify_email"] },
pageSize: 100,
});
const agent = createReactAgent({ llm, tools });
await agent.invoke({ messages: [{ role: "user", content: "Find VP Sales at Series B SaaS companies." }] });import OpenAI from "openai";
import { ScalekitClient } from "@scalekit-sdk/node";
const sk = new ScalekitClient(env.SCALEKIT_ENV_URL, env.SCALEKIT_CLIENT_ID, env.SCALEKIT_CLIENT_SECRET);
const openai = new OpenAI();
const { tools } = await sk.tools.listScopedTools("user_123", {
filter: { connectionNames: ["leadiqmcp"] }, pageSize: 100,
});
const res = await openai.chat.completions.create({
model: "gpt-5",
messages: [{ role: "user", content: "Verify the emails on my Q3 prospect list." }],
tools,
});
// Execute the tool call with the user's vaulted LeadIQ credential
await sk.tools.executeTool(res.choices[0].message.tool_calls[0], "user_123");import Anthropic from "@anthropic-ai/sdk";
import { ScalekitClient } from "@scalekit-sdk/node";
const sk = new ScalekitClient(env.SCALEKIT_ENV_URL, env.SCALEKIT_CLIENT_ID, env.SCALEKIT_CLIENT_SECRET);
const anthropic = new Anthropic();
const { tools } = await sk.tools.listScopedTools("user_123", {
filter: { connectionNames: ["leadiqmcp"] }, pageSize: 100,
});
const msg = await anthropic.messages.create({
model: "claude-sonnet-5",
max_tokens: 1024,
messages: [{ role: "user", content: "Enrich these 10 LinkedIn profiles with work emails." }],
tools,
});
// Tool call runs with the user's vaulted LeadIQ credential
await sk.tools.executeTool(msg.content, "user_123");import { Agent } from "@google/adk/agents";
import { ScalekitClient } from "@scalekit-sdk/node";
const sk = new ScalekitClient(env.SCALEKIT_ENV_URL, env.SCALEKIT_CLIENT_ID, env.SCALEKIT_CLIENT_SECRET);
const { tools } = await sk.tools.listScopedTools("user_123", {
filter: { connectionNames: ["leadiqmcp"] }, pageSize: 100,
});
const agent = new Agent({
name: "leadiq_prospecting_agent",
model: "gemini-2.5-pro",
instruction: "Run B2B prospecting in LeadIQ for the signed-in user.",
tools,
});
await agent.run("Who changed jobs in my target accounts this quarter?");// shared token
audit → bot_service_account
// scalekit
audit → user_abc ✓