mcp-server-llamacloud
by run-llama·★ 86·Score 44
MCP server connecting to LlamaCloud managed indexes, providing search tools for various document repositories.
Overview
This MCP server creates individual tools for each managed index defined on LlamaCloud, enabling AI assistants to query specific document collections. Built with TypeScript, it allows users to configure multiple indexes through command-line arguments, with each tool providing a query parameter to search its designated index. The server automatically generates tool names following a consistent pattern based on index names.
Try asking AI
After installing, here are 3 things you can ask your AI assistant:
When to choose this
Choose this MCP server when you need to query specific document collections stored in LlamaCloud and want to integrate those queries as tools in AI assistants.
When NOT to choose this
Avoid this server if you need direct database access, have concerns about vendor lock-in to LlamaCloud, or prefer self-hosted document indexing solutions.
Tools this server exposes
2 tools extracted from the READMEget_information_10k-SEC-TeslaSearches the 10k SEC documents from 2023 for Tesla
get_information_10k-SEC-AppleSearches the 10k SEC documents from 2023 for Apple
Comparable tools
Installation
Install via npm: npx @llamaindex/mcp-server-llamacloud
Configuration for Claude Desktop:
{
"mcpServers": {
"llamacloud": {
"command": "npx",
"args": [
"-y",
"@llamaindex/mcp-server-llamacloud",
"--index",
"10k-SEC-Tesla",
"--description",
"10k SEC documents from 2023 for Tesla",
"--topK",
"5"
],
"env": {
"LLAMA_CLOUD_API_KEY": "<YOUR_API_KEY>"
}
}
}
}Compare mcp-server-llamacloud with
Last updated · Auto-generated from public README + GitHub signals.