-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.69 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
77
{
"name": "rendezvous-mcp",
"version": "1.1.4",
"mcpName": "dev.forgesworn/rendezvous-mcp",
"description": "MCP server for AI-driven fair meeting point discovery",
"type": "module",
"bin": {
"rendezvous-mcp": "./build/index.js"
},
"main": "./build/index.js",
"exports": {
".": "./build/index.js",
"./routing": "./build/routing.js",
"./l402": "./build/l402.js",
"./tools/*": "./build/tools/*.js"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"start": "node build/index.js",
"start:http": "TRANSPORT=http node build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"cors": "^2.8.5",
"express": "^5.2.1",
"rendezvous-kit": "^1.17.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^25.6.0",
"typescript": "^6.0.2",
"vitest": "^4.0.18"
},
"keywords": [
"mcp",
"meeting-point",
"rendezvous",
"routing",
"valhalla",
"l402",
"model-context-protocol",
"ai",
"fairness",
"isochrone",
"travel-time",
"openstreetmap",
"geospatial",
"venue-search"
],
"publishConfig": {
"provenance": true
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"author": "forgesworn",
"repository": {
"type": "git",
"url": "https://github.com/forgesworn/rendezvous-mcp.git"
},
"homepage": "https://github.com/forgesworn/rendezvous-mcp",
"funding": {
"type": "lightning",
"url": "lightning:profusemeat89@walletofsatoshi.com"
},
"files": [
"build",
"LICENSE"
],
"license": "MIT"
}