MCP Connector

Generate Project Context for LLM Conversations

MCP server for rule-based, task-focused project context selection - lets AI fetch relevant files and code excerpts on demand.

Maintainer of this project? Claim this page to edit the listing.


91
Spark score
out of 100
Updated last month
Version 0.6.2
Models

Add to Favorites

Why it matters

Enhance AI-assisted development by providing intelligent, context-aware file selection and generation for LLM interactions. Streamline code reviews, debugging, and feature development by giving AI precise project insights.

Outcomes

What it gets done

01

Intelligently select relevant files for LLM context using rule-based filtering.

02

Generate instant context and copy code snippets for LLM conversations.

03

Organize and create custom rules for AI-driven code analysis and refactoring.

04

Integrate with MCP for seamless AI access to project files.

Install

Add it to your toolbox

Run in your project directory:

curl -fsSL https://spark.entire.vc/get/vb-llm-context | bash

Overview

llm-context MCP server

llm-context provides rule-based, task-specific project context to LLMs via MCP tools that validate file selection, generate excerpted context, and fetch missing files on demand. Use it to scope LLM context precisely for a specific development task; always preview a rule's file selection and size before generating context from it.

What it does

llm-context provides smart, task-specific context management for LLM development workflows through composable YAML+Markdown rules that describe which project files to include and how to excerpt them. Rules fall into five categories: Prompt Rules (generate contexts), Filter Rules (control file inclusion), Instruction Rules (guidelines), Style Rules (coding standards), and Excerpt Rules (content extraction config) - and can be composed from reusable building blocks.

As an MCP server, it exposes tools so an AI assistant in chat can access additional project files without manual copy-paste: lc_outlines generates excerpted context from the current rule, lc_preview validates a rule's file selection and size before use, and lc_missing fetches specific files/implementations on demand. A companion CLI (lc-select, lc-context, lc-preview, etc.) supports the same workflow for humans and agents with shell access, and a Claude Code skill (installed via lc-init) interactively helps create focused, task-specific rules.

When to use - and when NOT to

Use this connector when you're working with an LLM on a specific task in a codebase and want it to have exactly the relevant files/excerpts - not the whole repo and not too little - with the ability to fetch more files mid-conversation as needed.

Do not skip lc-preview/lc_preview before using a new rule - it validates that the rule actually selects the right files and stays within a reasonable size, catching misconfigured rules before they waste context.

Inputs and outputs

lc_outlines and lc_preview take a root_path and rule_name. lc_missing takes root_path, a parameter type, data (e.g. a list of file paths), and a timestamp. Outputs are formatted project context (file contents or code excerpts), a validation preview (selected files and size), or the requested missing file contents.

Capabilities

  • lc_outlines: generate excerpted context from the current rule
  • lc_preview: validate a rule's file selection and size before generating context
  • lc_missing: fetch specific files or implementations on demand mid-conversation
  • CLI companions: lc-init, lc-select, lc-context, lc-set-rule, lc-outlines, lc-missing for shell-based workflows
  • Composable rule system (prompt/filter/instruction/style/excerpt rules) for reusable, project-specific context patterns

How to install

uv tool install "llm-context>=0.6.0"
cd <project-root>
lc-init

Add to Claude Desktop config:

{
  "mcpServers": {
    "llm-context": {
      "command": "uvx",
      "args": ["--from", "llm-context", "lc-mcp"]
    }
  }
}

lc-init also installs the lc-curate-context Claude Code skill for interactive rule creation.

Who it's for

Developers and AI agents working on focused tasks in large codebases who want precisely-scoped, on-demand project context instead of manually curating files for every LLM conversation.

Source code

LLM Context

License
PyPI version
Downloads

Smart context management for LLM development workflows. Share relevant project files instantly through intelligent selection and rule-based filtering.

The Problem

Getting the right context into LLM conversations is friction-heavy:

  • Manually finding and copying relevant files wastes time
  • Too much context hits token limits, too little misses important details
  • AI requests for additional files require manual fetching
  • Hard to track what changed during development sessions

The Solution

llm-context provides focused, task-specific project context through composable rules.

For humans using chat interfaces:

lc-select   # Smart file selection
lc-context  # Copy formatted context to clipboard
# Paste and work - AI can access additional files via MCP

For AI agents with CLI access:

lc-preview tmp-prm-auth    # Validate rule selects right files
lc-context tmp-prm-auth    # Get focused context for sub-agent

