-
Notifications
You must be signed in to change notification settings - Fork 354
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.32 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
78
79
{
"name": "exa-mcp-server",
"version": "3.2.1",
"description": "A Model Context Protocol server with Exa for web search and web crawling. Provides real-time web searches with configurable tool selection, allowing users to enable or disable specific search capabilities. Supports customizable result counts, live crawling options, and returns content from the most relevant websites.",
"mcpName": "io.github.exa-labs/exa-mcp-server",
"type": "module",
"module": "./src/stdio.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/exa-labs/exa-mcp-server.git"
},
"bin": {
"exa-mcp-server": "dist/stdio.cjs"
},
"files": [
"dist",
"skills"
],
"keywords": [
"mcp",
"search mcp",
"model context protocol",
"exa",
"agent",
"search",
"websearch",
"claude",
"ai",
"research",
"papers",
"people"
],
"author": "Exa Labs",
"scripts": {
"build": "npm run build:stdio",
"build:stdio": "esbuild src/stdio-cli.ts --bundle --platform=node --target=node20 --format=cjs --outfile=dist/stdio.cjs --banner:js=\"#!/usr/bin/env node\" && chmod +x dist/stdio.cjs",
"build:vercel": "npm install typescript && ./node_modules/.bin/tsc",
"setup": "npm ci",
"start": "npm run dev",
"typecheck": "tsc --noEmit -p tsconfig.test.json",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"ci": "npm run typecheck && npm run test",
"prepare": "npm run build:stdio",
"watch": "./node_modules/.bin/tsc --watch",
"dev": "tsx src/stdio-cli.ts",
"dev:vercel": "vercel dev",
"inspector": "npx @modelcontextprotocol/inspector dist/stdio.cjs",
"prepublishOnly": "npm run build:stdio"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"agnost": "^0.1.11",
"axios": "^1.13.6",
"exa-js": "^2.8.0",
"jose": "^6.2.2",
"mcp-handler": "^1.0.4",
"whoami": "^0.0.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.36.1",
"@vitest/coverage-v8": "4.1.5",
"esbuild": "^0.25.12",
"tsx": "^4.7.0",
"typescript": "^5.9.3",
"vercel": "^37.0.0",
"vitest": "4.1.5"
},
"engines": {
"node": ">=20.0.0"
},
"overrides": {
"tar": "^7.5.7"
}
}