Server data from the Official MCP Registry
Noise-reduced X search planning, signal filtering, and actionable handoff tools for AI agents.
Noise-reduced X search planning, signal filtering, and actionable handoff tools for AI agents.
Remote endpoints: streamable-http: https://mcp.kgninja.dev/mcp
Valid MCP server (2 strong, 1 medium validity signals). 1 code issue detected. No known CVEs in dependencies. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.
3 tools verified · Open access · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"io-github-kg-ninja-hyperxosist-agent": {
"url": "https://mcp.kgninja.dev/mcp"
}
}
}From the project's GitHub README.
API-free advanced X (Twitter) search launcher — for humans in the browser, and for any AI agent (GPT, Claude, Grok, Llama, shell tool-callers…) that needs multi-angle, noise-reduced search missions with an x402 paid path and Signal-to-Fix handoff. Optional Grok Build mode (default off).
| Live demo | https://kg-ninja.github.io/HyperXosist-Agent/ |
| Repository | https://github.com/KG-NINJA/HyperXosist-Agent |
| Agent entry | https://kg-ninja.github.io/HyperXosist-Agent/llms.txt |
| CLI | npx hyperxosist plan "…" --json |
| Version | 2.5.0 |
日本語の要点: X 公式検索用クエリを組み立てる静的ツールです。人間の UI は無料。AI エージェントの本番利用は x402 支払い前提。検索結果の埋め込みや自動投稿はしません。
Raw X advanced search is powerful but easy to get wrong (spam, engagement bait, overlong excludes, one-angle keyword guesses). HyperXosist gives you:
Discover → Plan → Score gate → Pay (x402) → Collect → Self-heal → Keep-filter → Grok Build / Handoff → Remember
x.com/search with a built querylocalStorage onlyfrom / to / @ / OR groups / hashtags / url: / engagement floors / media & reply filters / raw fragment#s=...dispatchToolCall / runTool — real multi-runtime tool dispatch (no hand-written mapping)toOpenAITools() / toAnthropicTools() — drop-in schemas for GPT / Claude / Grok / Llamabin/hyperxosist.js — shell agents get --json plan / dispatch / keep / handoffexportKeepOnlyJson — keep-only machine export for any coding agentplanFromIntent / multi-angle missionsscoreQuery before spending $0.01 per paid callsuggestRefinements when results are empty or noisybuildSignalToFixPipeline → full linked loop into Signal-to-Fix (humans: free UI steps; agents: x402)buildHandoffPackage → Signal-to-Fix keep-only PR handoff packagesignal-to-fix-pipeline.jsonbuildAgentPrompt — model-agnostic one-small-change implementation promptexportNoiseCatalog / noise.extraTermscreateGrokBuildSession / buildGrokBuildPrompt (default off)agent-tools.json — OpenAI-compatible tools (portable to Claude/Grok/Llama runtimes)llms.txt + AGENTS.md multi-LLM discovery docsCtrl+Enter / Ctrl+Shift+Enter.Local UI:
git clone https://github.com/KG-NINJA/HyperXosist-Agent.git
cd HyperXosist-Agent
npm run serve
# → http://localhost:5173
Discovery order
Any runtime in 3 lines
const HyperXosistAgent = require('hyperxosist-agent'); // or ./agent-api.js
// 1) Register tools with your model runtime
const tools = HyperXosistAgent.toOpenAITools(); // or toAnthropicTools()
// 2) When the model calls a tool — one dispatcher for all shapes
const { ok, result } = HyperXosistAgent.dispatchToolCall(name, args);
Shell / CLI (no embed)
npm run cli -- plan "Find product feedback about Acme for PR specs" --json
# or: node bin/hyperxosist.js dispatch hyperxosist_plan_from_intent \
# --args '{"intent":"Find feedback about Acme"}' --json
One call (library sticky loop)
// Node
const HyperXosistAgent = require('./agent-api.js');
const session = HyperXosistAgent.startAgentSession({
intent: 'Find product feedback about Acme for PR specs'
});
const step = session.plan.primaryStep;
if (step.score.recommendPay) {
const paid = step.paidRequest;
// POST paid.body → paid.endpoint
// expect HTTP 402 until x402 payment proof, then 200
// after authorization, open step.searchUrl and collect post texts
}
const keepOnly = HyperXosistAgent.exportKeepOnlyJson(
['...candidate posts...'],
{ productName: 'Acme' }
);
// → keepOnly.texts / keepOnly.signalToFixInput / keepOnly.agentPrompt
const handoff = HyperXosistAgent.buildHandoffPackage({
productName: 'Acme',
feedback: ['...candidate posts...']
});
// → handoff.signalToFix.input into Signal-to-Fix (keep-only only)
// → handoff.grokBuild.prompt for Grok Build
// Grok Build path
const grok = HyperXosistAgent.createGrokBuildSession(
'Grok Build code improvement for Acme',
{ product: 'Acme', targetArea: 'auth' }
);
const prompt = HyperXosistAgent.buildGrokBuildPrompt({
productName: 'Acme',
targetArea: 'auth',
feedback: ['login button does nothing on Safari']
});
// → paste prompt.markdown into Grok Build
CLI dry-run (no payment, no network required for planning)
npm test
npm run quickstart
# or: node examples/quickstart.mjs "Weekly monitor about MyProduct"
The same three read-only tools are available over two adapters:
# Local stdio for Cursor, Claude Code, and VS Code-compatible clients
npm run mcp
# Remote Streamable HTTP for Responses API / ChatGPT integrations
HYPERXOSIST_MCP_TOKEN="replace-me" npm run mcp:remote
Remote endpoints are POST /mcp and GET /health. Public deployment requires HTTPS, Bearer authentication, allowed-host configuration, rate limiting, and monitoring.
Public production Remote MCP:
https://mcp.kgninja.dev/mcphttps://mcp.kgninja.dev/health/health before usehyperxosist_search_plan, hyperxosist_filter_signals, hyperxosist_build_handoffMCP initialization, tools/list, planning, filtering, and handoff do not require x402. x402 applies only to production search URL usage, automated external collection, and the paid execution endpoint at https://api.kgninja.dev/hyperxosist-query.
# No API call: validate the OpenAI Remote MCP example
npm run openai:remote-check
# 20 positive/negative tool-selection cases
npm run test:tool-selection
GitHub Pages remains the static human UI and cannot host MCP. The repository includes a separate Cloudflare Worker Remote MCP adapter using Web Standard Streamable HTTP. It is intended for a custom-domain deployment with a required Bearer secret, closed-by-default origin/host allowlists, a 1 MiB request limit, and a zone-level WAF rate-limit rule. The Node stdio and node:http adapters do not run in Workers unchanged.
Planning, collected-post filtering, and handoff are free. Human manual use of generated X URLs is free. Automated production execution uses https://api.kgninja.dev/hyperxosist-query; staging MCP deployments preserve the existing staging payment Worker through HYPERXOSIST_PAYMENT_ENVIRONMENT=staging. This change does not modify x402 payment behavior.
Remote MCP operations use optional SHA-256 token registry identities, structured Worker usage/error logs, request IDs, and optional KV daily limits. Raw tokens and request content are not logged. Payment analytics remain authoritative in the existing x402 Worker D1/Telegram pipeline; MCP requests are free and never treated as paid settlement events.
See MCP setup and security and ChatGPT App preparation.
Demonstrates the full local path from search intent → keep filter → Signal-to-Fix handoff → coding-agent prompt without network access:
npm run agent-handoff-dryrun -- HyperXosist-Agent
# or: node examples/agent-handoff-dryrun.mjs "HyperXosist-Agent"
What it does (all offline):
filterKeepSignals (keep vs discard)buildHandoffPackageImportant: this is a local dry-run. It does not scrape X, collect real posts, open the search URL, post anything, or perform x402 payment. Real agent production search still requires x402 after scoreQuery.
| Use | Cost |
|---|---|
| Human browser UI | Free |
Local buildQuery / planFromIntent / scoreQuery (planning) | Free |
| Automated production use of generated search URLs | x402 paid (~$0.01 / query) |
On unpaid POST → 402. Complete payment using paymentOptionsEndpoint, then retry until 200.
Do not treat GitHub Pages as the payment verifier.
| ID | Purpose |
|---|---|
product_feedback_radar | Complaints / feature asks / bugs |
signal_to_fix_pipeline | Harvest → PR handoff loop |
competitive_intel | Mentions + switching language |
weekly_monitor | 7-day cron-friendly window |
launch_pulse | Launch / incident discourse |
osint_entity | from / mention / reply-to angles |
grok_code_improvement_radar | Grok Build: bugs / small asks / DX |
ui_ux_feedback_harvest | Frontend / UI friction for Grok |
performance_complaint_detector | Latency / jank for Grok |
Full catalog: missions.json
| Method | Role |
|---|---|
dispatchToolCall / runTool | Execute any tool name (OpenAI/Anthropic/plain shapes) |
toOpenAITools / toAnthropicTools | Drop-in tool schemas |
exportKeepOnlyJson | Keep-only JSON + S2F input + agent prompt |
startAgentSession(opts?) | Universal session (optional mode:'grok') |
planFromIntent(intent) | NL → mission + scored paid steps + .markdown |
buildMission(id, ctx) | Named multi-angle campaign |
scoreQuery(input) | 0–100 + recommendPay + .markdown |
suggestRefinements(input, signals) | Self-heal + .markdown |
buildHandoffPackage | Signal-to-Fix + agentPrompt (any LLM) |
buildAgentPrompt(opts) | Universal one-small-change prompt |
exportNoiseCatalog / customizeNoiseRules | Transparent noise editing |
filterKeepSignals / scoreTechnicalDepth | Keep-only signal quality |
buildGrokBuildPrompt / createGrokBuildSession | Optional Grok mode |
buildQuery / buildSearchUrl / buildShareUrl | Query + shareable state |
buildPaidRequest / buildBatch | x402 payloads |
getToolDefinitions / listMissions | Catalogs (Grok tools opt-in; format:'anthropic') |
npx hyperxosist plan "…" --json
npx hyperxosist dispatch <toolName> --args '{…}' --json
npx hyperxosist tools --format openai|anthropic|full --json
npx hyperxosist keep --product X --feedback '[…]' --export-keep-only --json
npx hyperxosist handoff --product X --feedback '[…]' --json
npx hyperxosist pipeline --product X --json
index.html, app.js, style.css, favicon.svg # Human UI
agent-api.js # Single-source API (Node + browser)
bin/hyperxosist.js # Universal CLI (plan/dispatch/tools/keep…)
agent-use.json # Agent manifest (sticky loop)
agent-tools.json # OpenAI-compatible tools
missions.json # Mission catalog
llms.txt, AGENTS.md # Agent discovery / playbook
x402-payment.json # Payment metadata
top30_repost_blacklist.json # Bait phrase reference
examples/quickstart.mjs # CLI demo
examples/agent-handoff-dryrun.mjs # Offline handoff dry-run (intent→keep→S2F)
examples/agent-session.example.json # Session shape
mcp/tools.js, mcp/core.js # Shared MCP schemas + dispatch
mcp/server.js, mcp/remote-server.js # Local stdio + Remote Streamable HTTP
examples/openai-remote-mcp.mjs # Responses API Remote MCP example
test/agent-api.test.js # Agent API tests
test/mcp-*.test.js # stdio, remote, security, schema tests
.github/workflows/ci.yml # CI
LICENSE, CHANGELOG.md, SECURITY.md, CONTRIBUTING.md
main.main / / (root).https://<user>.github.io/HyperXosist-Agent/No build step. CI runs tests on every push/PR to main.
agent-use.json / x402-payment.json / llms.txt fetchableagent-use.json worksPOST to hyperxosist-query endpoint returns 402MIT © 2026 KG-NINJA
Machine-readable catalog metadata: https://kg-ninja.github.io/HyperXosist-Agent/mcp-catalog.json
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.