{ "name": "@j.meyer/steam-mcp-server", "version": "1.1.6", "mcpName": "io.github.julianmeyerr/steam-mcp-server", "description": "MCP server that exposes the Steam Web API (profiles, games, achievements, friends, and news) as tools for LLMs", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/julianmeyerr/steam-mcp-server.git" }, "publishConfig": { "access": "public" }, "type": "module", "main": "dist/index.js", "files": [ "dist", "README.md", ".env.example", "LICENSE" ], "bin": { "steam-mcp-server": "dist/index.js" }, "scripts": { "build": "tsc", "test": "tsx --test test/server.test.ts", "dev": "tsx watch src/index.ts", "start": "node dist/index.js", "inspector": "npx @modelcontextprotocol/inspector node dist/index.js", "clean": "node --input-type=module -e \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true });\"", "prepublishOnly": "npm run build" }, "engines": { "node": ">=18" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.6.1", "axios": "^1.7.9", "dotenv": "^16.4.5", "zod": "^3.23.8" }, "devDependencies": { "@types/node": "^22.10.0", "tsx": "^4.19.2", "typescript": "^5.7.2" } }