-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.59 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": "wellmarked-mcp",
"version": "1.1.0",
"description": "Official Model Context Protocol (MCP) server for the WellMarked API — let AI agents convert any URL to clean Markdown, bulk-extract, and crawl sites.",
"keywords": [
"wellmarked",
"mcp",
"model-context-protocol",
"markdown",
"scraping",
"extraction",
"html-to-markdown",
"rag",
"llm",
"agents"
],
"homepage": "https://wellmarked.io",
"bugs": {
"url": "https://github.com/WellMarkedAPI/MCP/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WellMarkedAPI/MCP.git"
},
"license": "MIT",
"author": {
"name": "WellMarked",
"email": "support@wellmarked.io",
"url": "https://wellmarked.io"
},
"type": "module",
"bin": {
"wellmarked-mcp": "./dist/index.js"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"start": "node dist/index.js",
"start:http": "node dist/http.js",
"dev": "tsc -p tsconfig.json --watch",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "npm run build && node --test test/tool-parity.test.mjs",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"wellmarked": "^1.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^26.1.1",
"rimraf": "^5.0.5",
"typescript": "^5.4.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}