package.json•1.36 kB
{
"name": "marvel-mcp-azure-functions",
"version": "1.0.0",
"description": "Marvel APIs MCP Server hosted in Azure Functions",
"license": "MIT",
"main": "dist/{/index.js,functions/*.js}",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"author": {
"name": "Dan Wahlin",
"url": "https://github.com/danwahlin"
},
"repository": {
"type": "git",
"url": "https://github.com/danwahlin/marvel-mcp-azure-functions.git"
},
"homepage": "https://github.com/danwahlin/marvel-mcp-azure-functions",
"bugs": {
"url": "https://github.com/danwahlin/marvel-mcp-azure-functions/issues"
},
"type": "module",
"engines": {
"node": ">=20.11.0"
},
"keywords": [
"azure",
"functions",
"azure-functions",
"mcp",
"model-context-protocol",
"ai",
"genai",
"api",
"marvel",
"comics"
],
"scripts": {
"clean": "rimraf dist",
"build": "npx tsc",
"watch": "npx tsc --watch",
"start": "func start"
},
"dependencies": {
"@azure/functions": "4.7.2-beta.0",
"@modelcontextprotocol/sdk": "^1.9.0",
"dotenv": "^16.0.3",
"zod-to-json-schema": "^3.24.5",
"node-fetch": "^3.3.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.14",
"rimraf": "^5.0.0",
"typescript": "^5.8.3"
}
}