mcp-ai-agent-guidelines
Version:
A comprehensive Model Context Protocol server providing professional tools, resources, and prompts for implementing AI agent best practices
80 lines (79 loc) • 2.28 kB
JSON
{
"name": "mcp-ai-agent-guidelines",
"version": "0.5.0",
"description": "A comprehensive Model Context Protocol server providing professional tools, resources, and prompts for implementing AI agent best practices",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/index.js",
"dev": "tsc --watch",
"test": "npm run test:all",
"test:unit": "node tests/unit/run-unit-tests.js",
"test:integration": "node tests/test-server.js",
"test:demo": "node demos/demo-tools.js",
"test:mcp": "scripts/test-mcp-server.sh",
"test:all": "npm run build && npm run test:unit && npm run test:integration && npm run test:demo && npm run test:mcp",
"test:coverage:unit": "npm run build && c8 -r text-summary -r lcov -r html -o coverage node tests/unit/run-unit-tests.js",
"lint": "biome lint src/",
"lint:fix": "biome lint --write src/",
"format": "biome format src/",
"format:fix": "biome format --write src/",
"check": "biome check src/",
"check:fix": "biome check --write src/",
"type-check": "tsc --noEmit",
"quality": "npm run type-check && npm run check",
"validate": "npm run lint && npm run type-check && npm run test:all"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai-agent",
"development",
"guidelines",
"tools",
"prompts",
"best-practices",
"hierarchical-prompting",
"code-hygiene",
"mermaid",
"memory-optimization",
"sprint-planning"
],
"author": "Anselmoo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Anselmoo/mcp-ai-agent-guidelines.git"
},
"homepage": "https://github.com/Anselmoo/mcp-ai-agent-guidelines#readme",
"bugs": {
"url": "https://github.com/Anselmoo/mcp-ai-agent-guidelines/issues"
},
"bin": {
"mcp-ai-agent-guidelines": "dist/index.js",
"ai-agent-guidelines": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@types/node": "^24.1.0",
"c8": "^9.1.0",
"typescript": "^5.9.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.1",
"@types/express": "^5.0.3",
"express": "^5.1.0",
"mermaid": "^11.0.0",
"zod": "^3.25.76"
}
}