-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.59 KB
/
package.json
File metadata and controls
57 lines (57 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
{
"name": "rss-reader-mcp",
"version": "1.0.8",
"description": "MCP server for RSS feed aggregation and article content extraction",
"main": "build/index.js",
"module": "./src/index.ts",
"bin": {
"rss-mcp": "./build/index.js"
},
"type": "module",
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"start": "node build/index.js",
"start-http": "cross-env TRANSPORT=httpStream npm start",
"dev": "fastmcp dev src/index.ts",
"inspect": "fastmcp inspect src/index.ts",
"format": "npm-run-all prettier-write eslint-fix",
"prettier-write": "prettier --write .",
"eslint-fix": "eslint --fix ."
},
"keywords": [
"mcp",
"rss",
"feed",
"aggregator"
],
"homepage": "https://github.com/kwp-lab/rss-reader-mcp",
"bugs": "https://github.com/kwp-lab/rss-reader-mcp/issues",
"repository": {
"type": "git",
"url": "https://github.com/kwp-lab/rss-reader-mcp.git"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"fastmcp": "^3.16.0",
"jsdom": "^23.0.0",
"node-fetch-native": "^1.6.5",
"rss-parser": "^3.13.0",
"turndown": "^7.1.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.0.0",
"@types/turndown": "^5.0.4",
"cross-env": "^10.0.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"jiti": "^2.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"typescript": "^5.0.0",
"typescript-eslint": "^8.43.0"
}
}