@modelcontextprotocol/server-wiki-explorer 0.4.1 → 1.0.0
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 +39 -0
- package/dist/index.js +3644 -44
- package/dist/mcp-app.html +18 -18
- package/dist/server.js +2154 -5419
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -10,6 +10,45 @@ Visualizes Wikipedia link graphs using a force-directed layout. Explore how Wiki
|
|
|
10
10
|
</tr>
|
|
11
11
|
</table>
|
|
12
12
|
|
|
13
|
+
## MCP Client Configuration
|
|
14
|
+
|
|
15
|
+
Add to your MCP client configuration (stdio transport):
|
|
16
|
+
|
|
17
|
+
```json
|
|
18
|
+
{
|
|
19
|
+
"mcpServers": {
|
|
20
|
+
"wiki-explorer": {
|
|
21
|
+
"command": "npx",
|
|
22
|
+
"args": [
|
|
23
|
+
"-y",
|
|
24
|
+
"--silent",
|
|
25
|
+
"--registry=https://registry.npmjs.org/",
|
|
26
|
+
"@modelcontextprotocol/server-wiki-explorer",
|
|
27
|
+
"--stdio"
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### Local Development
|
|
35
|
+
|
|
36
|
+
To test local modifications, use this configuration (replace `~/code/ext-apps` with your clone path):
|
|
37
|
+
|
|
38
|
+
```json
|
|
39
|
+
{
|
|
40
|
+
"mcpServers": {
|
|
41
|
+
"wiki-explorer": {
|
|
42
|
+
"command": "bash",
|
|
43
|
+
"args": [
|
|
44
|
+
"-c",
|
|
45
|
+
"cd ~/code/ext-apps/examples/wiki-explorer-server && npm run build >&2 && node dist/index.js --stdio"
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
```
|
|
51
|
+
|
|
13
52
|
## Features
|
|
14
53
|
|
|
15
54
|
- **Force-directed graph visualization**: Interactive graph powered by [`force-graph`](https://github.com/vasturiano/force-graph)
|