For AI agents in chat (MCP tools):

  • lc_outlines - Generate excerpted context from current rule
  • lc_preview - Validate rule effectiveness before use
  • lc_missing - Fetch specific files/implementations on demand

Note: This project was developed in collaboration with several Claude Sonnets (3.5, 3.6, 3.7, 4.0) and Groks (3, 4), using LLM Context itself to share code during development. All code is heavily human-curated by @restlessronin.

Installation

uv tool install "llm-context>=0.6.0"

For Agents (Claude Code skill)

If you're an agent setting llm-context up to help curate task contexts, run this once per project:

uv tool install "llm-context>=0.6.0"   # installs the lc-* commands globally
cd <project-root>
lc-init                                # creates .llm-context/, copies the lc-curate-context skill to .claude/skills/

After lc-init, the lc-curate-context skill loads in this project's Claude Code session. It teaches how to compose a minimal task rule and verify it with lc-preview before generating context.

To pick up a newer skill version, run uv tool upgrade llm-context and re-run lc-init - it refreshes the skill files in place.

Quick Start

Human Workflow (Clipboard)

# One-time setup
cd your-project
lc-init

# Daily usage
lc-select
lc-context
# Paste into your LLM chat

MCP Integration (Recommended)

Add to Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "llm-context": {
      "command": "uvx",
      "args": ["--from", "llm-context", "lc-mcp"]
    }
  }
}

Restart Claude Desktop. Now AI can access additional files during conversations without manual copying.

Agent Workflow (CLI)

AI agents with shell access use llm-context to create focused contexts:

# Agent explores codebase
lc-outlines

# Agent creates focused rule for specific task
# (via Skill or lc-rule-instructions)

# Agent validates rule
lc-preview tmp-prm-oauth-task

# Agent uses context for sub-task
lc-context tmp-prm-oauth-task

Agent Workflow (MCP)

AI agents in chat environments use MCP tools:

# Explore codebase structure
lc_outlines(root_path, rule_name)

# Validate rule effectiveness  
lc_preview(root_path, rule_name)

# Fetch specific files/implementations
lc_missing(root_path, param_type, data, timestamp)

Core Concepts

Rules: Task-Specific Context Descriptors

Rules are YAML+Markdown files that describe what context to provide for a task:

---
description: "Debug API authentication"
compose:
  filters: [lc/flt-no-files]
  excerpters: [lc/exc-base]
also-include:
  full-files: ["/src/auth/**", "/tests/auth/**"]
---
Focus on authentication system and related tests.

Five Rule Categories

  • Prompt Rules (prm-): Generate project contexts (e.g., lc/prm-developer)
  • Filter Rules (flt-): Control file inclusion (e.g., lc/flt-base, lc/flt-no-files)
  • Instruction Rules (ins-): Provide guidelines (e.g., lc/ins-developer)
  • Style Rules (sty-): Enforce coding standards (e.g., lc/sty-python)
  • Excerpt Rules (exc-): Configure content extraction (e.g., lc/exc-base)

Rule Composition

Build complex rules from simpler ones:

---
instructions: [lc/ins-developer, lc/sty-python]
compose:
  filters: [lc/flt-base, project-filters]
  excerpters: [lc/exc-base]
---

Essential Commands

Command Purpose
lc-init Initialize project configuration
lc-select Select files based on current rule
lc-context Generate and copy context
lc-context -p Include prompt instructions
lc-context -m Format as separate message
lc-context -nt No tools (manual workflow)
lc-set-rule <name> Switch active rule
lc-preview <rule> Validate rule selection and size
lc-outlines Get code structure excerpts
lc-missing Fetch files/implementations (manual MCP)

AI-Assisted Rule Creation

Let AI help create focused, task-specific rules. Two approaches depending on your environment:

Claude Skill (Interactive, Claude Desktop/Code)

How it works: Global skill guides you through creating rules interactively. Examines your codebase as needed using MCP tools.

Setup:

lc-init  # Installs skill to ~/.claude/skills/
# Restart Claude Desktop or Claude Code

Usage:

# 1. Share project context
lc-context  # Any rule - overview included

# 2. Paste into Claude, then ask:
# "Create a rule for refactoring authentication to JWT"
# "I need a rule to debug the payment processing"

Claude will:

  1. Use project overview already in context
  2. Examine specific files via lc-missing as needed
  3. Ask clarifying questions about scope
  4. Generate optimized rule (tmp-prm-<task>.md)
  5. Provide validation instructions

