Install
$ agentstack add mcp-n0zer0d4y-athena-protocol ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Athena Protocol MCP Server: A Precursor to Context Orchestration Protocol
[](https://registry.modelcontextprotocol.io/?search=io.github.n0zer0d4y/athena-protocol)
[](https://github.com/RichardLitt/standard-readme)
[](https://mseep.ai/app/n0zer0d4y-athena-protocol)
An intelligent MCP server that acts as an AI tech lead for coding agents—providing expert validation, impact analysis, and strategic guidance before code changes are made. Like a senior engineer reviewing your approach, Athena Protocol helps AI agents catch critical issues early, validate assumptions against the actual codebase, and optimize their problem-solving strategies. The result: higher quality code, fewer regressions, and more thoughtful architectural decisions.
Key Feature: Precision file analysis with analysisTargets - achieve 70-85% token reduction and 3-4× faster performance with precision-targeted code analysis. See [Enhanced File Analysis](#enhanced-file-analysis-new) for details
Context Orchestration Protocol: The Future of AI-Assisted Development
Imagine LLMs working with context so refined and targeted that they eliminate guesswork, reduce errors by 80%, and deliver code with the precision of seasoned architects—transforming how AI agents understand and enhance complex codebases.
Table of Contents
- [Security](#security)
- [Background](#background)
- [Install](#install)
- [Usage](#usage)
- [API](#api)
- [Contributing](#contributing)
- [License](#license)
Security
This server handles API keys for multiple LLM providers. Ensure your .env file is properly secured and never committed to version control. The server validates all API keys on startup and provides detailed error messages for configuration issues.
Background
The Athena Protocol MCP Server provides systematic thinking validation for AI coding agents. It supports 14 LLM providers and offers various validation tools including thinking validation, impact analysis, assumption checking, dependency mapping, and thinking optimization.
Key features:
- Smart Client Mode with precision-targeted code analysis (70-85% token reduction)
- Environment-driven configuration with no hardcoded defaults
- Multi-provider LLM support (14 providers) with automatic fallback
- Enhanced file reading with multiple modes (full, head, tail, range)
- Concurrent file operations for 3-4× performance improvement
- Session-based validation history and memory management
- Comprehensive configuration validation and health monitoring
- Dual-agent architecture for efficient validation workflows
Install
This module depends upon a knowledge of Node.js and npm.
npm install
npm run build
Prerequisites
- Node.js >= 18
- npm or yarn
Configuration
The Athena Protocol uses 100% environment-driven configuration - no hardcoded provider values or defaults. Configure everything through your .env file:
- Copy the example configuration:
cp .env.example .env
- Edit
.envand configure your provider:
- Set
DEFAULT_LLM_PROVIDER(e.g.,openai,anthropic,google) - Add your API key for the chosen provider
- Configure model and parameters (optional)
- Validate and test:
``bash npm install npm run build npm run validate-config # Validates your .env configuration npm test ``
See .env.example for complete configuration options and all 14 supported providers.
Critical Configuration Requirements
PROVIDER_SELECTION_PRIORITYis REQUIRED - list your providers in priority order- No hardcoded fallbacks exist - all configuration must be explicit in
.env - Fail-fast validation - invalid configuration causes immediate startup failure
- Complete provider config required - API key, model, and parameters for each provider
Supported Providers
The Athena Protocol supports 14 LLM providers. While OpenAI is commonly used, you can configure any of:
Major Cloud Providers:
- OpenAI - GPT-5 (with thinking), GPT-4o, GPT-4-turbo
- Anthropic - Claude Opus 4.1, Claude Sonnet 4.5, Claude Haiku 4.5
- Google - Gemini 2.5 (Flash/Pro/Ultra)
- Azure OpenAI - Enterprise-grade GPT models
- AWS Bedrock - Claude, Llama, and more
- Google Vertex AI - Gemini with enterprise features
Specialized Providers:
- OpenRouter - Access to 400+ models
- Groq - Ultra-fast inference
- Mistral AI - Open-source models
- Perplexity - Search-augmented models
- XAI - Grok models
- Qwen - Alibaba's high-performance LLMs
- ZAI - GLM models
Local/Self-Hosted:
- Ollama - Run models locally
Quick switch example:
# Edit .env file
ANTHROPIC_API_KEY=sk-ant-your-key-here
DEFAULT_LLM_PROVIDER=anthropic
# Restart server
npm run build && npm start
Provider Switching
See the [detailed provider guide](./docs/PROVIDER_GUIDE.md) for complete setup instructions.
Usage
MCP Client Configuration
For detailed, tested MCP client configurations, see [CLIENTMCPCONFIGURATIONEXAMPLES.md](docs/CLIENTMCPCONFIGURATIONEXAMPLES.md)
For Local Installation (with .env file)
Local installation with .env file remains fully functional and unchanged. Simply clone the repository and run:
npm install
npm run build
Then configure your MCP client to point to the local installation:
{
"mcpServers": {
"athena-protocol": {
"command": "node",
"args": ["/absolute/path/to/athena-protocol/dist/index.js"],
"type": "stdio",
"timeout": 300
}
}
}
For NPM Installation (with MCP environment variables - RECOMMENDED)
For npm/npx usage, configure your MCP client with environment variables. Only the configurations in [CLIENTMCPCONFIGURATIONEXAMPLES.md](docs/CLIENTMCPCONFIGURATIONEXAMPLES.md) are tested and guaranteed to work.
Example for GPT-5:
{
"mcpServers": {
"athena-protocol": {
"command": "npx",
"args": ["@n0zer0d4y/athena-protocol"],
"env": {
"DEFAULT_LLM_PROVIDER": "openai",
"OPENAI_API_KEY": "your-openai-api-key-here",
"OPENAI_MODEL_DEFAULT": "gpt-5",
"OPENAI_MAX_COMPLETION_TOKENS_DEFAULT": "8192",
"OPENAI_VERBOSITY_DEFAULT": "medium",
"OPENAI_REASONING_EFFORT_DEFAULT": "high",
"LLM_TEMPERATURE_DEFAULT": "0.7",
"LLM_MAX_TOKENS_DEFAULT": "2000",
"LLM_TIMEOUT_DEFAULT": "30000"
},
"type": "stdio",
"timeout": 300
}
}
}
See [CLIENTMCPCONFIGURATIONEXAMPLES.md](docs/CLIENTMCPCONFIGURATIONEXAMPLES.md) for complete working configurations.
Configuration Notes:
- NPM Installation: Use
npx @n0zer0d4y/athena-protocolwith theenvfield for easiest setup - Local Installation: Local
.envfile execution remains fully functional and unchanged - Environment Priority: MCP
envvariables take precedence over.envfile variables - GPT-5 Support: Includes specific parameters for GPT-5 models
- Timeout Configuration: The default timeout of 300 seconds (5 minutes) is set for reasoning models like GPT-5. For faster LLMs (GPT-4, Claude, Gemini), you can reduce this to 60-120 seconds
- GPT-5 Parameter Notes: The parameters
LLM_TEMPERATURE_DEFAULT,LLM_MAX_TOKENS_DEFAULT, andLLM_TIMEOUT_DEFAULTare currently required for GPT-5 models but are not used by the model itself. This is a temporary limitation that will be addressed in a future refactoring - Security: Never commit API keys to version control - use MCP client environment variables instead
Future Refactoring Plans
GPT-5 Parameter Optimization
Current Issue: GPT-5 models currently require the standard LLM parameters (LLM_TEMPERATURE_DEFAULT, LLM_MAX_TOKENS_DEFAULT, LLM_TIMEOUT_DEFAULT) even though these parameters are not used by the model.
Planned Solution:
- Modify
getTemperature()function to returnundefinedfor GPT-5+ models instead of a hardcoded default - Update AI provider interfaces to handle
undefinedtemperature values - Implement conditional parameter validation that skips standard parameters for GPT-5+ models
- Update OpenAI provider to omit unused parameters when communicating with GPT-5 API
Benefits:
- Cleaner configuration for GPT-5 users
- More accurate representation of model capabilities
- Better adherence to OpenAI's GPT-5 API specification
Timeline: Target implementation in v0.3.0
Server Modes
MCP Server Mode (for production use)
npm start # Start MCP server for client integration (requires .env or MCP env)
npm run dev # Development mode with auto-restart
npx @n0zer0d4y/athena-protocol # Run published version via npx (requires MCP env)
Standalone Mode (for testing)
npm run start:standalone # Test server without MCP client
npm run dev:standalone # Development standalone mode
Configuration Tools
# Validate your complete configuration
npm run validate-config
# Or use the comprehensive MCP validation tool
node dist/index.js
# Then call: validate_configuration_comprehensive
Key Features
Multi-Provider LLM Support
Athena Protocol supports 14 providers including:
- Cloud Providers: OpenAI, Anthropic, Google, Azure OpenAI, AWS Bedrock, Vertex AI
- Specialized: OpenRouter (400+ models), Groq, Mistral, Perplexity, XAI, Qwen
- Local/Self-Hosted: Ollama, ZAI
All providers require API keys (except Ollama for local models). See configuration section for setup.
Intelligent Thinking Validation
- Focused Validation: Validates essential aspects of reasoning with streamlined communication
- Dual-Agent Architecture: Primary agent and validation agent work in partnership
- Confidence Scoring: Explicit confidence levels to guide decision-making
- Loop Prevention: Maximum 3 exchanges per task to prevent analysis paralysis
Systematic Approach
- Essential Information Only: Share what's necessary for effective validation
- Actionable Outputs: Clear, specific recommendations that can be immediately applied
- Progressive Refinement: Start broad, get specific only when needed
- Session Management: Maintains persistent validation sessions across multiple attempts
Dual Mode Operation
- MCP Server Mode: Full integration with MCP clients (Claude Desktop, Cline, etc.)
- Standalone Mode: Independent testing and verification without MCP client
API
The Athena Protocol MCP Server provides the following tools for thinking validation and analysis:
thinking_validation
Validate the primary agent's thinking process with focused, essential information.
Required Parameters:
thinking(string): Brief explanation of the approach and reasoningproposedChange(object): Details of the proposed changedescription(string, required): What will be changedcode(string, optional): The actual code changefiles(array, optional): Files that will be affectedcontext(object): Context for the validationproblem(string, required): Brief problem descriptiontechStack(string, required): Technology stack (react|node|python etc)constraints(array, optional): Key constraintsurgency(string): Urgency level (low,medium, orhigh)projectContext(object): Project context for file analysisprojectRoot(string, required): Absolute path to project rootworkingDirectory(string, optional): Current working directoryanalysisTargets(array, REQUIRED): Specific code sections with targeted readingfile(string, required): File path (relative or absolute)mode(string, optional): Read mode -full,head,tail, orrangelines(number, optional): Number of lines (for head/tail modes)startLine(number, optional): Start line number (for range mode, 1-indexed)endLine(number, optional): End line number (for range mode, 1-indexed)priority(string, optional): Analysis priority -critical,important, orsupplementaryprojectBackground(string): Brief project description to prevent hallucination
Optional Parameters:
sessionId(string): Session ID for context persistenceprovider(string): LLM provider override (openai, anthropic, google, etc.)
Output:
Returns validation results with confidence score, critical issues, recommendations, and test cases.
impact_analysis
Quickly identify key impacts of proposed changes.
Required Parameters:
change(object): Details of the changedescription(string, required): What is being changedcode(string, optional): The code changefiles(array, optional): Affected filesprojectContext(object): Project context (same structure as thinking_validation)projectRoot(string, required)analysisTargets(array, REQUIRED): Files to analyze with read modesworkingDirectory(optional)projectBackground(string): Brief project description
Optional Parameters:
systemContext(object): System architecture contextarchitecture(string): Brief architecture descriptionkeyDependencies(array): Key system dependenciessessionId(string): Session ID for context persistenceprovider(string): LLM provider override
Output:
Returns overall risk assessment, affected areas, cascading risks, and quick tests to run.
assumption_checker
Rapidly validate key assumptions without over-analysis.
Required Parameters:
assumptions(array): List of assumption strings to validatecontext(object): Validation contextcomponent(string, required): Component nameenvironment(string, required): Environment (production, development, staging, testing)projectContext(object): Project context (same structure as thinking_validation)projectRoot(string, required)analysisTargets(array, REQUIRED): Files to analyze with read modesprojectBackground(string): Brief project description
Optional Parameters:
sessionId(string): Session ID for context persistenceprovider(string): LLM provider override
Output:
Returns valid assumptions, risky assumptions with mitigations, and quick verification steps.
dependency_mapper
Identify critical dependencies efficiently.
Required Parameters:
change(object): Details of the changedescription(string, required): Brief change descriptionfiles(array, optional): Files being modifiedcomponents(array, optional): Components being changedprojectContext(object): Project context (same structure as thinking_validation)projectRoot(string, required)analysisTargets(array, REQUIRED): Files to analyze with read modesprojectBackground(string): Brief project description
Optional Parameters:
sessionId(string): Session ID for context persistenceprovider(string): LLM provider override
Output:
Returns critical and secondary dependencies, with impact analysis and test focus areas.
thinking_optimizer
Optimize thinking approach based on problem type.
Required Parameters:
problemType(string): Type of problem (bug_fix,feature_impl, orrefactor)complexity(string): Complexity level (simple,moderate, orcomplex)timeConstraint(string): Time constraint (tight,moderate, orflexible)currentApproach(string): Brief description of current thinkingprojectContext(object): Project context (same structure as thinking_validation)projectRoot(string, required)analysisTargets(array, REQUIRED): Files to analyze with read modesprojectBackground(string): Brief project description
Optional Parameters:
sessionId(string): Session ID for context persistenceprovider(string): LLM provider override
Output:
Returns a comprehensive optimization strategy including:
- optimizedStrategy: Rec
…
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: n0zer0d4y
- Source: n0zer0d4y/athena-protocol
- License: MIT
- Homepage: https://www.npmjs.com/package/@n0zer0d4y/athena-protocol
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.