Webhound MCP
Enables Windsurf (by Codeium) to leverage Webhound's budgeted research for cited reports and datasets.
Enables GitHub Copilot to use Webhound's budget-controlled research capabilities for generating cited reports and datasets.
Allows ChatGPT (OpenAI) to use Webhound for budget-controlled research, returning cited outputs.
Integrates Webhound's research capabilities into Replit Agent, allowing budgeted research and data extraction.
Webhound MCP
Website · Thesis · MCP setup · npm · Official registry
Research has no natural stopping point. A prompt tells an agent what to investigate, but it does not tell the agent how much work the question deserves.
Webhound adds that missing control. Give it a prompt and a dollar budget; it spends that effort searching, reading, verifying, and assembling a cited report or structured dataset. The completed result includes the working documents, sources, claim traces, limitations, and evidence pack behind the answer.
Run Webhound from any MCP-speaking agent. Webhound creates private, budgeted reports and datasets, runs as the agent's research sidecar, accepts non-interrupting source-backed notes, diagnoses failures, and returns cited outputs with sources and claim traces.
This package is the local stdio transport. Webhound also supports hosted MCP at:
https://api.webhound.ai/api/v2/mcpClient-native packages
This repository also packages the hosted MCP and the webhound-research skill
for GitHub Copilot, Claude Code, Cursor, and Kiro:
GitHub Copilot uses
plugin.json,.mcp.json, andskills/webhound-research/SKILL.md.Claude Code uses
.claude-plugin/plugin.json,.mcp.json, and the same skill. The included marketplace can be tested withclaude plugin marketplace add WebhoundAI/webhound-mcp, thenclaude plugin install webhound@webhound.Cursor uses
.cursor-plugin/plugin.json,mcp.json, and the same skill.Kiro uses
POWER.mdandmcp.json.
Both MCP files point to Webhound's production remote endpoint and contain no
API key, bearer token, static OAuth client, or shared publisher credential.
Every person authorizes their own Webhound account through OAuth.
The oauthScopes entry in mcp.json is required by Kiro so it requests
Webhound's two supported scopes instead of Kiro's unrelated defaults. Cursor
ignores that Kiro-specific field and completes OAuth from Webhound's published
authorization metadata.
The shared skill teaches each client the same public contract:
Hound is Webhound's research harness, built with DeepSeek V4 Pro and GPT-5.4 across planning, execution, verification, and assembly.
The prompt defines the investigation. The dollar budget controls research effort.
done=trueis the completion gate. The agent then inspects the evidence pack when the answer depends on the research trail.
ChatGPT developer mode:
Turn on Developer mode under Settings → Security and login.
Open Settings → Plugins, create an app, and use the hosted MCP URL above.
Click Connect. ChatGPT opens Webhound's authorization page.
Paste a Webhound API key once. Webhound exchanges it for a scoped MCP token; ChatGPT stores that token for later calls.
The ChatGPT app can accept attachments and return normal MCP status, output, working documents, claims, and sources. Webhound deliberately does not attach a custom interactive panel beneath tool calls. Public distribution still requires plugin submission through OpenAI.
Replit Agent:
The install link supplies only Webhound's hosted MCP URL. Replit discovers Webhound's OAuth metadata and each person authorizes their own account; the payload contains no API key, bearer token, OAuth client secret, or shared publisher credential.
Related MCP server: GPT Researcher MCP Server
Install
Create a Webhound API key, then add the stdio server to your agent:
{
"mcpServers": {
"webhound": {
"command": "npx",
"args": ["-y", "webhound-mcp"],
"env": {
"WEBHOUND_KEY": "wh_..."
}
}
}
}Claude hosted connector:
https://api.webhound.ai/api/v2/mcpPaste the URL into Claude's custom connector flow. The hosted server exposes OAuth discovery, authorize, and token endpoints for that connect flow.
Smithery:
Add the public
webhound/webhoundserver to your own Smithery toolbox.Every new Smithery connection starts in
auth_requiredand opens a Webhound setup screen that asks that user for their own Webhound API key.Webhound exchanges that key for a scoped MCP token stored on that Smithery connection.
Connecting another client to the same already-authorized toolbox may not prompt again; that is reuse of the same user's saved connection, not a publisher credential shared with other users.
Do not distribute one user's private toolbox endpoint as if it were a shared Webhound credential. Other users should add Webhound to their own toolbox or connect to the hosted Webhound MCP URL directly.
Manus or generic hosted MCP:
Server URL: https://api.webhound.ai/api/v2/mcp
Auth type: HTTP header
Header name: Authorization
Header value: Bearer wh_...
If the MCP app has a dedicated bearer-token field that automatically adds
`Bearer`, paste only `wh_...` in that token field.Claude Code:
claude mcp add --transport http webhound https://api.webhound.ai/api/v2/mcp --header "Authorization: Bearer wh_..."
# Local stdio alternative:
claude mcp add --transport stdio webhound --env WEBHOUND_KEY=wh_... -- npx -y webhound-mcpCodex:
[mcp_servers.webhound]
command = "npx"
args = ["-y", "webhound-mcp"]
[mcp_servers.webhound.env]
WEBHOUND_KEY = "wh_..."Cursor and Claude Desktop use the JSON shape above.
Cline CLI:
cline mcp add webhound \
--transport streamable-http \
--header "Authorization: Bearer wh_..." \
--yes \
https://api.webhound.ai/api/v2/mcpYou can also use the local stdio JSON shape above in Cline's MCP settings. After saving local stdio config, restart the agent session or open a new one if the Webhound tools do not appear. Many clients load MCP servers only when a session starts.
VS Code:
{
"servers": {
"webhound": {
"type": "stdio",
"command": "npx",
"args": ["-y", "webhound-mcp"],
"env": {
"WEBHOUND_KEY": "wh_..."
}
}
}
}Use the same stdio server shape for Windsurf. Windsurf commonly stores it in
~/.codeium/windsurf/mcp_config.json.
Hound
Hound is the research harness exposed by Webhound, not a selectable foundation model or mode. It is built with DeepSeek V4 Pro and GPT-5.4 across planning, execution, verification, and assembly. It is not a direct pass-through to one model and should not be described as "resolving" to a single provider backend.
The prompt defines what to investigate. The user's dollar budget defines how much research effort Hound can spend searching, reading, writing, and verifying before assembly. The MCP does not expose alternate model tiers or modes.
Defaults
Recommended setup defaults:
budget:
$5product:
reportfree run: enabled when available
Onboarding can also help the calling agent save a local budget policy. The
recommended lightweight policy is $2 for quick scouting, $5 for normal cited
research, and $10 for deeper or decision-driving work. The agent should ask
where those rules should apply before writing anything: the current project,
another accessible project, all relevant accessible projects with per-project
rules, or global agent rules. It should not silently write Webhound rules into a
temporary onboarding chat directory. Webhound itself still stores a single
account default budget.
New users may have one non-divisible free run pass. It covers one exact $5 report or dataset. It can be used from the Webhound UI, API, hosted MCP, or this stdio MCP package.
Agents can read and update defaults with:
webhound_onboardingwebhound_helpwebhound_uninstallwebhound_get_defaultswebhound_set_defaults
During onboarding, agents should mention webhound_help for future questions
about Webhound and webhound_uninstall if the user later wants to remove the
MCP setup and local Webhound rules.
Onboarding should ask one setup-timing question before the first run:
Set up this workspace first: ask where rules should apply, inspect only the approved local context, propose Webhound usage rules plus a short budget policy, save only approved rules, then start the first report or dataset.
Jump right in: ask what the user wants researched or extracted, start the first report or dataset, then offer the same local setup pass while Webhound works in the background.
In both branches, onboarding should still walk the user all the way through starting the first Webhound session. After a first session starts, do not fall into a visible polling loop before handling the setup choice or scheduling a later check-in.
Tool Flow
The core lifecycle is detached and visible:
Start work with
webhound_start_reportorwebhound_start_dataset.Watch with
webhound_watchorwebhound_wait.While Webhound runs, keep doing useful independent work when it can improve the result. If the calling agent finds a concrete source-backed note, save it with
webhound_add_sidecar_notes. This does not interrupt the current Planner -> Executor -> Verifier cycle.Sidecar notes are shared state. Use
webhound_list_sidecar_notesto inspect what has already been saved andwebhound_update_sidecar_noteto correct, restore, or dismiss a note without steering the session.Treat
done=trueas the authoritative finished signal.If a run is still healthy and your environment can sleep, schedule a check-in, create a reminder, or run a one-time heartbeat, use
runtime_estimate.recommended_next_check_secondsand callwebhound_watchthen. If it is still running, repeat using the updated estimate. If only a few minutes remain, usewebhound_wait.If a spend-bearing action returns
billing_requiredor a running session returnscredit_exhausted, send the user tohttps://www.webhound.ai/billingto add credits, add a card, or enable auto-recharge. Ask them to ping you when done. After they reply, callwebhound_accountto confirm billing is ready, then retry the original start/add-budget/resume action.If
awaiting_input, reply withwebhound_send_messageusingreason="awaiting_input"; that resumes the session.Use
webhound_send_messagewithreason="user_guidance"only when the user changes the objective, scope, constraints, or deliverable. Do not use steering for ordinary source suggestions.Only when the user explicitly asks to reduce the remaining report scope or finish with the research already gathered, call
webhound_set_budget. Readbudget_control.minimum_target_budgetfrom watch/session status when they want to finish at the nearest safe boundary. Lowering the budget does not bypass assembly: the revised budget becomes the stopping boundary, and Webhound runs normal final assembly afterward. Never do this merely because partial notes look sufficient or the run is taking time.When
done=true, callwebhound_get_sessionfor the complete canonical session in one response. It includes prompts, messages, phases, tasks, agents, current and archived outputs, working documents, dataset rows, claims, sources, traces, notes, diagnostics, session usage history, and artifact links. It is uncapped and reportscomplete_session=true,truncated=false, andomitted=[].webhound_get_evidence_packreturns that same complete session plus evidence-follow-up guidance. Use it when the answer depends on the research trail.Use
webhound_get_outputfor the complete polished result orwebhound_export_sessionwhen the user needs a file. Use the claims and sources tools when you need one focused surface.For datasets, inspect rows/schema plus sources; export CSV/JSON when the user needs to use the data elsewhere.
After reading/exporting the final output and evidence pack, use your own judgment to surface a few focused threads the user could pull next. Ground them in concrete things the session uncovered: unexplained entities, source gaps, paper trails, contested claims, missing rows, or narrow comparisons. These should be optional deeper follow-ups, not generic "research more" suggestions. If several are independent, they can be started in parallel as separate Webhound runs.
If the user asks for a shareable link, use
webhound_get_shareable_link. It makes that report or dataset public to anyone with the link and returns the right share URL:/document/:idfor reports,/dataset/:idfor datasets. It is not Explore publishing and does not create a/p/:slugpublication.
Budget controls depth. As a rule of thumb, $1 buys about 15 minutes of
research. A healthy run may keep searching, reading, writing, and verifying
through several waits while it uses the budget. More budget means more room for
research before final assembly; it is not a signal for the calling agent to
hurry the run. Do not send finalize/wrap-up guidance or stop the session just
because partial working notes look usable.
Public Tools
webhound_healthwebhound_onboardingwebhound_helpwebhound_uninstallwebhound_get_defaultswebhound_set_defaultswebhound_start_reportwebhound_start_datasetwebhound_watchwebhound_waitwebhound_add_sidecar_noteswebhound_list_sidecar_noteswebhound_update_sidecar_notewebhound_send_messagewebhound_stopwebhound_resumewebhound_add_budgetwebhound_set_budgetwebhound_get_outputwebhound_export_sessionwebhound_get_evidence_packwebhound_get_shareable_linkwebhound_get_claimswebhound_get_sourceswebhound_search_sessionswebhound_list_sessionswebhound_get_sessionwebhound_upload_filewebhound_accountwebhound_diagnose
Completion And Diagnostics
webhound_watch returns:
done: terminal statusoutput_ready: an artifact exists; wait fordone=truebefore treating it as finalcompletion_reason:budget_complete,natural_complete,awaiting_input,user_stopped,credit_exhausted,failed, orstuck_or_emptyalerts: structured issues with next actionsbudget_control: whether a report budget can be reduced, current spend and budget, and the nearest safe lower targetnext_research_instruction: guidance for the calling agent to derive focused next investigations from the final output and underlying evidence pack
Do not present a run as successful if alerts contains an error such as empty_output, dataset_zero_rows, or credit_exhausted. For credit_exhausted, use the returned billing_url and user_message_template; do not leave the user with a raw error.
If webhound_wait returns still_running=true, that is normal. Use the
returned runtime estimate to schedule the next check-in when the agent
environment supports timers/reminders/automations, then call webhound_watch
at that time. Use webhound_add_sidecar_notes for source-backed notes found by
the calling agent. Use webhound_send_message(reason="awaiting_input") for
checkpoint replies and webhound_send_message(reason="user_guidance") for
real user intent changes, not for normal elapsed time or source suggestions.
Use webhound_stop only when the user explicitly asks to stop, pause, or
cancel the run.
CLI
webhound-mcp --help
webhound-mcp --version
webhound-mcp --self-test--self-test checks that the package loads and that the launch tool list is present. Use webhound_health from an MCP client to verify live auth and account state.
Local Development
git clone https://github.com/WebhoundAI/webhound-mcp.git
cd webhound-mcp
npm install
WEBHOUND_KEY=wh_... WEBHOUND_API_BASE=http://localhost:5000/api/v2 node bin/server.mjsRun the package self-test without credentials:
npm run self-testLicense
MIT
This server cannot be installed
Maintenance
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/WebhoundAI/webhound-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server