Skill documentation (progressively disclosed):

  • Skill.md - Quick workflow, decision patterns
  • PATTERNS.md - Common rule patterns
  • SYNTAX.md - Detailed reference
  • EXAMPLES.md - Complete walkthroughs
  • TROUBLESHOOTING.md - Problem solving

Instruction Rules (Works Anywhere)

How it works: Load comprehensive rule-creation documentation into context, work with any LLM.

Usage:

# 1. Load framework
lc-set-rule lc/prm-rule-create
lc-select
lc-context -nt

# 2. Paste into any LLM
# "I need a rule for adding OAuth integration"

# 3. LLM generates focused rule using framework

# 4. Use the new rule
lc-set-rule tmp-prm-oauth
lc-select
lc-context

Included documentation:

  • lc/ins-rule-intro - Introduction and overview
  • lc/ins-rule-framework - Complete decision framework

Comparison

Aspect Skill Instruction Rules
Setup Automatic with lc-init Already available
Interaction Interactive, uses lc-missing Static documentation
File examination Automatic via MCP Manual or via AI
Best for Claude Desktop/Code Any LLM, any environment
Updates Automatic with version upgrades Built-in to rules

Both require sharing project context first. Both produce equivalent results.

Project Customization

Create Base Filters

cat > .llm-context/rules/flt-repo-base.md << 'EOF'
---
description: "Repository-specific exclusions"
compose:
  filters: [lc/flt-base]
gitignores:
  full-files: ["*.md", "/tests", "/node_modules"]
  excerpted-files: ["*.md", "/tests"]
---
EOF

Create Development Rule

cat > .llm-context/rules/prm-code.md << 'EOF'
---
description: "Main development rule"
instructions: [lc/ins-developer, lc/sty-python]
compose:
  filters: [flt-repo-base]
  excerpters: [lc/exc-base]
---
Additional project-specific guidelines and context.
EOF

lc-set-rule prm-code

Deployment Patterns

Choose format based on your LLM environment:

Pattern Command Use Case
System Message lc-context -p AI Studio, etc.
Single User Message lc-context -p -m Grok, etc.
Separate Messages lc-prompt + lc-context -m Flexible placement
Project Files (included) lc-context Claude Projects, etc.
Project Files (searchable) lc-context -m Force into context

See Deployment Patterns for details.

Key Features

  • Intelligent Selection: Rules automatically include/exclude appropriate files
  • Context Validation: Preview size and selection before generation
  • Code Excerpting: Extract structure while reducing tokens (15+ languages)
  • MCP Integration: AI accesses additional files without manual intervention
  • Composable Rules: Build complex contexts from reusable patterns
  • AI-Assisted Creation: Interactive skill or documentation-based approaches
  • Agent-Friendly: CLI and MCP interfaces for autonomous operation

Common Workflows

Daily Development (Human)

lc-set-rule prm-code
lc-select
lc-context
# Paste into chat - AI accesses more files via MCP if needed

Focused Task (Human or Agent)

# Share project context first
lc-context

# Then create focused rule:
# Via Skill: "Create a rule for [task]"
# Via Instructions: lc-set-rule lc/prm-rule-create && lc-context -nt

# Validate and use
lc-preview tmp-prm-task
lc-context tmp-prm-task

Agent Context Provisioning (CLI)

# Agent validates rule effectiveness
lc-preview tmp-prm-refactor-auth

# Agent generates context for sub-agent
lc-context tmp-prm-refactor-auth > /tmp/context.md
# Sub-agent reads context and executes task

Agent Context Provisioning (MCP)

# Agent validates rule
preview = lc_preview(root_path="/path/to/project", rule_name="tmp-prm-task")

# Agent generates context
context = lc_outlines(root_path="/path/to/project")

# Agent fetches additional files as needed
files = lc_missing(root_path, "f", "['/proj/src/auth.py']", timestamp)

Path Format

All paths use project-relative format with project name prefix:

/{project-name}/src/module/file.py
/{project-name}/tests/test_module.py

This enables multi-project context composition without path conflicts.

In rules, patterns are project-relative without the prefix:

also-include:
  full-files:
    - "/src/auth/**"      # ✓ Correct
    - "/myproject/src/**" # ✗ Wrong - don't include project name

Learn More

License

Apache License, Version 2.0. See LICENSE for details.

FAQ

Common questions

Discussion

Questions & comments · 0

Sign In Sign in to leave a comment.