Skip to content
j0KZ edited this page Oct 2, 2025 · 2 revisions

MCP Agents Wiki

Welcome to the MCP Agents wiki! This is your comprehensive guide to using, integrating, and extending our suite of professional MCP (Model Context Protocol) tools for AI code editors.

MCP Agents TypeScript License

πŸ“š Table of Contents

Getting Started

MCP Tools Documentation

Code Quality & Analysis

Security & Performance

API & Database Design

Documentation

Integration & Advanced Usage

IDE Integration

Development

Troubleshooting & Support

Resources


πŸš€ Quick Links

Tool Description npm Package
Smart Reviewer AI-powered code review @j0kz/smart-reviewer-mcp
Test Generator Automated test generation @j0kz/test-generator-mcp
Architecture Analyzer Architecture analysis @j0kz/architecture-analyzer-mcp
Security Scanner Security vulnerability scanning @j0kz/security-scanner-mcp
API Designer API design and generation @j0kz/api-designer-mcp
DB Schema Designer Database schema design @j0kz/db-schema-mcp
Doc Generator Documentation generation @j0kz/doc-generator-mcp
Refactor Assistant Code refactoring @j0kz/refactor-assistant-mcp

🎯 What are MCP Agents?

MCP Agents is a suite of 8 professional-grade tools that extend AI code editors with powerful capabilities:

Core Features

βœ… Code Quality

  • Smart code review with auto-fixes
  • Architecture analysis and dependency graphs
  • Automated test generation

βœ… Security

  • Vulnerability scanning (OWASP Top 10)
  • Secret detection and hardcoded credentials
  • Dependency security auditing

βœ… Design Tools

  • API design (REST, GraphQL, OpenAPI)
  • Database schema design (PostgreSQL, MySQL, MongoDB)
  • Mock server generation

βœ… Productivity

  • Automatic documentation generation
  • Code refactoring assistance
  • Design pattern application

βœ… Integration

  • Modular architecture with shared utilities
  • Pipeline and workflow orchestration
  • Event-driven communication

🏁 Getting Started in 3 Steps

Step 1: Install

# Install globally
npm install -g @j0kz/smart-reviewer-mcp @j0kz/test-generator-mcp

# Or use npx (no installation)
npx @j0kz/smart-reviewer-mcp

Step 2: Configure

Add to your MCP client configuration (e.g., Claude Code, Cursor):

{
  "mcpServers": {
    "smart-reviewer": {
      "command": "npx",
      "args": ["-y", "@j0kz/smart-reviewer-mcp"]
    },
    "test-generator": {
      "command": "npx",
      "args": ["-y", "@j0kz/test-generator-mcp"]
    }
  }
}

Step 3: Use

In your AI editor:

Review the file src/index.ts and suggest improvements

The AI will automatically use the Smart Reviewer MCP to provide detailed code analysis!


πŸ’‘ Example Workflows

Workflow 1: Code Quality Pipeline

1. Ask AI to analyze architecture β†’ Architecture Analyzer runs
2. Ask AI to review code quality β†’ Smart Reviewer runs
3. Ask AI to generate tests β†’ Test Generator runs
4. Ask AI to refactor issues β†’ Refactor Assistant runs

Workflow 2: API Development

1. Describe your API β†’ API Designer generates OpenAPI spec
2. Design database β†’ DB Schema Designer creates schema
3. Generate mock server β†’ API Designer creates implementation
4. Add tests β†’ Test Generator creates test suite

Workflow 3: Security Audit

1. Scan for vulnerabilities β†’ Security Scanner analyzes code
2. Generate security tests β†’ Test Generator creates security tests
3. Document findings β†’ Doc Generator creates report
4. Fix issues β†’ Refactor Assistant suggests fixes

πŸ”— External Resources


🀝 Community


πŸ“„ License

This project is licensed under the MIT License.


Get Started | Browse Tools | View Examples | Get Help

Made with ❀️ by j0KZ