-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.03 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
{
"name": "mcpserver",
"version": "1.0.0",
"description": "A multi-modal AI toolkit based on Model Context Protocol (MCP), integrating Zhipu GLM, Pollinations.AI, SiYuan Notes, and Perplexity web search capabilities",
"main": "build/index.js",
"type": "module",
"bin": {
"mcpserver": "./build/index.js"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "node --loader ts-node/esm src/index.ts"
},
"keywords": [
"mcp",
"ai",
"glm",
"pollinations",
"siyuan",
"web-search",
"image-analysis",
"video-analysis",
"image-generation",
"text-generation",
"audio-generation",
"notes",
"multi-modal"
],
"author": "",
"license": "ISC",
"files": [
"build"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.2",
"axios": "^1.12.2",
"dotenv": "^16.4.5",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.2.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"packageManager": "pnpm@10.15.1"
}