Skip to main content
Glama
dev993848

space-ngrams

by dev993848

space-ngrams

MCP server that gives AI agents superpowers to search through your codebase at lightning speed.

Space-nGrams connects to AI coding assistants (Claude Code, Codex CLI, Qwen CLI, OpenCode) and provides them with three essential tools: search code, find files, and read files. All powered by ripgrep for millisecond-level performance.


πŸ—οΈ How It Works

Architecture

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  AI Agent       β”‚     β”‚  Space-nGrams    β”‚     β”‚  ripgrep        β”‚
β”‚  (Claude Code,  │────▢│  MCP Server      │────▢│  (rg)           β”‚
β”‚   Qwen, etc.)   │◀────│  (Python)        │◀────│  Search Engine  β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜     β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜     β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
        β”‚                       β”‚                         β”‚
        β”‚                       β–Ό                         β”‚
        β”‚              β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”               β”‚
        β”‚              β”‚  Cache Layer     β”‚               β”‚
        β”‚              β”‚  (~/.space-ngramsβ”‚               β”‚
        β”‚              β”‚   /cache/)       β”‚               β”‚
        β”‚              β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜               β”‚
        β”‚                       β”‚                         β”‚
        β”‚                       β–Ό                         β”‚
        β”‚              β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”               β”‚
        └─────────────▢│  Metrics & Logs  β”‚β—€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                       β”‚  (~/.space-ngramsβ”‚
                       β”‚   /server.log)   β”‚
                       β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Why MCP?

MCP (Model Context Protocol) is a standard that allows AI agents to access external tools and data sources. Instead of embedding all your code into the AI's context (which is slow and expensive), Space-nGrams gives the AI the ability to:

  1. Search on demand β€” Find any pattern, function, or string in your codebase in milliseconds

  2. Navigate efficiently β€” Locate files by name, then read only what's needed

  3. Work with large codebases β€” No need to load everything into context

Why ripgrep?

  • Blazing fast β€” SIMD acceleration, regex compilation, parallel search

  • Smart filtering β€” Respects .gitignore, skips binary files

  • Rich output β€” JSON format with line numbers and context

  • Battle tested β€” Used by developers worldwide daily

Why caching?

Repeated searches are common when AI agents explore code. Our cache layer:

  • Stores results for 5 minutes (configurable)

  • Persists across sessions on disk

  • Reduces latency from ~100ms to ~2ms on cache hits

  • Automatically manages size limits (50 MB default)


Related MCP server: codeweave-mcp

⚑ Features

Feature

Benefit

Caching

10-50x faster for repeated searches

Metrics

Track performance and cache hit rates

Configuration

Customize limits, timeouts, ignore patterns

Logging

Debug issues via ~/.space-ngrams/server.log


πŸ› οΈ Tools

Tool

Description

search_code

Search for regex/string in code with context

find_files

Find files by glob pattern

read_file

Read file content (max 200 lines/call)

get_metrics

Get session performance statistics


πŸ“¦ Installation

1. Clone the repository

git clone https://github.com/your-username/space-ngrams.git
cd space-ngrams

2. Install ripgrep

# Windows
winget install BurntSushi.ripgrep.MSVC

# macOS
brew install ripgrep

# Linux
sudo apt install ripgrep

Verify: rg --version

3. Install Python dependencies

pip install mcp

4. Verify the server starts

python src/server.py

The process will wait on stdin β€” that's correct. Stop with Ctrl+C.


πŸ”Œ Connecting to AI Tools

Claude Code

claude mcp add space-ngrams -- python /path/to/space-ngrams/src/server.py

Verify:

claude mcp list
# space-ngrams: python ... - βœ“ Connected

Codex CLI

Add to ~/.codex/config.toml:

[mcp_servers.space-ngrams]
command = "python"
args = [ "/path/to/space-ngrams/src/server.py" ]

Qwen CLI

Add to ~/.qwen/settings.json:

{
  "mcpServers": {
    "space-ngrams": {
      "command": "python",
      "args": ["/path/to/space-ngrams/src/server.py"]
    }
  }
}

OpenCode

Add to opencode.json in your project root or home directory:

{
  "mcp": {
    "space-ngrams": {
      "type": "local",
      "command": ["python", "/path/to/space-ngrams/src/server.py"]
    }
  }
}

πŸ’¬ Usage

The AI agent automatically uses these tools when needed. You can also trigger them explicitly:

find all calls to getUserById in D:/Projects/MyApp
show all .ts files in the src folder
read D:/Projects/MyApp/src/auth/service.ts lines 50-100

Tool Parameters

search_code

Parameter

Required

Description

pattern

yes

Regex or literal string

path

yes

Directory or file to search in

file_glob

no

File type filter, e.g. *.py or **/*.ts

context_lines

no

Lines of context (default: 2)

find_files

Parameter

Required

Description

pattern

yes

Glob, e.g. *.py, **/*controller*

path

yes

Root directory to search in

max_results

no

Maximum results (default: 100)

read_file

Parameter

Required

Description

path

yes

Absolute or relative path

start

no

First line to read (default: 1)

end

no

Last line (inclusive)

get_metrics

Returns performance statistics:

{
  "search_code": {
    "total_calls": 15,
    "cache_hits": 8,
    "cache_hit_rate": 53.3,
    "avg_duration_ms": 45.2,
    "min_duration_ms": 2.1,
    "max_duration_ms": 234.5
  }
}

βš™οΈ Configuration

Create a config file at ./space-ngrams.toml (project-specific) or ~/.space-ngrams/config.toml (global):

[cache]
enabled = true
ttl_seconds = 300       # 5 minutes
max_size_mb = 50

[limits]
max_search_results = 50
max_files_results = 100
max_read_lines = 200
default_context_lines = 2
search_timeout_seconds = 15

[ignore_patterns]
# Additional patterns to ignore (beyond .gitignore)
ignore_patterns = [
    "*.log",
    "*.tmp",
    "node_modules/**",
    "__pycache__/**",
]

[metrics]
enabled = true

See space-ngrams.example.toml for a full example with comments.


πŸ“ Project Structure

space-ngrams/
β”œβ”€β”€ src/
β”‚   └── server.py           # MCP server implementation
β”œβ”€β”€ pyproject.toml          # Python package metadata
β”œβ”€β”€ space-ngrams.example.toml  # Example configuration
β”œβ”€β”€ LICENSE
β”œβ”€β”€ README.md               # This file (English)
β”œβ”€β”€ README_RU.md            # Russian translation
└── docs/
    └── ARCHITECTURE.md     # Architecture notes (optional)

πŸ“– Also available in Russian.


πŸ“Š Logs and Cache

Location

Purpose

~/.space-ngrams/server.log

Server logs and metrics

~/.space-ngrams/cache/

Persistent cache storage


πŸ“„ License

MIT

A
license - permissive license
-
quality - not tested
C
maintenance

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    C
    maintenance
    An MCP server for semantic code search & navigation that helps AI agents work efficiently without burning through costly tokens. Instead of reading entire files, agents can search conceptually and jump directly to the specific functions, classes, and code chunks they need.
    118
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    An MCP server that enables AI agents to navigate and understand codebases through file descriptions, semantic search, and code recommendations without repeatedly scanning files.
    MIT

View all related MCP servers

Related MCP Connectors

  • An MCP server that gives your AI access to the source code and docs of all public github repos

  • Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.

  • Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/dev993848/mcp-fast-search-code'

If you have feedback or need assistance with the MCP directory API, please join our Discord server