-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.86 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.86 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
{
"name": "metmuseum-mcp",
"type": "module",
"version": "1.0.0",
"private": false,
"packageManager": "pnpm@10.29.3+sha512.498e1fb4cca5aa06c1dcf2611e6fafc50972ffe7189998c409e90de74566444298ffe43e6cd2acdc775ba1aa7cc5e092a8b7054c811ba8c5770f84693d33d2dc",
"description": "A Model Context Protocol (MCP) server that provides access to the Metropolitan Museum of Art Collection through natural language interactions. This server allows AI models to search The Met's art collection and have art works available as a Resource.",
"author": "mike.chao.one@gmail.com",
"license": "MIT",
"homepage": "https://github.com/mikechao/metmuseum-mcp",
"repository": {
"type": "git",
"url": "https://github.com/mikechao/metmuseum-mcp.git"
},
"bugs": {
"url": "https://github.com/mikechao/metmuseum-mcp/issues"
},
"keywords": [
"mcp",
"mcp-apps",
"model-context-protocol",
"the-met",
"metropolitan-museum-of-art",
"art",
"museum"
],
"main": "dist/index.js",
"bin": {
"metmuseum-mcp": "dist/index.js"
},
"files": [
"LICENSE",
"README.md",
"dist"
],
"scripts": {
"versions:check": "node scripts/sync-versions.mjs",
"prebuild": "pnpm run lint:check && shx rm -rf dist",
"build": "tsc && node scripts/build-ui.mjs && shx chmod +x dist/*.js",
"lint": "eslint . --ext .ts,.js,.mjs,.cjs --fix",
"lint:check": "eslint . --ext .ts,.js,.mjs,.cjs",
"typecheck": "tsc --noEmit",
"check": "pnpm run lint:check && pnpm run typecheck"
},
"dependencies": {
"@modelcontextprotocol/ext-apps": "^1.0.1",
"@modelcontextprotocol/sdk": "^1.26.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@antfu/eslint-config": "^4.11.0",
"@types/node": "^22.14.0",
"esbuild": "^0.24.2",
"eslint": "^9.23.0",
"eslint-plugin-format": "^1.0.1",
"shx": "^0.4.0",
"typescript": "^5.8.3"
}
}