Probe

v0.6.0-rc319Search & Data Extractionstable

AI-friendly semantic code search engine for large codebases. Combines ripgrep speed with tree-sitter AST parsing. Powers AI coding assistants with precise, context-aware code understanding.

aiai-coderastclicode-search
Share:
607
Stars
0
Downloads
0
Weekly
0/5

What is Probe?

Probe is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to ai-friendly semantic code search engine for large codebases. combines ripgrep speed with tree-sitter ast parsing. powers ai coding assistants with precise, context-aware code understanding.

AI-friendly semantic code search engine for large codebases. Combines ripgrep speed with tree-sitter AST parsing. Powers AI coding assistants with precise, context-aware code understanding.

This server falls under the Search & Data Extraction category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • AI-friendly semantic code search engine for large codebases.

Use Cases

AI-friendly semantic code search
Ripgrep speed with AST parsing
Context-aware codebase understanding
probelabs

Maintainer

LicenseApache-2.0
Languagerust
Versionv0.6.0-rc319
UpdatedMay 21, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

NPM

npx -y @probelabs/probe

Manual Installation

npx -y @probelabs/probe

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Probe

Probe is an AI-optimized semantic code search engine that combines ripgrep's speed with tree-sitter AST parsing to give AI coding assistants precise, context-aware answers about large codebases. It exposes four core MCP tools — Search (boolean keyword queries), Query (structural AST pattern matching), Extract (retrieves complete code blocks by symbol or line), and Symbols (lists all functions, classes, and constants) — and includes token-aware context management so results fit within LLM input budgets. Developers integrate it with Claude Code or other MCP clients to answer architecture questions, perform guided refactoring, and review code across repositories with millions of lines.

Prerequisites

  • Node.js (for npm installation) or Rust toolchain (for source builds)
  • An MCP client such as Claude Desktop or Claude Code
  • Optional: an API key (ANTHROPIC_API_KEY, OPENAI_API_KEY, or GOOGLE_API_KEY) if using Probe's built-in agent mode independently of Claude Code
1

Install Probe via npm

The npm install is the fastest way to get the Probe binary on any platform with Node.js.

npm install -g @probelabs/probe
2

Alternatively install via curl (macOS/Linux)

A shell script installer is available if you prefer not to use npm.

curl -fsSL https://raw.githubusercontent.com/probelabs/probe/main/install.sh | bash
3

Verify the installation

Confirm the probe binary is accessible and check its version.

probe --version
4

Configure Probe as an MCP server in Claude Desktop

Add the Probe server entry to your Claude Desktop configuration file so it is available in every conversation. Probe will search from your working directory by default.

5

Point Probe at a codebase

When starting a conversation, tell Claude where to search by specifying a directory. Probe will index and search that directory using ripgrep and tree-sitter.

Probe Examples

Client configuration

Claude Desktop configuration for the Probe MCP server using the globally installed npm binary.

{
  "mcpServers": {
    "probe": {
      "command": "npx",
      "args": ["-y", "@probelabs/probe"],
      "env": {}
    }
  }
}

Prompts to try

Example prompts that leverage Probe's search, query, extract, and symbols tools.

- "Search the codebase for how authentication is implemented and summarize the flow"
- "List all functions in the auth module and show their signatures"
- "Find all usages of the UserService class and identify which methods are called most"
- "Search for 'database NOT sqlite' to find non-SQLite database calls in the project"
- "Extract the full source of the handleLogin function and review it for security issues"

Troubleshooting Probe

Search returns no results even for strings that exist in the codebase

Ensure Probe has read access to the target directory and that the path is correct. Probe respects .gitignore by default — if your files are excluded, add them or use the --no-ignore flag.

AST-based Query tool fails on certain file types

Query relies on tree-sitter grammars. Not all languages are supported. Use the Search tool as a fallback for file types that Query cannot parse; it falls back to text matching automatically.

Context window errors when searching very large codebases

Probe's token-aware context management trims results to fit the LLM's input budget. If results are still too large, narrow your search by targeting a specific subdirectory or adding more specific search terms to reduce the match count.

Frequently Asked Questions about Probe

What is Probe?

Probe is a Model Context Protocol (MCP) server that ai-friendly semantic code search engine for large codebases. combines ripgrep speed with tree-sitter ast parsing. powers ai coding assistants with precise, context-aware code understanding. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Probe?

Install via npm with the command: npx -y @probelabs/probe. Then add the server configuration to your AI client's JSON config file (e.g., claude_desktop_config.json or .cursor/mcp.json).

Which AI clients work with Probe?

Probe works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Probe free to use?

Yes, Probe is open source and available under the Apache-2.0 license. You can use it freely in both personal and commercial projects.

Browse More Search & Data Extraction MCP Servers

Explore all search & data extraction servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "probe": { "command": "npx", "args": ["-y", "@probelabs/probe"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Probe?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides