forked from SecretRichGarden/metasota-API-MCP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.02 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.02 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "metaso-search-mcp",
"version": "1.1.2",
"description": "秘塔搜索 MCP 服务器 - 提供多维搜索、网页读取、智能问答功能",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"metaso-mcp": "./dist/index.js",
"metaso-mcp-config": "./dist/config-cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
".env.example",
"config/*.example.json"
],
"scripts": {
"clean": "rimraf dist",
"test": "node --test",
"typecheck": "tsc --noEmit",
"rebuild": "npm run clean && npm run build",
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepack": "npm run build",
"pack:dry": "npm pack --dry-run",
"pack:local": "npm pack",
"config:example": "metaso-mcp-config --client generic --print",
"prepublishOnly": "npm run typecheck && npm run build && node scripts/release-check.mjs && npm run pack:dry",
"release": "npm run typecheck && npm run build && node scripts/release-check.mjs && npm run pack:dry && npm version patch -m \"chore(release): v%s\""
},
"keywords": [
"mcp",
"metaso",
"search",
"ai",
"model-context-protocol",
"mcp-server",
"metaso-mcp"
],
"author": "Alex Huang (https://github.com/SecretRichGarden)",
"repository": {
"type": "git",
"url": "git+https://github.com/SecretRichGarden/metasota-API-MCP.git"
},
"bugs": {
"url": "https://github.com/SecretRichGarden/metasota-API-MCP/issues"
},
"homepage": "https://github.com/SecretRichGarden/metasota-API-MCP#readme",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.6.0",
"dotenv": "^17.2.3",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"rimraf": "^6.1.3",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}