LlamaCloud MCP

AIstdio
Repository

LlamaIndex's official MCP server for LlamaCloud, letting agents query managed retrieval indexes and extract structured data from documents. Each configured index is exposed as its own tool, so an assistant can run semantic search over a specific knowledge base and pull parsed fields out of PDFs and other files.

Connect

Add this configuration to .claude/mcp.json

{
  "mcpServers": {
    "llamacloud": {
      "command": "npx",
      "args": [],
      "env": {
        "LLAMA_CLOUD_API_KEY": "<YOUR_LLAMA_CLOUD_API_KEY>"
      }
    }
  }
}

Tools (2)

query_index

Run a semantic query against a managed LlamaCloud index.

{
  "type": "object",
  "required": [
    "index_name",
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Natural-language query"
    },
    "index_name": {
      "type": "string",
      "description": "Name of the LlamaCloud index to query"
    }
  }
}

extract_from_file

Extract structured data from a document using a LlamaCloud extraction agent.

{
  "type": "object",
  "required": [
    "file_path"
  ],
  "properties": {
    "schema": {
      "type": "object",
      "description": "Target schema describing the fields to extract"
    },
    "file_path": {
      "type": "string",
      "description": "Path to the document to parse"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server information

Author
LlamaIndex (@run-llama)
Repository
https://github.com/run-llama/llamacloud-mcp
License
MIT
Stars
0
Last updated
August 3, 2026