webcite-mcp-server 1.0.1 → 1.1.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.
Files changed (2) hide show
  1. package/README.md +119 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # WebCite MCP Server
2
2
 
3
- MCP (Model Context Protocol) server for WebCite - enables Claude to verify factual claims against authoritative sources.
3
+ MCP (Model Context Protocol) server for WebCite - enables AI assistants to verify factual claims against authoritative sources.
4
+
5
+ Works with **Claude Desktop**, **Claude Code**, **Cursor**, **Continue**, **Cody**, **Zed**, and any MCP-compatible client.
4
6
 
5
7
  ## Features
6
8
 
@@ -13,9 +15,12 @@ MCP (Model Context Protocol) server for WebCite - enables Claude to verify factu
13
15
 
14
16
  ## Installation
15
17
 
16
- ### For Claude Desktop
18
+ ### Claude Desktop
19
+
20
+ Add to `claude_desktop_config.json`:
17
21
 
18
- Add to your `claude_desktop_config.json`:
22
+ **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
23
+ **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
19
24
 
20
25
  ```json
21
26
  {
@@ -31,13 +36,121 @@ Add to your `claude_desktop_config.json`:
31
36
  }
32
37
  ```
33
38
 
34
- ### For Claude Code
39
+ ### Claude Code (CLI)
40
+
41
+ ```bash
42
+ # Add to Claude Code
43
+ claude mcp add webcite -- npx -y webcite-mcp-server
44
+
45
+ # Set API key
46
+ export WEBCITE_API_KEY=wc_your_api_key_here
47
+ ```
48
+
49
+ Or add to `~/.claude/claude_settings.json`:
50
+
51
+ ```json
52
+ {
53
+ "mcpServers": {
54
+ "webcite": {
55
+ "command": "npx",
56
+ "args": ["-y", "webcite-mcp-server"],
57
+ "env": {
58
+ "WEBCITE_API_KEY": "wc_your_api_key_here"
59
+ }
60
+ }
61
+ }
62
+ }
63
+ ```
64
+
65
+ ### Cursor
66
+
67
+ Add to `.cursor/mcp.json` in your project or `~/.cursor/mcp.json` globally:
68
+
69
+ ```json
70
+ {
71
+ "mcpServers": {
72
+ "webcite": {
73
+ "command": "npx",
74
+ "args": ["-y", "webcite-mcp-server"],
75
+ "env": {
76
+ "WEBCITE_API_KEY": "wc_your_api_key_here"
77
+ }
78
+ }
79
+ }
80
+ }
81
+ ```
82
+
83
+ ### Continue
84
+
85
+ Add to `~/.continue/config.json`:
86
+
87
+ ```json
88
+ {
89
+ "experimental": {
90
+ "modelContextProtocolServers": [
91
+ {
92
+ "transport": {
93
+ "type": "stdio",
94
+ "command": "npx",
95
+ "args": ["-y", "webcite-mcp-server"]
96
+ },
97
+ "env": {
98
+ "WEBCITE_API_KEY": "wc_your_api_key_here"
99
+ }
100
+ }
101
+ ]
102
+ }
103
+ }
104
+ ```
105
+
106
+ ### Cody (VS Code)
107
+
108
+ Add to VS Code settings (`settings.json`):
109
+
110
+ ```json
111
+ {
112
+ "cody.experimental.mcp.servers": {
113
+ "webcite": {
114
+ "command": "npx",
115
+ "args": ["-y", "webcite-mcp-server"],
116
+ "env": {
117
+ "WEBCITE_API_KEY": "wc_your_api_key_here"
118
+ }
119
+ }
120
+ }
121
+ }
122
+ ```
123
+
124
+ ### Zed
125
+
126
+ Add to `~/.config/zed/settings.json`:
127
+
128
+ ```json
129
+ {
130
+ "context_servers": {
131
+ "webcite": {
132
+ "command": {
133
+ "path": "npx",
134
+ "args": ["-y", "webcite-mcp-server"]
135
+ },
136
+ "env": {
137
+ "WEBCITE_API_KEY": "wc_your_api_key_here"
138
+ }
139
+ }
140
+ }
141
+ }
142
+ ```
143
+
144
+ ### Generic / Direct Usage
35
145
 
36
146
  ```bash
37
147
  # Install globally
38
148
  npm install -g webcite-mcp-server
39
149
 
40
- # Or run directly with npx
150
+ # Run with API key
151
+ WEBCITE_API_KEY=wc_xxx webcite-mcp-server
152
+
153
+ # Or with npx (no install)
41
154
  WEBCITE_API_KEY=wc_xxx npx webcite-mcp-server
42
155
  ```
43
156
 
@@ -53,9 +166,7 @@ WEBCITE_API_KEY=wc_xxx npx webcite-mcp-server
53
166
  ### Verify a Claim
54
167
 
55
168
  ```
56
- User: Use WebCite to verify: "The Great Wall of China is visible from space"
57
-
58
- Claude: [Calls verify_claim tool]
169
+ User: Verify this claim: "The Great Wall of China is visible from space"
59
170
 
60
171
  # Fact Check: "The Great Wall of China is visible from space"
61
172
 
@@ -82,8 +193,6 @@ Claude: [Calls verify_claim tool]
82
193
  ```
83
194
  User: Search for sources about "quantum computing breakthroughs 2024"
84
195
 
85
- Claude: [Calls search_sources tool]
86
-
87
196
  # Search Results: "quantum computing breakthroughs 2024"
88
197
 
89
198
  Found 8 sources:
@@ -99,8 +208,6 @@ Found 8 sources:
99
208
  ```
100
209
  User: Show my recent fact-checks
101
210
 
102
- Claude: [Calls list_citations tool]
103
-
104
211
  # Your Verification History
105
212
 
106
213
  Page 1 of 3 (28 total)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webcite-mcp-server",
3
- "version": "1.0.1",
3
+ "version": "1.1.0",
4
4
  "description": "WebCite MCP Server for Claude - Fact verification and citation API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",