UNPKG

mcp-infinite-loop-server

Version:

🐙 THE KRAKEN v4.8.0 - ENHANCED DEPLOYMENT! Revolutionary AI-TO-AI MCP server with automatic AI agent acknowledgment system, enhanced deployment capabilities, 98% test success rate, ultra-strict loop protection, and real AI-to-AI communication. Features m

142 lines (141 loc) 4.74 kB
{ "name": "mcp-infinite-loop-server", "version": "4.8.0", "description": "🐙 THE KRAKEN v4.8.0 - ENHANCED DEPLOYMENT! Revolutionary AI-TO-AI MCP server with automatic AI agent acknowledgment system, enhanced deployment capabilities, 98% test success rate, ultra-strict loop protection, and real AI-to-AI communication. Features mandatory acknowledgment, sequential processing, and autonomous AI conversations.", "main": "src/index.js", "bin": { "mcp-infinite-loop-server": "src/index.js" }, "type": "module", "scripts": { "start": "node src/index.js", "dev": "node --watch src/index.js", "test": "c8 --reporter=text --reporter=html --reporter=lcov mocha test/**/*.test.js --timeout 30000", "test:legacy": "node test-server.js", "test:openrouter": "node test-with-openrouter.js", "test:feedback": "node test-agent-feedback-loop.js", "test:ai2ai": "node test-ai-to-ai-loop.js", "test:ai2ai:quick": "timeout 10s node test-ai-to-ai-loop.js || true", "test:sequential": "node test-sequential-ai-agent.js", "test:coverage": "c8 --check-coverage --lines 80 --functions 80 --branches 80 npm run test", "test:integration": "mocha test/coverage.test.js --timeout 30000", "test:integration:preview": "echo 'Integration tests for preview environment'", "coverage:report": "c8 report --reporter=text-summary", "coverage:html": "c8 report --reporter=html", "lint": "eslint src/ --ext .js --fix", "lint:check": "eslint src/ --ext .js", "security:audit": "npm audit --audit-level=moderate", "quality:check": "npm run lint:check && npm run test:coverage && npm run security:audit", "perf:test": "node performance/run-performance-tests.js", "perf:load": "artillery run performance/artillery-config.yml", "perf:memory": "artillery run performance/memory-stress-test.yml", "perf:install": "npm install artillery --save-dev", "release:status": "node scripts/release.js status", "release:patch": "node scripts/release.js release patch", "release:minor": "node scripts/release.js release minor", "release:major": "node scripts/release.js release major", "release:beta": "node scripts/release.js release prerelease", "docs:generate": "node docs/generate-docs.mjs", "docs:api": "jsdoc -c jsdoc.json", "docs:serve": "npx http-server docs/api -p 8080", "example": "node examples/basic-usage.js", "demo:sync": "node examples/agent-sync-demo.js", "precommit": "npm run quality:check" }, "keywords": [ "mcp", "server", "infinite-loop", "automation", "improvement", "ai", "openrouter", "agent-feedback", "continuous-improvement", "model-context-protocol", "ai-to-ai", "automatic-communication", "conversation-ai", "multi-agent", "api-key-rotation", "high-availability", "failover", "kraken", "autonomous", "zero-intervention", "self-healing", "enterprise-grade", "sequential", "context-building", "conversation-flow", "perfect-ai-communication", "direct-ai-communication", "vscode-ai-integration", "no-extension-needed", "get-ai-prompts", "mcp-protocol-native", "revolutionary", "v4", "sequential-processing", "http-bridge", "vscode-bridge", "ai-agent-communication", "prompt-generation", "autonomous-ai", "real-time-ai", "production-ready" ], "author": "MCP Infinite Loop Server", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/mcp-infinite-loop/mcp-infinite-loop-server.git" }, "homepage": "https://github.com/mcp-infinite-loop/mcp-infinite-loop-server#readme", "bugs": { "url": "https://github.com/mcp-infinite-loop/mcp-infinite-loop-server/issues" }, "dependencies": { "@modelcontextprotocol/sdk": "^0.5.0" }, "devDependencies": { "artillery": "^2.0.23", "c8": "^8.0.1", "chai": "^4.3.10", "eslint": "^8.57.0", "mocha": "^10.2.0", "sinon": "^17.0.1" }, "c8": { "include": [ "src/**/*.js" ], "exclude": [ "test/**", "examples/**", "coverage/**" ], "reporter": [ "text", "html", "lcov" ], "check-coverage": true, "lines": 80, "functions": 80, "branches": 80, "statements": 80 }, "engines": { "node": ">=18.0.0" }, "files": [ "src/", "README.md", "OPENROUTER_INTEGRATION_GUIDE.md", "AGENT_SYNC_GUIDE.md", "AGENT_FEEDBACK_IMPLEMENTATION.md", "CHANGELOG.md", "mcp-config.json" ] }