package.json•2.64 kB
{
"name": "@skyfi/tak-server-mcp",
"version": "0.1.0",
"description": "Model Context Protocol (MCP) server for TAK Server integration with geospatial support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"tak-server-mcp": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skyfi/tak-server-mcp.git"
},
"homepage": "https://github.com/skyfi/tak-server-mcp#readme",
"bugs": {
"url": "https://github.com/skyfi/tak-server-mcp/issues"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:mcp": "npm run build && node test-mcp.js",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"docker:build": "docker build -t skyfi/tak-server-mcp:latest .",
"docker:run": "docker run -it --rm skyfi/tak-server-mcp:latest",
"demo": "npm run build && tsx src/demo/agent.ts"
},
"keywords": [
"mcp",
"tak",
"tak-server",
"freetakserver",
"geospatial",
"cot",
"cursor-on-target",
"model-context-protocol",
"ai",
"llm",
"anthropic",
"claude",
"situational-awareness"
],
"author": "SkyFi <support@skyfi.com>",
"license": "MIT",
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"package.json"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.24.3",
"@modelcontextprotocol/sdk": "^0.5.0",
"@turf/turf": "^6.5.0",
"axios": "^1.6.2",
"chalk": "^5.3.0",
"express": "^4.18.2",
"fast-xml-parser": "^4.3.2",
"geojson": "^0.5.0",
"h3-js": "^4.1.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"lru-cache": "^10.1.0",
"mgrs": "^1.0.0",
"pino": "^8.16.2",
"pino-pretty": "^10.3.0",
"prompts": "^2.4.2",
"protobufjs": "^7.2.5",
"socket.io": "^4.6.0",
"uuid": "^9.0.1",
"ws": "^8.15.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/geojson": "^7946.0.13",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.5",
"@types/prompts": "^2.4.9",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}