tavily-fastmcp
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., "@tavily-fastmcpSearch for recent articles about quantum computing"
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.
tavily-fastmcp
Typed, ergonomic FastMCP server for Tavily search, extract, map, crawl, and research workflows.
It ships with:
namespaced MCP tools like
tavily.searchandtavily.researchpackaged prompt profiles and large markdown system prompts
static resources and dynamic resource templates for profiles, prompts, examples, and server catalogs
a small direct Python API for local use without MCP
docs, examples, CI, publishing workflow, coverage, Ruff, and mypy
Why this package
langchain-tavily already gives you the raw Tavily tools. tavily-fastmcp adds a cleaner MCP boundary around them:
richer metadata for MCP clients
reusable profiles for common workflows
discoverable prompt and resource surfaces
stable typed request/response models you can test directly
easier LangChain + MCP composition
Tavily's official LangChain package provides the raw Tavily tools, and this package wraps them in a typed FastMCP server surface with prompts, resources, profiles, and example client configuration.
Related MCP server: AI Makerspace MCP Demo Server
Installation
pdm add tavily-fastmcpFor LangChain helpers:
pdm add "tavily-fastmcp[langchain]"For LangGraph workflows:
pdm add "tavily-fastmcp[langchain]" langgraphWith uv:
uv add "tavily-fastmcp[langchain]" langgraphFor docs and development:
pdm install -G :allEnvironment
Tavily uses the TAVILY_API_KEY environment variable. This package preserves that variable directly and layers package-specific settings under the TAVILY_FASTMCP_ prefix.
cp .env.example .envPut real keys only in .env; it is ignored by Git. Keep .env.example as placeholders.
To run the opt-in live smoke test:
make test-liveQuick start
Run the MCP server
tavily-fastmcpOr:
python -m tavily_fastmcp.server --transport stdioDirect Python usage
from tavily_fastmcp.service import LangChainTavilyService
from tavily_fastmcp.settings import get_settings
service = LangChainTavilyService(get_settings())
response = service.search_from_model(query="latest FastMCP prompts docs")
print(response.results[0].url)Create a FastMCP server in code
from tavily_fastmcp.server import create_server
server = create_server()Use through LangChain over MCP
import asyncio
from langchain.agents import create_agent
from langchain_mcp_adapters.client import MultiServerMCPClient
async def main() -> None:
client = MultiServerMCPClient(
{
"tavily": {
"command": "python",
"args": ["-m", "tavily_fastmcp.server", "--transport", "stdio"],
"transport": "stdio",
}
}
)
tools = await client.get_tools()
agent = create_agent(model="openai:gpt-5", tools=tools)
result = await agent.ainvoke(
{
"messages": [
{
"role": "user",
"content": "Research the best docs pages for FastMCP resource templates.",
}
]
}
)
print(result)
asyncio.run(main())Build a focused research agent
Use MCP when you want the model to choose among Tavily search, extract, map, crawl, and research tools at runtime:
import asyncio
from langchain.agents import create_agent
from langchain_mcp_adapters.client import MultiServerMCPClient
async def build_agent():
client = MultiServerMCPClient(
{
"tavily": {
"transport": "stdio",
"command": "python",
"args": ["-m", "tavily_fastmcp.server", "--transport", "stdio"],
"env": {"TAVILY_API_KEY": "tvly-your-key-here"},
}
}
)
tools = await client.get_tools()
return create_agent(
model="openai:gpt-5",
tools=tools,
system_prompt=(
"Use Tavily for current web research. Prefer tavily.search for broad "
"discovery, tavily.extract for source reading, and tavily.research "
"when a synthesized report is requested."
),
)
async def main() -> None:
agent = await build_agent()
result = await agent.ainvoke(
{
"messages": [
{
"role": "user",
"content": "Compare three recent MCP client patterns and cite sources.",
}
]
}
)
print(result)
asyncio.run(main())Use Tavily tools inside a custom LangGraph
Use LangGraph when you want explicit state transitions around the Tavily MCP tools, such as adding review, persistence, retries, or a human approval step.
import asyncio
from langchain_openai import ChatOpenAI
from langchain_mcp_adapters.client import MultiServerMCPClient
from langgraph.graph import START, MessagesState, StateGraph
from langgraph.prebuilt import ToolNode, tools_condition
async def main() -> None:
client = MultiServerMCPClient(
{
"tavily": {
"transport": "stdio",
"command": "python",
"args": ["-m", "tavily_fastmcp.server", "--transport", "stdio"],
"env": {"TAVILY_API_KEY": "tvly-your-key-here"},
}
}
)
tools = await client.get_tools()
model = ChatOpenAI(model="gpt-5").bind_tools(tools)
async def call_model(state: MessagesState) -> dict:
response = await model.ainvoke(state["messages"])
return {"messages": [response]}
graph_builder = StateGraph(MessagesState)
graph_builder.add_node("agent", call_model)
graph_builder.add_node("tools", ToolNode(tools))
graph_builder.add_edge(START, "agent")
graph_builder.add_conditional_edges("agent", tools_condition)
graph_builder.add_edge("tools", "agent")
graph = graph_builder.compile()
result = await graph.ainvoke(
{
"messages": [
{
"role": "user",
"content": "Map the FastMCP docs site and identify the pages about prompts.",
}
]
}
)
print(result["messages"][-1].content)
asyncio.run(main())Agent tool routing guide
Use
tavily.searchfor broad discovery, current facts, and source finding.Use
tavily.extractafter search when the agent needs page text from known URLs.Use
tavily.mapto discover a site's URL structure before targeted extraction.Use
tavily.crawlwhen the agent must inspect multiple pages from one domain.Use
tavily.researchfor multi-source synthesized reports.Use
tavily.catalogand profile resources when an agent needs to learn the available tools and prompt profiles before deciding how to route a task.
Included profiles and prompts
The package ships with large markdown prompts and reusable profiles for:
routersuite-overviewquick-searchtool-searchextract-and-summarizetool-extractsite-discoverytool-mapsite-crawltool-crawldeep-researchtool-researchtool-get-researchrouting-matrixsynthesis-policymcp-usage-guide
They are exposed both as packaged markdown files and as MCP resources / prompts. The richer catalog now also includes a composite suite overview, per-tool deep guides, a routing matrix, a synthesis policy, and an MCP usage guide.
Example URIs:
resource://tavily-fastmcp/catalog/serverresource://tavily-fastmcp/catalog/profilesresource://tavily-fastmcp/profile/deep-researchresource://tavily-fastmcp/prompt/routerresource://tavily-fastmcp/prompt/deep-researchresource://tavily-fastmcp/example/claude-desktop-config
The server is organized so MCP clients can discover tools, prompts, resources, examples, and workflow profiles through namespaced metadata and resource URIs.
Tools exposed
tavily.healthtavily.catalogtavily.searchtavily.extracttavily.maptavily.crawltavily.researchtavily.get_research
All tools use typed arguments, tags, annotations, titles, and custom metadata.
MCP client examples
Claude Code project setup
Claude Code can run this package as a local stdio MCP server. Keep the Tavily key in your shell or project secret manager, then add the server:
export TAVILY_API_KEY="tvly-your-key-here"
claude mcp add tavily-fastmcp --scope project \
--env TAVILY_API_KEY="$TAVILY_API_KEY" \
-- python -m tavily_fastmcp.server --transport stdioUseful checks:
claude mcp list
claude mcp get tavily-fastmcpFor a checked-in Claude Code project config, use .mcp.json with environment
expansion so secrets stay outside Git:
{
"mcpServers": {
"tavily-fastmcp": {
"type": "stdio",
"command": "python",
"args": ["-m", "tavily_fastmcp.server", "--transport", "stdio"],
"env": {
"TAVILY_API_KEY": "${TAVILY_API_KEY}"
}
}
}
}Claude Desktop config snippet
{
"mcpServers": {
"tavily-fastmcp": {
"command": "python",
"args": ["-m", "tavily_fastmcp.server", "--transport", "stdio"],
"env": {
"TAVILY_API_KEY": "tvly-your-key-here"
}
}
}
}Cursor / Codex style stdio config
{
"name": "tavily-fastmcp",
"command": "python",
"args": ["-m", "tavily_fastmcp.server", "--transport", "stdio"],
"env": {
"TAVILY_API_KEY": "tvly-your-key-here"
}
}Development
Install everything:
pdm install -G :allRun the standard checks:
make lint
make type
make test
make docsEquivalent PDM commands:
pdm run ruff check .
pdm run mypy src
pdm run pytest
pdm run sphinx-build -b html docs/source docs/source/_build/htmlDocumentation
make docsThe documentation is grouped under:
docs/source/usage/: MCP, direct Python, and LangChain usage.docs/source/guides/: development, automation, and publishing workflows.docs/source/reference/: configuration, tools, and profiles.
Publishing
Publishing is intended to run through GitHub Releases and PyPI trusted publishing.
Configure the PyPI trusted publisher for repository pr1m8/tavily-fastmcp and
workflow file release.yml with environment pypi.
If PyPI trusted publishing is not ready yet, add a PyPI API token as the GitHub
secret PYPI_API_TOKEN; the release workflow will use it before falling back to
OIDC. For the first upload of a brand-new PyPI project, this may need to be an
account-scoped token. Rotate it to a project-scoped token after the project
exists.
Use the local publish gate before tagging:
make publish-checkThen create and push a version tag such as v0.3.1, publish the GitHub Release,
and let the Release workflow upload distributions to PyPI. The local
make publish target prints the release flow and does not upload packages.
Automation
This project now includes GitHub automation for the full package lifecycle:
CIruns linting, typing, and tests on pushes and pull requests.Docsbuilds the Sphinx site and uploads the rendered HTML as an artifact.Buildcreates source and wheel distributions and validates them withtwine check.Releaserebuilds the distributions on GitHub Releases and publishes them to PyPI using trusted publishing..readthedocs.yamlconfigures Read the Docs to build the Sphinx documentation with Python 3.13.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/pr1m8/tavily-fastmcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server