MCP Catalogs
Home

mcp-server-llamacloud

by run-llama·86·Score 44

MCP server connecting to LlamaCloud managed indexes, providing search tools for various document repositories.

ai-llmknowledge-graphdeveloper-tools
17
Forks
1
Open issues
11 mo ago
Last commit
2d ago
Indexed

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:

you:Search SEC financial documents for Tesla and Apple 10K reports
you:Query custom document collections stored in LlamaCloud indexes
you:Enable AI assistants to retrieve information from private knowledge bases

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 README
  • get_information_10k-SEC-Tesla

    Searches the 10k SEC documents from 2023 for Tesla

  • get_information_10k-SEC-Apple

    Searches the 10k SEC documents from 2023 for Apple

Comparable tools

semantic-search-mcpchromadb-mcppinecone-mcpvectordb-mcpmcp-server-embeddings

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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.