package.json•1.41 kB
{
"name": "movie-mcp-server",
"version": "1.0.1",
"description": "MCP server for movie searches using OMDb and TMDb APIs. Search movies, get details, recommendations, and trending films for Claude Desktop.",
"type": "module",
"main": "dist/index.js",
"bin": {
"movie-mcp-server": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "node test-apis.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"movies",
"imdb",
"omdb",
"tmdb",
"claude",
"ai-tools",
"movie-search",
"movie-database",
"film-search",
"cinema",
"entertainment"
],
"author": "Israel Garcia <igarcia76k@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/tonderflash/movie-mcp-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tonderflash/movie-mcp-server.git"
},
"bugs": {
"url": "https://github.com/tonderflash/movie-mcp-server/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"node-fetch": "^3.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/node-fetch": "^2.6.4",
"typescript": "^5.0.0"
}
}