Skip to content

Commit 7df770d

Browse files
committed
Merge branch 'main' of https://github.com/wordlift/docs
2 parents fa0f3d5 + 12b2e52 commit 7df770d

File tree

3 files changed

+63
-2
lines changed

3 files changed

+63
-2
lines changed

docs/agent-wordlift/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import Tabs from '@theme/Tabs';
88
import TabItem from '@theme/TabItem';
99

1010
:::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!
1212
:::
1313

1414
# 🤖 Welcome to Agent WordLift - Your Marketing & AI SEO Agent

docs/agent-wordlift/integrations.md

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ title: ⚙️ Integrations
33
sidebar_position: 7
44
---
55

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+
613
# Integrations
714

815
## Agent WordLift Chrome Extension
@@ -146,6 +153,40 @@ The WordLift CLI seamlessly integrates with modern development practices:
146153

147154
**API Integration:** Access the full WordLift Agent API capabilities through command-line interfaces.
148155

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+
149190
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!
150191

151192
---
@@ -193,6 +234,26 @@ Watch how Claude, integrated with WordLift via Model Context Protocol, analyzes
193234
}
194235
```
195236

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+
196257
**For Visual Studio:**
197258
1. Press CTRL/CMD+P and search for "MCP: Add Server"
198259
2. Select "Command (stdio)"

docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import TabItem from '@theme/TabItem';
1010
import ThemedImage from '@theme/ThemedImage';
1111

1212
:::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.
1414
:::
1515

1616
# 👋 Welcome to WordLift

0 commit comments

Comments
 (0)