jordy-exa-mcp-server 3.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +272 -0
  3. package/dist/index.js +63 -0
  4. package/package.json +54 -0
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "jordy-exa-mcp-server",
3
+ "version": "3.1.3",
4
+ "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.",
5
+ "mcpName": "io.github.exa-labs/exa-mcp-server",
6
+ "type": "module",
7
+ "module": "./src/index.ts",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/exa-labs/exa-mcp-server.git"
11
+ },
12
+ "bin": {
13
+ "jordy-exa-mcp-server": "dist/index.js"
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "keywords": [
19
+ "mcp",
20
+ "search mcp",
21
+ "model context protocol",
22
+ "exa",
23
+ "search",
24
+ "websearch",
25
+ "claude",
26
+ "ai",
27
+ "research",
28
+ "papers",
29
+ "linkedin"
30
+ ],
31
+ "author": "Exa Labs",
32
+ "scripts": {
33
+ "build": "bun build src/index.ts --outdir dist --target node --minify",
34
+ "prepare": "bun run build",
35
+ "watch": "bun build src/index.ts --outdir dist --target node --watch",
36
+ "dev": "bun run src/index.ts",
37
+ "inspector": "npx @modelcontextprotocol/inspector dist/index.js",
38
+ "prepublishOnly": "bun run build"
39
+ },
40
+ "dependencies": {
41
+ "@modelcontextprotocol/sdk": "^1.12.1",
42
+ "agnost": "^0.1.7",
43
+ "axios": "^1.7.8",
44
+ "zod": "^3.22.4"
45
+ },
46
+ "devDependencies": {
47
+ "@types/node": "^20.11.24",
48
+ "typescript": "^5.3.3"
49
+ },
50
+ "engines": {
51
+ "node": ">=18.0.0",
52
+ "bun": ">=1.0.0"
53
+ }
54
+ }