forked from pollinations/pollinations
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.55 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@pollinations/model-context-protocol",
"version": "1.0.15",
"description": "Model Context Protocol (MCP) server for Pollinations AI services using stdio transport",
"type": "module",
"bin": {
"pollinations-mcp": "./pollinations-mcp.js"
},
"files": [
"src/**/*",
"pollinations-mcp.js",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node test-mcp-client.js",
"test:integration": "vitest run tests/integration",
"test:integration:watch": "vitest watch tests/integration",
"start": "node src/index.js"
},
"keywords": [
"pollinations",
"ai",
"image",
"generation",
"model-context-protocol",
"mcp",
"stdio"
],
"author": "Pollinations.AI",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"dotenv": "^16.5.0",
"node-abort-controller": "^3.1.1",
"node-fetch": "^3.3.2",
"play-sound": "^1.1.6",
"zod": "^3.24.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pollinations/pollinations.git",
"directory": "model-context-protocol"
},
"bugs": {
"url": "https://github.com/pollinations/pollinations/issues"
},
"homepage": "https://github.com/pollinations/pollinations#readme",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@types/node": "^22.14.1",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
}
}