-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.37 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
{
"name": "mcp-cookie-auth-reference",
"version": "0.1.0",
"description": "Reference MCP server for cookie-authenticated web systems without APIs. Demonstrates session jar, retry/backoff, schema-drift detection.",
"type": "module",
"main": "./build/index.js",
"bin": {
"mcp-cookie-auth-reference": "./build/index.js"
},
"exports": {
".": "./build/index.js",
"./server": "./build/server.js",
"./cookie-jar": "./build/cookie-jar.js",
"./fetch-client": "./build/fetch-client.js"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsx src/index.ts",
"mock-target": "tsx mock-target/server.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"hono": "^4.0.0",
"pino": "^8.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@hono/node-server": "^1.0.0",
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.4.0",
"vitest": "^1.4.0"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"author": "Joe Smith",
"repository": {
"type": "git",
"url": "https://github.com/addiplus/mcp-cookie-auth-reference"
},
"keywords": [
"mcp",
"model-context-protocol",
"cookie-auth",
"session-cookie",
"reference",
"anthropic",
"claude"
]
}