
Readyorai
- 1 repo stars
- Updated April 4, 2026
- TedoNeObichaJavaScript/ReadyOrAI
ReadyOrAI is a MCP server that performs local code inspection and best-practice recommendations at zero stated cost.
About
ReadyOrAI is a lightweight stdio MCP server that inspects code on your machine and returns best-practice oriented guidance, aimed at developers who want a second pair of eyes without subscription fees. Install the readyorai npm package, wire it into Claude Code or Cursor, and invoke inspection over the codebase or changed files during review passes. Skillselion places it at Ship → review first; it also supports Build backend hardening and Ship security-minded cleanup when recommendations touch unsafe patterns. At version 0.1.2 it is early-stage—expect evolving rulesets rather than enterprise SAST coverage. It complements linters: the agent interprets structured inspection output in context of your task. Not a deployment or monitoring tool.
- Zero-cost MCP server for local repository code inspection
- Delivers best-practice and improvement recommendations via agent tools
- npm package readyorai version 0.1.2 with stdio transport
- Runs locally—no paid API dependency stated in registry metadata
- GitHub source: TedoNeObichaJavaScript/ReadyOrAI
Readyorai by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add readyorai -- npx -y readyoraiAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 1 |
|---|---|
| Package | readyorai |
| Transport | STDIO |
| Auth | None |
| Last updated | April 4, 2026 |
| Repository | TedoNeObichaJavaScript/ReadyOrAI ↗ |
What it does
Run local, zero-cost MCP code inspection in your repo and get best-practice recommendations before you ship.
Who is it for?
Budget-conscious developers who want MCP-driven code review hooks inside Claude Code before tagging a release.
Skip if: Skip if you need certified security scanning, compliance attestations, or cloud-only CI governance.
What you get
Your agent runs ReadyOrAI against the repo and surfaces actionable best-practice fixes during review sessions.
- Inspection-driven best-practice recommendations in agent chat
- Local analysis workflow with no stated per-call API fee
- Faster pre-ship review loops for small codebases
By the numbers
- npm identifier: readyorai version 0.1.2
- Transport: stdio
- Stated positioning: zero-cost local inspection (registry description)
README.md
ReadyOrAI
Zero-cost MCP server for local code inspection. Analyzes your code for clean code practices, best practices, and gives actionable recommendations — without modifying your code or making API calls.
Features
- 9 analyzers: complexity, naming, structure, patterns, imports, documentation, security, duplication, AI-generated code detection
- Multi-language: JS/TS, Python, Go, Rust (deep analysis) + Java, C#, Ruby, PHP, and more (regex-based)
- Zero-cost: All analysis runs locally — no API keys, no external calls
- MCP server: Works with Claude Desktop, Claude Code, and VS Code via stdio transport
- CLI tool:
ready @filenameandAIterminal commands for standalone use - SARIF output: Export results for GitHub Code Scanning integration
- Watch mode: Continuous re-analysis on file changes
- Baseline/diff mode: Track incremental adoption — only see new issues
- Config file: Project-level
.readyorai.jsonfor shared settings - Inline suppressions: Silence specific findings with
// readyorai-ignorecomments
Installation
As an MCP Server
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"readyorai": {
"command": "npx",
"args": ["-y", "readyorai"]
}
}
}
Claude Code:
claude mcp add readyorai -- npx -y readyorai
VS Code (.vscode/mcp.json):
{
"servers": {
"readyorai": {
"command": "npx",
"args": ["-y", "readyorai"]
}
}
}
As a CLI Tool
npm install -g readyorai
CLI Usage
ready @src/index.ts # Inspect a single file
ready @src/ # Inspect a directory
ready @src/index.ts --checks security,naming # Run specific checks
ready @src/index.ts --json # JSON output
ready @src/index.ts --sarif # SARIF output (GitHub Code Scanning)
ready @src/index.ts --severity warning # Only warnings and errors
ready @src/index.ts --watch # Re-analyze on file changes
ready @src/ --baseline baseline.json # Compare against saved baseline
ready @src/ --save-baseline baseline.json # Save current results as baseline
AI # Inspect current directory
AI @src/utils.ts # Alias with file target
Exit Codes
| Code | Meaning |
|---|---|
0 |
No issues found |
1 |
Warnings found |
2 |
Errors found |
3 |
Runtime error |
Configuration
Create a .readyorai.json in your project root:
{
"checks": ["complexity", "naming", "security"],
"severity": "warning",
"exclude": ["dist/**", "node_modules/**"]
}
Inline Suppressions
Silence specific findings on a line:
eval(code); // readyorai-ignore
MCP Tools
| Tool | Description |
|---|---|
inspect_file |
Analyze a single file for code quality issues |
inspect_directory |
Batch analysis of all source files in a directory |
get_metrics |
Get quantitative metrics (LOC, complexity, function count) |
compare_files |
Compare two file versions and show fixed, introduced, or unchanged findings |
suggest_fixes |
Get actionable fix suggestions with context for each finding |
MCP Prompts
| Prompt | Description |
|---|---|
review-code |
Structured code review with optional focus area |
health-check |
Project-level health assessment |
Checks
| Check | What it detects |
|---|---|
complexity |
Cyclomatic/cognitive complexity, deep nesting |
naming |
Convention violations, single-letter vars, boolean prefixes |
structure |
Long files/functions, too many parameters, long lines |
patterns |
console.log, empty catch, magic numbers, nested ternaries, TODOs |
imports |
Unused imports, wildcard imports, scattered imports |
documentation |
Missing JSDoc/docstrings, low comment ratio |
security |
Hardcoded secrets, eval(), SQL injection, XSS patterns |
duplication |
Duplicate code blocks, repeated magic strings |
ai-detection |
Detects patterns common in AI-generated code |
Language Support
| Tier | Languages | Analysis |
|---|---|---|
| 1 | JavaScript, TypeScript, Python, Go, Rust | Full AST-powered analysis |
| 2 | Java, C#, Ruby, PHP, Swift, Kotlin, C, C++ | Regex + heuristic analysis |
| 3 | Any text file | Line-based checks (length, TODOs, secrets, duplication) |
Development
git clone https://github.com/TedoNeObichaJavaScript/ReadyOrAI.git
cd ReadyOrAI
npm install
npm run build
npm test
Support
If you find ReadyOrAI useful, consider supporting the project:
- Borko — 5 euro
License
MIT
Recommended MCP Servers
How it compares
Local inspection MCP aide, not a full SAST platform or generic codegen skill.
FAQ
Who is ReadyOrAI for?
Developers who want free, local code inspection tools wired into their MCP coding agent.
When should I use ReadyOrAI?
Before merge or release when you want best-practice feedback on the codebase you already have checked out locally.
How do I add ReadyOrAI to my agent?
Install the npm package readyorai (0.1.2), configure stdio MCP in your client, and point tools at your local project path per README.