package.json•1.39 kB
{
"name": "@monsoft/mcp-fal-ai",
"version": "1.0.0",
"description": "MCP server for interacting with fal.ai models (sync/async, schema, search).",
"license": "MIT",
"author": "Monsoft Solutions (https://monsoftsolutions.com)",
"homepage": "https://github.com/Monsoft-Solutions/model-context-protocols",
"bugs": "https://github.com/Monsoft-Solutions/model-context-protocols/issues",
"type": "module",
"bin": {
"mcp-fal-ai": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"validate": "tsc --noEmit",
"example:build": "npm run build",
"example:run": "node dist/examples/fal-example.js",
"example:list-models": "node dist/examples/list-models.js",
"example:generate-nano-banana": "node dist/examples/generate-nano-banana.js",
"example:download-image": "node dist/examples/download-image.js",
"example:get-model-schema": "node dist/examples/get-model-schema.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.0",
"@types/node": "^22",
"express": "^5.0.1",
"undici": "^6.19.8",
"yargs": "^17.7.2",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.6.2"
}
}