Grep App MCP Server

Grep App MCP Server

Enables powerful code search across millions of public GitHub repositories using grep.app API, with capabilities to discover code examples, retrieve specific files, and batch fetch multiple files for learning from open source projects.

Category
Visit Server

README

Grep App MCP Server

A Model Context Protocol (MCP) server that provides powerful code search capabilities across public GitHub repositories using the grep.app API. Perfect for code discovery, learning from open source projects, and finding implementation examples.

šŸš€ Features

  • šŸ” Advanced Code Search: Search across millions of public repositories on GitHub
  • šŸ“ File Retrieval: Fetch specific files or batches of files from GitHub
  • šŸŽÆ Flexible Filtering: Filter by language, repository, file path, and more
  • šŸ“Š Multiple Output Formats: JSON, numbered lists, or formatted text
  • ⚔ Batch Operations: Retrieve multiple files efficiently in parallel
  • šŸ”„ Result Caching: Cache search results for quick file retrieval
  • šŸ“ Comprehensive Logging: Built-in logging with daily rotation

šŸ› ļø Installation & Setup

Prerequisites

  • Node.js 18+
  • npm or yarn
  • Claude Code CLI

Quick Start

  1. Clone or download this repository

    git clone https://github.com/ai-tools-all/grep_app_mcp.git
    cd grep_app_mcp
    
  2. Install dependencies

    npm install
    
  3. Build the project

    npm run build
    
  4. Test the server

    # HTTP mode (recommended for development)
    ./run.sh http dev
    
    # or STDIO mode
    ./run.sh stdio dev
    

šŸ”§ Adding to Claude Code

Method 1: Using MCP Configuration

Add this server to your Claude Code MCP configuration:

{
  "mcpServers": {
    "grep_app": {
      "command": "node",
      "args": ["/path/to/grep_app_mcp/dist/server-stdio.js"],
      "env": {}
    }
  }
}

Method 2: Using HTTP Transport

For HTTP mode, add to your configuration:

{
  "mcpServers": {
    "grep_app": {
      "url": "http://localhost:8603/mcp"
    }
  }
}

Then start the server:

./run.sh http prod

šŸ“– run.sh Usage

The run.sh script provides convenient ways to start the server:

Basic Usage

./run.sh [mode] [environment]

Modes

  • http - HTTP server with streaming support (default)
  • stdio - STDIO server for direct MCP integration

Environments

  • dev - Development mode with hot reload (default)
  • prod - Production mode (requires build step)

Examples

# Development (default) - HTTP server with hot reload
./run.sh

# Development - HTTP server  
./run.sh http dev

# Production - HTTP server
./run.sh http prod

# Development - STDIO server
./run.sh stdio dev

# Production - STDIO server  
./run.sh stdio prod

# Show help
./run.sh help

HTTP Endpoints (when using HTTP mode)

  • HTTP Streaming: http://localhost:8603/mcp
  • Server-Sent Events: http://localhost:8603/sse

šŸ”Ø Available Tools

1. searchCode

Search for code across public GitHub repositories.

Parameters:

  • query (required) - Search query string
  • jsonOutput - Return JSON format (default: false)
  • numberedOutput - Return numbered list format (default: false)
  • caseSensitive - Case-sensitive search
  • useRegex - Treat query as regex pattern
  • wholeWords - Search whole words only
  • repoFilter - Filter by repository name pattern
  • pathFilter - Filter by file path pattern
  • langFilter - Filter by programming language(s)

Example:

{
  "query": "async function fetchData",
  "langFilter": "TypeScript,JavaScript",
  "numberedOutput": true
}

2. github_file

Fetch a single file from a GitHub repository.

Parameters:

  • owner (required) - Repository owner
  • repo (required) - Repository name
  • path (required) - File path
  • ref (optional) - Branch/commit/tag reference

Example:

{
  "owner": "microsoft",
  "repo": "vscode", 
  "path": "src/vs/editor/editor.api.ts"
}

3. github_batch_files

Fetch multiple files from GitHub repositories in parallel.

Parameters:

  • files (required) - Array of file objects with owner, repo, path, and optional ref

Example:

{
  "files": [
    {"owner": "facebook", "repo": "react", "path": "packages/react/index.js"},
    {"owner": "microsoft", "repo": "TypeScript", "path": "src/compiler/types.ts"}
  ]
}

4. batch_retrieve_files

Retrieve files from previously cached search results.

Parameters:

  • query (required) - Original search query
  • resultNumbers (optional) - Array of result indices to retrieve

Example:

{
  "query": "tower_governor",
  "resultNumbers": [1, 2, 3]
}

šŸŽÆ Common Workflows

1. Code Discovery

# Search for React hooks examples
searchCode("useEffect cleanup", langFilter: "JavaScript,TypeScript")

# Retrieve specific files from results  
batch_retrieve_files(query: "useEffect cleanup", resultNumbers: [1, 3, 5])

2. Learning Patterns

# Find authentication implementations
searchCode("JWT authentication middleware", repoFilter: "*express*")

# Get specific implementation details
github_file(owner: "auth0", repo: "express-jwt", path: "lib/index.js")

3. API Research

# Discover API patterns
searchCode("GraphQL resolver", pathFilter: "*/resolvers/*")

# Compare multiple implementations
github_batch_files([
  {owner: "apollographql", repo: "apollo-server", path: "packages/apollo-server-core/src/resolvers.ts"},
  {owner: "graphql", repo: "graphql-js", path: "src/execution/execute.js"}
])

šŸ“‹ Development

Available Scripts

  • npm run build - Build TypeScript to JavaScript
  • npm run start - Start production HTTP server
  • npm run start-stdio - Start production STDIO server
  • npm run dev - Start development HTTP server with hot reload
  • npm run dev-stdio - Start development STDIO server with hot reload
  • npm run test-client - Run test client

Project Structure

src/
ā”œā”€ā”€ core/           # Core utilities (logger, types)
ā”œā”€ā”€ tools/          # MCP tool implementations
ā”œā”€ā”€ server.ts       # HTTP server entry point
└── server-stdio.ts # STDIO server entry point

šŸ“ Logging

The server includes comprehensive logging with daily rotation:

  • Location: logs/ directory
  • Rotation: Daily with date-based filenames
  • Levels: error, warn, info, debug
  • Format: JSON with timestamps

šŸ¤ Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

šŸ“„ License

ISC License - see package.json for details

šŸ”— Related

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured