@lmcc-dev/mult-fetch-mcp-server 1.0.1 → 1.0.2
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.
- package/README.md +10 -10
- package/README.zh.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# mult-fetch-mcp-server
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/mult-fetch-mcp-server)
|
|
3
|
+
[](https://www.npmjs.com/package/@lmcc-dev/mult-fetch-mcp-server)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
|
-
[](https://nodejs.org/)
|
|
5
|
+
[](https://nodejs.org/)
|
|
6
6
|
[](https://www.typescriptlang.org/)
|
|
7
7
|
[](https://github.com/modelcontextprotocol/typescript-sdk)
|
|
8
8
|
[](https://github.com/lmcc-dev/mult-fetch-mcp-server/stargazers)
|
|
9
9
|
[](https://github.com/lmcc-dev/mult-fetch-mcp-server/network/members)
|
|
10
10
|
[](https://github.com/lmcc-dev/mult-fetch-mcp-server/issues)
|
|
11
11
|
[](https://github.com/lmcc-dev/mult-fetch-mcp-server/pulls)
|
|
12
|
-
[](https://www.npmjs.com/package/@lmcc-dev/mult-fetch-mcp-server)
|
|
13
13
|
[](https://github.com/lmcc-dev/mult-fetch-mcp-server/commits/main)
|
|
14
14
|
[](https://github.com/lmcc-dev/mult-fetch-mcp-server/graphs/contributors)
|
|
15
15
|
|
|
@@ -85,13 +85,13 @@ npm install
|
|
|
85
85
|
### Global Installation
|
|
86
86
|
|
|
87
87
|
```bash
|
|
88
|
-
npm install -g mult-fetch-mcp-server
|
|
88
|
+
npm install -g @lmcc-dev/mult-fetch-mcp-server
|
|
89
89
|
```
|
|
90
90
|
|
|
91
91
|
Or use npx to run directly (no installation required):
|
|
92
92
|
|
|
93
93
|
```bash
|
|
94
|
-
npx mult-fetch-mcp-server
|
|
94
|
+
npx @lmcc-dev/mult-fetch-mcp-server
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
## Integration with Claude
|
|
@@ -114,7 +114,7 @@ This method is the simplest, doesn't require specifying the full path, and is su
|
|
|
114
114
|
"mcpServers": {
|
|
115
115
|
"mult-fetch-mcp-server": {
|
|
116
116
|
"command": "npx",
|
|
117
|
-
"args": ["mult-fetch-mcp-server"],
|
|
117
|
+
"args": ["@lmcc-dev/mult-fetch-mcp-server"],
|
|
118
118
|
"env": {
|
|
119
119
|
"MCP_LANG": "en" // Set language to English, options: "zh" or "en"
|
|
120
120
|
}
|
|
@@ -132,7 +132,7 @@ If you need to use a specific installation location, you can specify the full pa
|
|
|
132
132
|
"mcpServers": {
|
|
133
133
|
"mult-fetch-mcp-server": {
|
|
134
134
|
"command": "path-to/bin/node",
|
|
135
|
-
"args": ["path-to/mult-fetch-mcp-server/dist/index.js"],
|
|
135
|
+
"args": ["path-to/@lmcc-dev/mult-fetch-mcp-server/dist/index.js"],
|
|
136
136
|
"env": {
|
|
137
137
|
"MCP_LANG": "en" // Set language to English, options: "zh" or "en"
|
|
138
138
|
}
|
|
@@ -141,7 +141,7 @@ If you need to use a specific installation location, you can specify the full pa
|
|
|
141
141
|
}
|
|
142
142
|
```
|
|
143
143
|
|
|
144
|
-
Please replace `path-to/bin/node` with the path to the Node.js executable on your system, and replace `path-to/mult-fetch-mcp-server` with the actual path to this project.
|
|
144
|
+
Please replace `path-to/bin/node` with the path to the Node.js executable on your system, and replace `path-to/@lmcc-dev/mult-fetch-mcp-server` with the actual path to this project.
|
|
145
145
|
|
|
146
146
|
### Usage Examples
|
|
147
147
|
|
|
@@ -173,9 +173,9 @@ npm run server
|
|
|
173
173
|
# or
|
|
174
174
|
node dist/index.js
|
|
175
175
|
# if globally installed, you can run directly
|
|
176
|
-
mult-fetch-mcp-server
|
|
176
|
+
@lmcc-dev/mult-fetch-mcp-server
|
|
177
177
|
# or use npx
|
|
178
|
-
npx mult-fetch-mcp-server
|
|
178
|
+
npx @lmcc-dev/mult-fetch-mcp-server
|
|
179
179
|
```
|
|
180
180
|
|
|
181
181
|
## Run Client
|
package/README.zh.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# mult-fetch-mcp-server
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/mult-fetch-mcp-server)
|
|
3
|
+
[](https://www.npmjs.com/package/@lmcc-dev/mult-fetch-mcp-server)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
|
-
[](https://nodejs.org/)
|
|
5
|
+
[](https://nodejs.org/)
|
|
6
6
|
[](https://www.typescriptlang.org/)
|
|
7
7
|
[](https://github.com/modelcontextprotocol/typescript-sdk)
|
|
8
8
|
[](https://github.com/lmcc-dev/mult-fetch-mcp-server/stargazers)
|
|
9
9
|
[](https://github.com/lmcc-dev/mult-fetch-mcp-server/network/members)
|
|
10
10
|
[](https://github.com/lmcc-dev/mult-fetch-mcp-server/issues)
|
|
11
11
|
[](https://github.com/lmcc-dev/mult-fetch-mcp-server/pulls)
|
|
12
|
-
[](https://www.npmjs.com/package/@lmcc-dev/mult-fetch-mcp-server)
|
|
13
13
|
[](https://github.com/lmcc-dev/mult-fetch-mcp-server/commits/main)
|
|
14
14
|
[](https://github.com/lmcc-dev/mult-fetch-mcp-server/graphs/contributors)
|
|
15
15
|
|
|
@@ -132,7 +132,7 @@ npx mult-fetch-mcp-server
|
|
|
132
132
|
"mcpServers": {
|
|
133
133
|
"mult-fetch-mcp-server": {
|
|
134
134
|
"command": "path-to/bin/node",
|
|
135
|
-
"args": ["path-to/mult-fetch-mcp-server/dist/index.js"],
|
|
135
|
+
"args": ["path-to/@lmcc-dev/mult-fetch-mcp-server/dist/index.js"],
|
|
136
136
|
"env": {
|
|
137
137
|
"MCP_LANG": "zh" // 设置语言为中文,可选值: "zh" 或 "en"
|
|
138
138
|
}
|
|
@@ -141,7 +141,7 @@ npx mult-fetch-mcp-server
|
|
|
141
141
|
}
|
|
142
142
|
```
|
|
143
143
|
|
|
144
|
-
请将 `path-to/bin/node` 替换为您系统上 Node.js 可执行文件的路径,将 `path-to/mult-fetch-mcp-server` 替换为此项目的实际路径。
|
|
144
|
+
请将 `path-to/bin/node` 替换为您系统上 Node.js 可执行文件的路径,将 `path-to/@lmcc-dev/mult-fetch-mcp-server` 替换为此项目的实际路径。
|
|
145
145
|
|
|
146
146
|
### 使用示例
|
|
147
147
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmcc-dev/mult-fetch-mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "An MCP protocol-based web content fetching tool that supports multiple modes and formats, can be integrated with AI assistants like Claude",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|