-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.53 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
{
"name": "@linkforty/mcp-server",
"version": "0.2.0",
"description": "Model Context Protocol (MCP) server for LinkForty — connect Claude, Cursor, and other AI tools to your deep links and analytics",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./lib": {
"types": "./dist/lib.d.ts",
"default": "./dist/lib.js"
},
"./http": {
"types": "./dist/http.d.ts",
"default": "./dist/http.js"
},
"./package.json": "./package.json"
},
"bin": {
"linkforty-mcp": "./dist/index.js",
"linkforty-mcp-http": "./dist/http.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && chmod +x dist/index.js dist/http.js",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"start:http": "node dist/http.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"linkforty",
"deeplink",
"deep-linking",
"attribution",
"claude",
"cursor",
"ai-tools"
],
"author": "LinkForty",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/linkforty/mcp-server"
},
"homepage": "https://linkforty.com",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.7.2"
}
}