View as Markdown
Greptile icon

Greptile ACTION

Query Codebase

Search the user's codebase using a natural language query. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Greptile account once, then configure and run Query Codebase from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "greptile-query-codebase",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    greptile: { authProvisionId: "apn_xxxxxxx" },
    query: "Query",
    repositories: ["Repositories"],
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Query Codebase inputs
Property Type Description
query Query string
A string containing the question in natural language.
Required
repositories Repositories string[]
List of repositories indexed in Greptile to reference while answering your question. Array of JSON objects with keys remote, branch and repository eg. {"remote":"github","branch":"main","repository":"PipedreamHQ/pipedream"}
Required
sessionId Session ID string
Only use this if you intend to need to retrieve chat history later.
Optional
genius Genius boolean
Genius requests are smarter but 8-10 seconds slower, great for complex usecases like reviewing PR and updating technical docs.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
greptile-query-codebase
Version
0.0.2
App
Greptile
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes