-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.9 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
{
"name": "olostep-mcp",
"version": "1.0.17",
"description": "API to search, extract and structure web data. Features web scraping, AI-powered answers with citations, batch processing (10k URLs), and autonomous site crawling for AI agents and LLMs.",
"type": "module",
"mcpName": "io.github.olostep/olostep-mcp-server",
"bin": {
"olostep-mcp": "./build/index.js"
},
"scripts": {
"build": "tsc && node -e \"const fs=require('fs');const p='build/index.js';let s=fs.readFileSync(p,'utf8');if(!s.startsWith('#!/usr/bin/env node')){fs.writeFileSync(p,'#!/usr/bin/env node\\n'+s);}fs.chmodSync(p,0o755);\"",
"prepack": "npm run build",
"prepublishOnly": "npm run build",
"validate-server-json": "node scripts/validate-schema.mjs",
"test:descriptions": "node tests/check-descriptions.mjs",
"test:e2e": "node tests/e2e.mjs"
},
"files": [
"build/**/*"
],
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"ajv-formats": "^3.0.1",
"dotenv": "^16.4.7",
"express": "^5.2.1",
"node-fetch": "^3.3.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^22.13.10",
"ajv": "^8.12.0",
"ajv-cli": "^5.0.0",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"olostep",
"web-scraping",
"web-search",
"search-api",
"markdown-extraction",
"ai-agent",
"llm-tools",
"web-crawler",
"batch-scraping",
"ai-answers",
"content-extraction",
"data-extraction",
"anthropic",
"claude"
],
"repository": {
"type": "git",
"url": "git+https://github.com/olostep/olostep-mcp-server.git"
},
"author": "olostep",
"bugs": {
"url": "https://github.com/olostep/olostep-mcp-server/issues"
},
"homepage": "https://github.com/olostep/olostep-mcp-server#readme"
}