-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.54 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": "opengraph-io-mcp",
"mcpName": "io.github.securecoders/opengraph-io-mcp",
"version": "1.4.0",
"main": "dist/server.js",
"module": "./src/server-stdio.ts",
"bin": {
"opengraph-io-mcp": "dist/server-stdio.js",
"opengraph-io-mcp-install": "dist/installer.js"
},
"scripts": {
"build": "tsc",
"postbuild": "tsc-alias",
"start": "node dist/server.js",
"start:http": "node dist/server-http.js",
"start:stdio": "node dist/server-stdio.js",
"dev": "ts-node-dev -r tsconfig-paths/register src/server.ts",
"dev:stdio": "ts-node-dev -r tsconfig-paths/register src/server-stdio.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build:mcpb": "node scripts/build-mcpb.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"opengraph",
"web-scraping",
"screenshots",
"link-preview",
"claude",
"cursor"
],
"author": "securecoders",
"license": "ISC",
"description": "MCP tool for opengraph.io",
"repository": {
"type": "git",
"url": "https://github.com/securecoders/opengraph-io-mcp"
},
"files": [
"dist"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.3",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"module-alias": "^2.2.3",
"ts-node": "^10.9.2",
"zod": "^3.24.0",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/node": "^22.14.1",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
}
}