Skip to main content
Glama
LIVELUCKY

fastcontext_explore

by LIVELUCKY

FastContext Integrations

Your coding agent is wasting tokens. In GPT-5.4 trajectories, reading and searching account for 56% of all tool-use turns and 47% of the main agent's total tokens — just to locate the relevant code. FastContext offloads that entirely to a dedicated subagent, so your main agent receives clean file:line citations instead of a long trail of exploratory reads.

The result: up to +5.5% accuracy and up to 60% fewer tokens on SWE-bench benchmarks.

This repo is the MCP glue that wires FastContext into every major editor with one click.

FastContext — AI-Powered Codebase Intelligence Image created using Nano Banana

fastcontext_explore("where are webhook signatures verified?")
→  src/auth/webhook.py:42-61
→  config/secrets.py:18

Your agent reads those two ranges. Done.

The model

FastContext-1.0 is a model family purpose-trained for repository exploration by Microsoft Research (arXiv:2606.14066). It is not a general LLM asked to search code — it is trained end-to-end on exploration trajectories using SFT then refined with task-grounded RL (GRPO), with rewards based on file- and line-level F1.

At each turn it issues parallel READ / GLOB / GREP tool calls, refines based on observations, and stops with a compact <final_answer> citation block. Nothing more enters the main agent's context.

Model family

Variant

Backbone

Best for

HuggingFace ID

FC-4B-SFT

Qwen3-4B-Instruct

CPU / any GPU, turnkey

microsoft/FastContext-1.0-4B-SFT

FC-4B-RL

Qwen3-4B-Instruct

Best 4B quality (RL-refined)

microsoft/FastContext-1.0-4B-RL

FC-30B-SFT

Qwen3-Coder-30B-A3B

Max quality, GPU server

microsoft/FastContext-1.0-30B-SFT

GGUF / MLX

any of the above

llama.cpp / Apple Silicon

search HuggingFace for FastContext GGUF / FastContext MLX

All variants support up to 262K token context.

The compact 4B-RL explorer can outperform the larger 30B-SFT — e.g. on SWE-bench Pro with GLM-5.1 it reaches 22.5 vs. 20.0 while using fewer tokens.

Where to download

Once loaded, copy the model ID exactly as shown by your runtime and paste it into --model.

Why it's fast

  • Small by design: a 4B model laser-focused on one task beats a 70B generalist at it.

  • Parallel tool calls in a single turn: covers multiple search hypotheses at once.

  • Local and private: no code leaves your machine, no API cost per search.

Related MCP server: quick-search

Install

Add to Cursor Install in VS Code Install in VS Code Insiders

Claude Code (no button — one command):

claude mcp add fastcontext -- uvx --from git+https://github.com/LIVELUCKY/fastcontext-integrations fastcontext-mcp \
  --base-url http://localhost:1234/v1 --model your-model-id --api-key lm-studio

After clicking a button or running the command, set --model to the exact ID your runtime shows for the loaded model. Using a remote API? Keep the key secure — see docs/SETUP.md#secure-api-keys.

Prerequisites (once)

# 1. uv (the Python tool runner)
curl -LsSf https://astral.sh/uv/install.sh | sh

# 2. the FastContext explorer CLI on your PATH
uv tool install git+https://github.com/microsoft/fastcontext

# 3. a FastContext model loaded in an OpenAI-compatible runtime
#    e.g. LM Studio: search "FastContext", download FC-4B-SFT or FC-4B-RL,
#    Developer tab → Start Server (serves http://localhost:1234/v1, no API key needed)

No clone, no absolute paths, no environment variables: the server runs via uvx straight from this repo and takes its connection from the --base-url / --model / --api-key args. Full details in docs/SETUP.md.

Per-editor setup

Click the Install in VS Code button above — it registers the server directly in VS Code, which Copilot agent mode uses. Or copy examples/vscode.mcp.json into your project's .vscode/mcp.json (top-level key is servers, not mcpServers). Enable agent mode — fastcontext_explore appears in the tool picker. Add the usage guidance to .github/copilot-instructions.md.

Run the claude mcp add command above, or copy examples/claude-code.mcp.json to your project root as .mcp.json. Append prompts/fastcontext-usage.md to your CLAUDE.md.

Prefer the upstream-style skill (the CLI directly, reads env vars instead of args)? See examples/claude-code-skill/SKILL.md.

Add examples/codex.config.toml to ~/.codex/config.toml (header is [mcp_servers.fastcontext] — underscore). Append the usage guidance to your AGENTS.md.

Click Add to Cursor above, or copy examples/cursor.mcp.json into .cursor/mcp.json. Add the usage guidance as a .cursor/rules/fastcontext.mdc rule.

Merge examples/cline.mcp.json into Cline's MCP settings (autoApprove is pre-set for the read-only tool).

Copy examples/windsurf.mcp.json to ~/.codeium/windsurf/mcp_config.json (global) or merge into your project's .windsurf/mcp.json (local). The format is the same mcpServers object used by Cursor and Claude Code. Add the usage guidance as a Windsurf rule.

