PeerCortex unifies PeeringDB, RIPE Stat, bgproutes.io, RIPE Atlas, Route Views, IRR, RPKI, and CAIDA into a single AI-queryable MCP Server for network engineers. Powered by local Ollama. Core capabilities: - 34 MCP tools for network intelligence - 11 data sources unified - ASPA validation engine (RFC 9582) with leak detection - Peering partner discovery with AI-ranked matches - BGP analysis and anomaly detection - RPKI monitoring and compliance reports - Latency/traceroute via RIPE Atlas - Transit analysis and cost comparison - IX traffic statistics - AS topology mapping - ASPA object generator and simulator - 100% local AI — no cloud dependencies
86 lines
2.2 KiB
JSON
86 lines
2.2 KiB
JSON
{
|
|
"name": "peercortex",
|
|
"version": "0.1.0",
|
|
"description": "AI-Powered Network Intelligence Platform — MCP Server for PeeringDB, RIPE Stat, BGP analysis, RPKI monitoring, and peering automation. Powered by local Ollama.",
|
|
"main": "dist/mcp-server/index.js",
|
|
"types": "dist/mcp-server/index.d.ts",
|
|
"bin": {
|
|
"peercortex": "dist/mcp-server/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsx watch src/mcp-server/index.ts",
|
|
"start": "node dist/mcp-server/index.js",
|
|
"lint": "eslint src/",
|
|
"lint:fix": "eslint src/ --fix",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage",
|
|
"clean": "rm -rf dist/",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"mcp-server",
|
|
"peeringdb",
|
|
"bgp",
|
|
"rpki",
|
|
"ripe-stat",
|
|
"network-intelligence",
|
|
"peering",
|
|
"asn-lookup",
|
|
"prefix-lookup",
|
|
"internet-exchange",
|
|
"route-leak-detection",
|
|
"bgp-hijack-detection",
|
|
"bgp-monitoring",
|
|
"bgp-analysis",
|
|
"peering-automation",
|
|
"rpki-monitoring",
|
|
"rpki-compliance",
|
|
"noc-tools",
|
|
"network-operator",
|
|
"ollama",
|
|
"self-hosted",
|
|
"local-ai",
|
|
"claude-code",
|
|
"irr-query",
|
|
"route-views",
|
|
"bgp-anomaly"
|
|
],
|
|
"author": "PeerCortex Contributors",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/peercortex/peercortex.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/peercortex/peercortex/issues"
|
|
},
|
|
"homepage": "https://github.com/peercortex/peercortex#readme",
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
"better-sqlite3": "^11.7.0",
|
|
"cheerio": "^1.0.0",
|
|
"node-whois": "^2.1.3",
|
|
"ollama": "^0.5.12",
|
|
"zod": "^3.24.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/better-sqlite3": "^7.6.12",
|
|
"@types/node": "^22.10.0",
|
|
"@types/node-whois": "^2.0.3",
|
|
"@typescript-eslint/eslint-plugin": "^8.18.0",
|
|
"@typescript-eslint/parser": "^8.18.0",
|
|
"@vitest/coverage-v8": "^2.1.0",
|
|
"eslint": "^9.16.0",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^2.1.0"
|
|
}
|
|
}
|