1+ {
2+ "$schema" : " https://json-schema.org/draft/2020-12/schema" ,
3+ "name" : " @webhound/mcp" ,
4+ "display_name" : " Webhound" ,
5+ "description" : " Webhound is an AI agent that can browse the web to answer questions and complete tasks." ,
6+ "repository" : {
7+ "type" : " git" ,
8+ "url" : " https://github.com/WebhoundAI/webhound-mcp"
9+ },
10+ "homepage" : " https://webhound.ai" ,
11+ "author" : {
12+ "name" : " WebhoundAI" ,
13+ "email" : " contact@webhound.ai" ,
14+ "url" : " https://webhound.ai"
15+ },
16+ "license" : " MIT" ,
17+ "categories" : [
18+ " AI Systems" ,
19+ " Web Services"
20+ ],
21+ "tags" : [
22+ " ai-agent" ,
23+ " web-browsing" ,
24+ " mcp"
25+ ],
26+ "arguments" : {
27+ "PORT" : {
28+ "description" : " The port for the server to listen on. Defaults to 3000." ,
29+ "required" : false ,
30+ "example" : " 3000"
31+ },
32+ "ANTHROPIC_API_KEY" : {
33+ "description" : " Your Anthropic API key." ,
34+ "required" : true
35+ },
36+ "TAVILY_API_KEY" : {
37+ "description" : " Your Tavily API key." ,
38+ "required" : true
39+ }
40+ },
41+ "tools" : [
42+ {
43+ "name" : " browse" ,
44+ "description" : " Browse a URL and return the content." ,
45+ "inputSchema" : {
46+ "type" : " object" ,
47+ "properties" : {
48+ "url" : {
49+ "type" : " string" ,
50+ "description" : " The URL to browse."
51+ }
52+ }
53+ },
54+ "required" : [
55+ " url"
56+ ]
57+ },
58+ {
59+ "name" : " search" ,
60+ "description" : " Search the web with a query." ,
61+ "inputSchema" : {
62+ "type" : " object" ,
63+ "properties" : {
64+ "query" : {
65+ "type" : " string" ,
66+ "description" : " The search query."
67+ }
68+ }
69+ },
70+ "required" : [
71+ " query"
72+ ]
73+ }
74+ ],
75+ "resources" : [],
76+ "prompts" : [],
77+ "installations" : {
78+ "npm" : {
79+ "type" : " npm" ,
80+ "description" : " Run using npx without a global installation. Requires Node.js." ,
81+ "command" : " npx" ,
82+ "args" : [
83+ " -y" ,
84+ " @webhound/mcp"
85+ ],
86+ "env" : {
87+ "ANTHROPIC_API_KEY" : " your-anthropic-key" ,
88+ "TAVILY_API_KEY" : " your-tavily-key"
89+ },
90+ "recommended" : true
91+ },
92+ "docker" : {
93+ "type" : " docker" ,
94+ "description" : " Run using Docker. Requires Docker to be installed." ,
95+ "command" : " docker" ,
96+ "args" : [
97+ " run" ,
98+ " -it" ,
99+ " --rm" ,
100+ " -p" ,
101+ " 3000:3000" ,
102+ " -e" ,
103+ " ANTHROPIC_API_KEY" ,
104+ " -e" ,
105+ " TAVILY_API_KEY" ,
106+ " webhound/mcp"
107+ ],
108+ "env" : {
109+ "ANTHROPIC_API_KEY" : " your-anthropic-key" ,
110+ "TAVILY_API_KEY" : " your-tavily-key"
111+ }
112+ }
113+ },
114+ "examples" : [
115+ {
116+ "title" : " Researching a Topic" ,
117+ "description" : " Use Webhound to research the best coffee shops in San Francisco." ,
118+ "prompt" : " What are the best coffee shops in San Francisco?"
119+ },
120+ {
121+ "title" : " Answering a Specific Question" ,
122+ "description" : " Ask Webhound a specific question that requires browsing a particular page." ,
123+ "prompt" : " What is the mission statement of the company at example.com?"
124+ }
125+ ],
126+ "is_official" : false ,
127+ "is_archived" : false
128+ }
0 commit comments