You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/agent-wordlift/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ import Tabs from '@theme/Tabs';
8
8
import TabItem from '@theme/TabItem';
9
9
10
10
:::info Version Notice
11
-
Latest Release: 3.8.0 (November 2025) - Now with AI-accessible documentation (llms.txt/llms-full.txt), Google Search Console URL Inspections API, Enhanced Google Knowledge Graph integration and AI Sub-Agent workflows via MCP!
11
+
Latest Release: 3.9.0 (January 2026) - Support for header-based authorization in MCP, Google Search Console URL Inspections API, Enhanced Google Knowledge Graph integration and AI Sub-Agent workflows!
12
12
:::
13
13
14
14
# 🤖 Welcome to Agent WordLift - Your Marketing & AI SEO Agent
Copy file name to clipboardExpand all lines: docs/agent-wordlift/integrations.md
+61Lines changed: 61 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,13 @@ title: ⚙️ Integrations
3
3
sidebar_position: 7
4
4
---
5
5
6
+
import Tabs from '@theme/Tabs';
7
+
import TabItem from '@theme/TabItem';
8
+
9
+
:::info Version Notice
10
+
Latest Release: 3.9.0 (January 2026) - Support for header-based authorization in MCP, Google Search Console URL Inspections API, Enhanced Google Knowledge Graph integration and AI Sub-Agent workflows!
11
+
:::
12
+
6
13
# Integrations
7
14
8
15
## Agent WordLift Chrome Extension
@@ -146,6 +153,40 @@ The WordLift CLI seamlessly integrates with modern development practices:
146
153
147
154
**API Integration:** Access the full WordLift Agent API capabilities through command-line interfaces.
148
155
156
+
#### Advanced CLI Configuration (Experimental)
157
+
158
+
For advanced users or programmatic setups, you can manually configure the CLI settings including header-based authorization.
159
+
160
+
:::warning
161
+
Direct configuration modification is intended for advanced users. The API key must be manually edited in the configuration file as environment variables are not currently interpolated.
162
+
:::
163
+
164
+
To edit the configuration, locate `settings.json` based on your installation:
165
+
166
+
```bash
167
+
# If installed locally (git clone)
168
+
vim .gemini/settings.json
169
+
170
+
# If installed globally via npm
171
+
vim $(dirname $(which wordlift-cli))/../lib/node_modules/wordlift-cli/.gemini/settings.json
172
+
```
173
+
174
+
A sample header-based authorization configuration looks like this:
175
+
176
+
```json
177
+
{
178
+
"Wordlift - via header auth": {
179
+
"command": "npx",
180
+
"args": [
181
+
"mcp-remote",
182
+
"https://mcp.wordlift.io/sse",
183
+
"--header",
184
+
"Authorization: Key YOUR_WORDLIFT_API_KEY_HERE"
185
+
]
186
+
}
187
+
}
188
+
```
189
+
149
190
Ready to supercharge your command-line SEO workflow? [Install WordLift CLI](https://www.npmjs.com/package/wordlift-cli) and bring Agent WordLift's power directly to your terminal!
150
191
151
192
---
@@ -193,6 +234,26 @@ Watch how Claude, integrated with WordLift via Model Context Protocol, analyzes
193
234
}
194
235
```
195
236
237
+
:::tip Advanced: Header-based Authorization
238
+
For programmatic use or advanced configurations, you can provide the API key directly in the configuration using the `--header` flag:
239
+
```json
240
+
{
241
+
"mcpServers": {
242
+
"wordlift": {
243
+
"command": "npx",
244
+
"args": [
245
+
"-y",
246
+
"mcp-remote",
247
+
"https://mcp.wordlift.io/sse",
248
+
"--header",
249
+
"Authorization: Key YOUR_WORDLIFT_API_KEY_HERE"
250
+
]
251
+
}
252
+
}
253
+
}
254
+
```
255
+
:::
256
+
196
257
**For Visual Studio:**
197
258
1. Press CTRL/CMD+P and search for "MCP: Add Server"
Copy file name to clipboardExpand all lines: docs/introduction.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ import TabItem from '@theme/TabItem';
10
10
import ThemedImage from '@theme/ThemedImage';
11
11
12
12
:::info Version Notice
13
-
Latest Release: 3.9.0 (January 2026) — Added a new [worai tool section](/worai/install/) and improved documentation for installing the [WordLift Cloud script](/cloud/), plus support for automatic FAQ rendering in [WordLift Cloud](/cloud/).
13
+
Latest Release: 3.9.0 (January 2026) — Support for header-based authorization in MCP, a new [worai tool section](/worai/install/), improved documentation for installing [WordLift Cloud](/cloud/), and automatic FAQ rendering.
0 commit comments