Best for
- Developers using LLM-assisted development with Claude Desktop or other MCP-supported chat interfaces.
- Teams needing to provide precise project context to AI agents.
- Those who want to reduce manual copy-paste and optimize token usage.
LLM Context is a practical MCP server focused on simplifying code sharing through rule-driven context management. It offers flexible customization and intelligent file selection, making it ideal for integration with MCP-capable tools like Claude Desktop. Community-maintained with quality code, but users should be mindful of permissions and potential sensitive information risks.
LLM Context is a community-maintained MCP server that shares relevant project files with large language models via stdio, using rule-based customization. It enables intelligent file selection, composable rules, code excerpting, and on-demand file retrieval through MCP tools (lc_outlines, lc_preview, lc_missing). It is developed by cyberchitta and licensed under Apache-2.0.
Install via pip: pip install llm-context. Then add the MCP server to Claude Desktop configuration: in claude_desktop_config.json, set an mcpServers entry with command uvx and args --from llm-context lc-mcp.
{
"mcpServers": {
"llm-context": {
"command": "uvx",
"args": [
"--from",
"llm-context",
"lc-mcp"
]
}
}
}