Skip to main content
Glama

Code Reference Optimizer MCP Server

by FosterG4

Code Reference Optimizer MCP Server

node version license

An advanced MCP (Model Context Protocol) server that intelligently extracts minimal, relevant code context using AST parsing, analyzes code differences, and optimizes imports to dramatically reduce token usage for AI assistants.

Key Features

  • Smart Context Extraction: Uses AST parsing to identify and extract only relevant code sections
  • Multi-language Support: TypeScript/JavaScript, Python, Go, Rust, Java, C++, and more
  • Intelligent Caching: LRU cache with configurable persistence and customizable storage paths
  • Token Optimization: Filters unnecessary code while maintaining semantic completeness
  • Diff Analysis: Provides minimal, focused code differences with semantic understanding
  • Import Optimization: Eliminates unused imports and suggests consolidation opportunities
  • Configurable: Runtime configuration via tools with persistent settings
  • Simple Integration: stdio-based server and optional HTTP server, easy to integrate with any MCP client

Quick Start (STDIO)

  • One-off (recommended):
npx -y @fosterg4/mcpsaver

You should see: Code Reference Optimizer MCP server running on stdio.

  • Global (optional):
npm i -g @fosterg4/mcpsaver mcpsaver

HTTP Mode

Start the HTTP server on port 8081 (default):

npx -y @fosterg4/mcpsaver mcpsaver-http # or after build npm run start:http

Configure your MCP client to use the HTTP binary if supported, e.g.:

{ "mcpServers": { "mcpsaver": { "command": "mcpsaver-http", "env": { "PORT": "8081", "LOG_LEVEL": "info" } } } }

Use with an MCP client

Add to your MCP client config (example mcpServers.json):

{ "mcpServers": { "mcpsaver": { "command": "npx", "args": ["-y", "@fosterg4/mcpsaver"], "env": {} } } }

Available Tools

The server provides 7 powerful tools for code analysis and optimization:

🔍 extract_code_context

Extracts minimal, focused code context using AST parsing. Intelligently identifies relevant code sections, imports, and dependencies for specific symbols.

{ "filePath": "path/to/file.ts", "targetSymbols": ["myFunc", "MyClass"], "includeImports": true, "maxTokens": 1000 }

Required: filePath | Optional: targetSymbols, includeImports, maxTokens

💾 get_cached_context

Retrieves previously extracted and cached code context for fast access without re-parsing.

{ "filePath": "path/to/file.ts", "cacheKey": "optional-key" }

Required: filePath | Optional: cacheKey

📊 analyze_code_diff

Performs intelligent analysis of code differences with semantic understanding and minimal update suggestions.

{ "filePath": "path/to/file.ts", "oldContent": "export function a() { return 1 }", "newContent": "export function a() { return 2 }" }

Required: filePath, oldContent, newContent

🧹 optimize_imports

Analyzes and optimizes import statements to eliminate redundancy and improve code efficiency.

{ "filePath": "path/to/file.ts", "usedSymbols": ["useEffect", "useMemo"] }

Required: filePath | Optional: usedSymbols

⚙️ get_config

Retrieves current configuration settings for cache behavior, extraction parameters, and more.

{ "section": "cache" }

Optional: section (cache, extraction, imports, diff, performance, languages, logging, security)

🔧 update_config

Updates configuration settings including cache policies, token limits, and performance thresholds.

{ "config": { "cache": { "enablePersistence": true, "persistencePath": "/custom/cache/path" }, "extraction": { "maxTokens": 2000 } } }

Required: config

🔄 reset_config

Resets all configuration settings to default values.

{}

No parameters required

Note: Tool results are returned as MCP content with a single text item containing JSON of the result, e.g.

{ "content": [{ "type": "text", "text": "{\n \"...\": true\n}" }] }

Additional MCP Capabilities

  • Prompts: listed but empty; get_prompt returns MethodNotFound.
  • Resources: listed but empty; reading a resource returns MethodNotFound.
  • Roots: exposes the current working directory as a single root workspace.
  • Sampling: stubbed; sampling/createMessage returns MethodNotFound.

Examples

See docs/EXAMPLES.md for end‑to‑end request examples of each tool.

Configuration

  • Call get_config, update_config, reset_config to manage runtime settings.
  • You may also set environment variables via your MCP client if supported (e.g., LOG_LEVEL).

Structured Logging

The server uses a lightweight structured logger. Configure via get_config/update_config or env:

  • Level: config.logging.level (trace|debug|info|warn|error)
  • File logging: config.logging.enableFileLogging and config.logging.logPath

Development

npm ci npm run build npm start # run built server (stdio) npm run start:http # run built server (http) npm run dev # tsc --watch npm test npm run lint npm run type-check

Publishing (maintainers)

npm login npm run clean && npm run build npm version patch npm publish --access public

License

MIT — see LICENSE.

Deploy Server
-
security - not tested
A
license - permissive license
-
quality - not tested

local-only server

The server can only run on the client's local machine because it depends on local resources.

Extracts minimal, relevant code context from multiple programming languages while analyzing diffs and optimizing imports to reduce token usage for AI assistants. Supports TypeScript/JavaScript, Python, Go, and Rust with token-aware caching.

  1. Key Features
    1. Quick Start (STDIO)
      1. HTTP Mode
        1. Use with an MCP client
          1. Available Tools
            1. 🔍 extract_code_context
            2. 💾 get_cached_context
            3. 📊 analyze_code_diff
            4. 🧹 optimize_imports
            5. ⚙️ get_config
            6. 🔧 update_config
            7. 🔄 reset_config
          2. Additional MCP Capabilities
            1. Examples
              1. Configuration
                1. Structured Logging
              2. Development
                1. Publishing (maintainers)
                  1. License

                    Related MCP Servers

                    • A
                      security
                      A
                      license
                      A
                      quality
                      Fetches and extracts comprehensive package documentation from multiple programming language ecosystems (JavaScript, Python, Java, etc.) for LLMs like Claude without requiring API keys.
                      Last updated -
                      4
                      25
                      14
                      MIT License
                      • Apple
                      • Linux
                    • A
                      security
                      A
                      license
                      A
                      quality
                      Provides code context and analysis for AI assistants by extracting directory structures and code symbols using WebAssembly Tree-sitter parsers with zero native dependencies.
                      Last updated -
                      1
                      37
                      15
                      MIT License
                      • Linux
                      • Apple
                    • A
                      security
                      A
                      license
                      A
                      quality
                      Provides intelligent context management for AI development sessions, allowing users to track token usage, manage conversation context, and seamlessly restore context when reaching token limits.
                      Last updated -
                      8
                      3
                      2
                      Apache 2.0
                      • Linux
                      • Apple
                    • -
                      security
                      A
                      license
                      -
                      quality
                      Provides AI coding assistants with context optimization tools including targeted file analysis, intelligent terminal command execution with LLM-powered output extraction, and web research capabilities. Helps reduce token usage by extracting only relevant information instead of processing entire files and command outputs.
                      Last updated -
                      21
                      41
                      TypeScript
                      MIT License

                    View all related MCP servers

                    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/FosterG4/mcpsaver'

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