OAUTH 2.1
CODE REVIEW
Greptile MCP gives agents authenticated access to your code review data: list pull requests, inspect review comments, and trigger new Greptile code reviews.
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);
// Greptile tools scoped to this user
const { tools } = await sk.tools.listScopedTools("user_123", {
filter: { connectionNames: ["greptilmcp"], toolNames: [
"greptilmcp_list_pull_requests",
"greptilmcp_get_merge_request",
"greptilmcp_list_merge_request_comments"] },
pageSize: 100,
});
const agent = createReactAgent({ llm, tools });
await agent.invoke({ messages: [{ role: "user", content: "List open PRs on acme/api with unaddressed review comments" }] });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: ["greptilmcp"] }, pageSize: 100,
});
const res = await openai.chat.completions.create({
model: "gpt-5",
messages: [{ role: "user", content: "List open PRs on acme/api with unaddressed review comments" }],
tools,
});
// Execute the tool call with the user's vaulted greptilmcp 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: ["greptilmcp"] }, pageSize: 100,
});
const msg = await anthropic.messages.create({
model: "claude-sonnet-5",
max_tokens: 1024,
messages: [{ role: "user", content: "List open PRs on acme/api with unaddressed review comments" }],
tools,
});
// Tool call runs with the user's vaulted greptilmcp 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: ["greptilmcp"] }, pageSize: 100,
});
const agent = new Agent({
name: "greptilmcp_agent",
model: "gemini-2.5-pro",
instruction: "Greptile tools scoped to this user",
tools,
});
await agent.run("List open PRs on acme/api with unaddressed review comments");// shared token
audit → bot_service_account
// scalekit
audit → user_abc ✓