How to Use the New York Times MCP in LlamaIndex
Index New York Times articles directly into your LlamaIndex vector stores for semantic retrieval with this MCP Server.
Works with every AI agent you already use
…and any MCP-compatible client
Connect New York Times MCP to LlamaIndex
Create your Vinkius account to connect New York Times to LlamaIndex and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Index live New York Times feeds into LlamaIndex
The `get_top_stories` tool serves as a live data loader that feeds raw New York Times editorial content straight into your LlamaIndex document pipeline. Your LlamaIndex indexing pipeline processes these New York Times headlines immediately, turning current news into searchable vector embeddings. This method prevents your LlamaIndex RAG application from answering questions with outdated New York Times information. Grounding your LlamaIndex queries in the latest New York Times articles eliminates the hallucination risks common in static models.
Build searchable LlamaIndex archives from historical news
The `get_archive` tool lets your LlamaIndex agent ingest entire months of historical New York Times coverage to build a specialized knowledge base. This MCP Server allows you to parse thousands of New York Times articles, chunk them, and store them in a local LlamaIndex vector database. Users can then query this historical New York Times index using natural language within LlamaIndex. The LlamaIndex query engine retrieves the exact paragraphs needed from the New York Times archive, referencing the original publication date and section metadata.
Analyze trending New York Times topics in LlamaIndex
The `get_most_shared` tool extracts viral New York Times article metadata so your LlamaIndex pipeline can index what the public is talking about. This lets your LlamaIndex agent run semantic searches over trending New York Times news to identify shifting cultural narratives. Combining this with `get_movie_reviews` allows your LlamaIndex application to build a complete cultural index of New York Times critiques. The LlamaIndex framework treats these New York Times reviews as structured documents, making them instantly queryable alongside your existing files.
Set up New York Times MCP in LlamaIndex
Prerequisites
- Python 3.10+ installed
-
llama-index-tools-mcppackage - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install llama-index-tools-mcp llama-index-llms-openai. The MCP tools package providesBasicMCPClientandMcpToolSpec. - 2
Connect with BasicMCPClient
Point
BasicMCPClientto your Vinkius endpoint URL. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. Supports SSE and Streamable HTTP transports. - 3
Convert to LlamaIndex tools
Call
mcp_tool_spec.to_tool_list_async()to convert all New York Times MCP tools into nativeFunctionToolobjects that any LlamaIndex agent can use. - 4
Run with any LLM
Create a
FunctionAgentwith the tools and your preferred LLM. SwapOpenAIforAnthropic,Gemini, or any LlamaIndex-supported provider.
from llama_index.tools.mcp import BasicMCPClient, McpToolSpec
from llama_index.core.agent.workflow import FunctionAgent
from llama_index.llms.openai import OpenAI
# Connect to the MCP
mcp_client = BasicMCPClient(
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
)
mcp_tool_spec = McpToolSpec(client=mcp_client)
# Convert MCP tools to LlamaIndex tools
tools = await mcp_tool_spec.to_tool_list_async()
# Create and run the agent
agent = FunctionAgent(
tools=tools,
llm=OpenAI(model="gpt-4o"),
system_prompt="You have access to New York Times tools.",
)
response = await agent.run("List recent New York Times data") Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by New York Times. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about New York Times MCP in LlamaIndex
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the New York Times MCP today
We host it, we monitor it, we maintain it. You just paste one token.