hypertxt-mcp
Allows querying Google Search Console performance data, including search queries, clicks, impressions, and more.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@hypertxt-mcplist articles awaiting review in project 12"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Hypertxt Python
The official Python client, command-line interface, and MCP server for Hypertxt.
Use it to:
inspect account credits, projects, article templates, and articles;
retrieve, generate, export, review, archive, or publish articles;
query synchronized or live Google Search Console performance;
give MCP-compatible agents a deliberately scoped content-operations toolset.
Install
Install the CLI and MCP server into an isolated environment:
pipx install hypertxtOr run the MCP server without a permanent install:
uvx --from hypertxt hypertxt-mcpPython applications can install it with:
python -m pip install hypertxtRelated MCP server: gsc-mcp
Authenticate
Create a named, revocable key in Hypertxt → Account → Automation. Keep it out of source control and chat transcripts:
export HYPERTXT_API_KEY="htx_replace_with_your_key"
hypertxt status
hypertxt projectsThe client uses https://app.hypertxt.ai by default. Set
HYPERTXT_API_URL only when testing against another Hypertxt deployment.
CLI examples
# Inspect
hypertxt status
hypertxt articles list --project-id 12 --status awaiting_review
hypertxt articles get 451
# Query GSC
hypertxt gsc query \
--project-id 12 \
--group-by query \
--query-contains "mcp" \
--start-date 2026-07-01 \
--end-date 2026-07-25
# Generate after checking credits
hypertxt articles generate \
--project-id 12 \
--workflow-id 8 \
--title "How editorial teams use MCP" \
--keyword "MCP content workflow"
# Record editorial approval, then create a destination draft
hypertxt articles state 451 reviewed
hypertxt articles publish 451 --integration-id 9 --publish-status draftPass --json before the command for machine-readable output.
MCP
Start the stdio server:
hypertxt-mcpMinimal MCP configuration:
{
"mcpServers": {
"hypertxt": {
"command": "uvx",
"args": ["--from", "hypertxt", "hypertxt-mcp"],
"env": {
"HYPERTXT_API_KEY": "${HYPERTXT_API_KEY}"
}
}
}
}The server exposes read tools separately from actions that spend credits, change editorial state, refresh GSC, or publish. Agents should inspect first and obtain approval before calling mutating tools.
Client-specific setup and downloadable prompts:
OpenClaw skill
Install the companion portable Hypertxt skill from its public repository:
openclaw skills install \
git:simplebytes-com/hypertxt-openclaw@main \
--as hypertxtConfigure the MCP server separately so the skill has tools to call. Start with the read-only tool filter in the OpenClaw guide, then enable generation, state changes, GSC refreshes, and publishing when you want the agent to perform those actions.
Python
from hypertxt import HypertxtClient
with HypertxtClient() as client:
status = client.account_status()
articles = client.list_articles(project_id=12, status="awaiting_review")Development
python -m venv .venv
source .venv/bin/activate
python -m pip install -e ".[dev]"
ruff check src tests
mypy src
pytest -q
python -m buildSecurity
Use a different named key for every client or machine.
Never paste an
htx_…key into an LLM conversation.Prefer environment or secret configuration over command arguments.
Inspect the full article before changing state or publishing.
Make generation and live publishing explicit.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityAmaintenanceModel Context Protocol (MCP) server that provides AI agents with access to Google Search Console data.Last updated981,393242MIT
- AlicenseAqualityCmaintenanceMCP server for querying Google Search Console data — search analytics, URL inspection, sitemap monitoring, and more — read-only tools for any MCP-compatible AI client.Last updated7Apache 2.0
- Alicense-qualityCmaintenanceEnables interaction with Google Search Console via MCP, offering search analytics, performance summaries, URL inspection, sitemap management, and property listing for SEO workflows.Last updated1481MIT
- Alicense-qualityCmaintenanceEnables MCP-enabled agents to manage Socheli content: list, inspect, generate renders, dispatch to device fleet, publish across platforms, and curate the dated content plan via natural language.Last updated20MIT
Related MCP Connectors
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Manage SRG+ hubs, channels, content, assets, users, and workspaces from any MCP-aware AI agent.
SEO research, audits, backlinks, GSC, and content workflow tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/simplebytes-com/hypertxt-python'
If you have feedback or need assistance with the MCP directory API, please join our Discord server