webcite-mcp-server 1.0.0 → 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 +126 -20
  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,16 +15,104 @@ 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`:
21
+
22
+ **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
23
+ **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
24
+
25
+ ```json
26
+ {
27
+ "mcpServers": {
28
+ "webcite": {
29
+ "command": "npx",
30
+ "args": ["-y", "webcite-mcp-server"],
31
+ "env": {
32
+ "WEBCITE_API_KEY": "wc_your_api_key_here"
33
+ }
34
+ }
35
+ }
36
+ }
37
+ ```
38
+
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
+ ```
17
48
 
18
- Add to your `claude_desktop_config.json`:
49
+ Or add to `~/.claude/claude_settings.json`:
19
50
 
20
51
  ```json
21
52
  {
22
53
  "mcpServers": {
23
54
  "webcite": {
24
55
  "command": "npx",
25
- "args": ["-y", "@webcite/mcp-server"],
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"],
26
116
  "env": {
27
117
  "WEBCITE_API_KEY": "wc_your_api_key_here"
28
118
  }
@@ -31,14 +121,37 @@ Add to your `claude_desktop_config.json`:
31
121
  }
32
122
  ```
33
123
 
34
- ### For Claude Code
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
- npm install -g @webcite/mcp-server
148
+ npm install -g webcite-mcp-server
39
149
 
40
- # Or run directly with npx
41
- WEBCITE_API_KEY=wc_xxx npx @webcite/mcp-server
150
+ # Run with API key
151
+ WEBCITE_API_KEY=wc_xxx webcite-mcp-server
152
+
153
+ # Or with npx (no install)
154
+ WEBCITE_API_KEY=wc_xxx npx webcite-mcp-server
42
155
  ```
43
156
 
44
157
  ## Getting Your API Key
@@ -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)
@@ -185,14 +292,13 @@ All verification results include:
185
292
  | Plan | Monthly Credits | Price |
186
293
  |------|-----------------|-------|
187
294
  | Free | 50 | $0 |
188
- | Builder | 500 | $20 |
189
- | Team | 2,000 | $50 |
190
- | Enterprise | Custom | Contact us |
295
+ | Builder | 500 | $20/month |
296
+ | Enterprise | 10,000+ | [Contact Sales](https://webcite.co/pricing) |
191
297
 
192
298
  ## Support
193
299
 
194
- - Documentation: [docs.webcite.co](https://docs.webcite.co)
195
- - Issues: [github.com/webcite/mcp-server/issues](https://github.com/webcite/mcp-server/issues)
300
+ - Documentation: [webcite.co/api-docs](https://webcite.co/api-docs)
301
+ - Issues: [GitHub Issues](https://github.com/webcite/webcite-mcp-server/issues)
196
302
  - Email: support@webcite.co
197
303
 
198
304
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webcite-mcp-server",
3
- "version": "1.0.0",
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",