Any MCP client: register the command uvx --from git+https://github.com/LIVELUCKY/fastcontext-integrations fastcontext-mcp --base-url ... --model ....

Any shell-capable agent without MCP: install the FastContext CLI and run fastcontext -q "<question>" --citation directly (reads BASE_URL/MODEL/API_KEY from the environment). Guidance: prompts/fastcontext-usage.md.

Make the agent actually delegate

Add prompts/fastcontext-usage.md to your agent's instructions. Without it, agents tend to ignore the tool or re-scan the repo after calling it — which erases the savings. (Where it goes per client.)

Updating

uvx caches the server by commit and does not auto-update. When a new version lands, the server logs update available: vX.Y.Z on startup (visible in your client's MCP logs). Pull it with one command:

uvx --refresh --from git+https://github.com/LIVELUCKY/fastcontext-integrations fastcontext-mcp --help

Then restart your client. (Or uv cache clean fastcontext-mcp to force a rebuild on next launch.)

Verify

./scripts/fastcontext-check.sh /path/to/any/repo \
  --base-url http://localhost:1234/v1 --model your-model-id

What's in here

fastcontext_mcp.py        zero-dependency MCP server (connection via args)
pyproject.toml            makes it runnable as `uvx --from git+<repo> fastcontext-mcp`
examples/                 copy-paste config per editor (+ optional Claude skill)
prompts/                  the "when/how to delegate" usage prompt
scripts/                  make-install-buttons.py (regenerate badges), fastcontext-check.sh
docs/                     SETUP.md, TROUBLESHOOTING.md

Credits & license

FastContext is by Microsoft Research, MIT-licensed (github.com/microsoft/fastcontext, arXiv:2606.14066). The optional Claude skill and the usage prompt are adapted from that repo. This integration layer is MIT-licensed (see LICENSE). Not affiliated with or endorsed by Microsoft.

Available Tools

1 tool
fastcontext_exploreA

Find where code lives in this repo. Delegates read-only exploration to FastContext and returns verified path:line citations. Call it before editing/reviewing/debugging when unsure where the relevant code is; then open only the cited ranges.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesOne specific request naming the behavior, symbol, error, or file. Specific beats vague (e.g. 'where webhook signatures are verified').
max_turnsNoOptional turn budget. Omit to auto-tune; set higher for deep cross-file traces.
repo_pathNoRepo or monorepo-subfolder to explore. Defaults to the server's repo/cwd.
citation_onlyNoDefault true (citations only). False adds a short explanation.

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description clearly discloses the read-only nature, delegation to FastContext, and return format of verified path:line citations. However, it omits potential error handling or authentication requirements. Given no annotations, the description carries full burden but still provides strong transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise with two sentences that front-load key purpose and usage instructions. Every sentence adds value with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 4 parameters, 100% schema coverage, and no output schema, the description adequately covers purpose, usage, and parameter semantics. The return value is described as verified citations, which is sufficient for an exploration tool, though more detail on error output could improve completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds meaningful guidance beyond the schema, like specifying that query should be specific with an example, explaining max_turns for auto-tuning versus deep traces, and clarifying defaults for repo_path and citation_only.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb-resource pair ('Find where code lives') and distinguishes itself from edit-review-debug tools by explicitly delegating to FastContext for read-only exploration.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly states when to use the tool ('before editing/reviewing/debugging when unsure') and provides a follow-up action ('then open only the cited ranges').

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A4.5/5.0
Disambiguation5/5

With only one tool, there is no risk of confusion or overlap between tools. The agent will always select the correct tool.

Naming Consistency5/5

A single tool has a consistent name that clearly describes its purpose ('explore'). There is no pattern mismatch.

Tool Count3/5

The server only provides one tool, which is at the low end of the typical range. While it may be sufficient for the narrow scope of exploration, it feels thin compared to most servers.

Completeness4/5

For the stated purpose of read-only code exploration and citation retrieval, the tool appears complete. Minor gaps (e.g., no search or filter options) are outside its scope.

Maintenance

ActivityStale
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

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

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    Agent-safe code retrieval MCP server that indexes repositories and provides semantic search, file navigation, call graph analysis, and bounded file reading tools for coding agents.
    3,448,419
    3
    AGPL 3.0
  • A
    license
    Not graded
    quality
    D
    maintenance
    A FastMCP server for bounded, keyword-driven repository context search, enabling efficient codebase exploration with snippet extraction and focused code block retrieval.
    GPL 3.0
  • A
    license
    Not graded
    quality
    B
    maintenance
    Semantic + lexical code search as an MCP server. Agents query in natural language and get back ranked file:line ranges to read precisely.
    15
    1
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    Provides coding agents with searchable codebase context through an MCP server, enabling hybrid BM25 and semantic search, symbol graph navigation, and dependency mapping over an incrementally maintained repository index.
    85
    Apache 2.0

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/LIVELUCKY/fastcontext-integrations'

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