leo-tavily-mcp
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., "@leo-tavily-mcpsearch the web for latest AI news"
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.
leo-tavily-mcp
Tavily web search as a Leo provider package, over MCP.
Leo's web_search tool doesn't search anything itself — it resolves a
WebSearchProvider and asks that. This server is one, reachable as a package
the hub installs at runtime rather than one it has to be rebuilt for.
What it answers
The web_search role in leo_mcp::providers:
search({ query, max_results }) -> { results: [{ title, url, snippet, score? }] }Results come back as JSON in a text content block, which is the convention the hub's bridge reads.
Related MCP server: Tavily MCP Server
Configuration
One setting, declared by the package descriptor and handed to this process by Leo as an environment variable under its settings key, verbatim:
env | where it comes from |
| Settings → Packages → Web Search |
Leo only hands over keys the package declared in entitlements.settings_read
and the owner consented to — never the whole settings table. The name is
lower-case because it is the settings key; renaming it on either side means
the credential silently never arrives.
With no key configured the tool returns isError with a message naming the
setting. That is deliberate: an empty result set would reach Leo as "the web
has nothing on that".
Running it
npm install
node index.js # speaks MCP over stdio
npm test # checks the response mapping, no network neededWhy plain JavaScript
This ships as a git tarball pinned to a commit SHA rather than an npm package, and npm does not reliably run build steps for a tarball URL. A TypeScript source tree would install and then fail to start on somebody else's machine, at the far end, where it is hardest to diagnose.
Registry entry
{
"name": "tavily",
"label": "Web Search",
"mcp": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "https://github.com/TheBananaStand/leo-tavily-mcp/archive/<40-char-sha>.tar.gz"]
},
"descriptor": {
"provides": ["web_search"],
"fields": [
{ "key": "tavily_api_key", "label": "API Key", "field_type": "password", "required": true }
],
"entitlements": {
"settings_read": ["tavily_api_key"],
"network": ["api.tavily.com"],
"sends": [
{ "to": "api.tavily.com", "classes": ["search_queries"],
"because": "The search text and nothing else." }
]
}
}
}The URL must name a full 40-character commit SHA. A tag looks equally
specific and is not — refs/tags/v1.0.0 is a pointer its owner can move after
the entry has been reviewed, so the hub rejects it as unpinned.
License
MIT
This server cannot be installed
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
- AlicenseNot gradedqualityFmaintenanceIntegrates Tavily's search API with LLMs to provide advanced web search capabilities, including intelligent result summaries, domain filtering for quality control, and configurable search parameters.616MIT
- AlicenseNot gradedqualityFmaintenanceProvides AI-powered web search capabilities using Tavily's search API, enabling LLMs to perform sophisticated web searches, get direct answers to questions, and search recent news articles.72MIT
- FlicenseCqualityDmaintenanceEnables web search capabilities through the Tavily API, allowing users to perform web searches and retrieve information from the internet through natural language queries.3
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to perform real-time web searches, extract data from web pages, map website structures, and crawl websites using the Tavily API.110MIT
Related MCP Connectors
LLM-ready web search + instant answers + URL-to-clean-text fetch for agents and RAG.
The best web search for your AI Agent
Web search for AI agents — one tool across 6 engines, routed to the cheapest + cached.
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/TheBananaStand/leo-tavily-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server