Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Mcp Server Llamacloud

    A MCP server connecting to managed indexes on LlamaCloud

    82 stars
    JavaScript
    Updated Oct 28, 2025
    aitool
    llamaindex
    mcp
    mcp-server

    Table of Contents

    • Features
    • Tools
    • Installation
    • Tool Definition Format
    • Development
    • Debugging

    Table of Contents

    • Features
    • Tools
    • Installation
    • Tool Definition Format
    • Development
    • Debugging

    Documentation

    LlamaCloud MCP Server

    A MCP server connecting to multiple managed indexes on LlamaCloud

    This is a TypeScript-based MCP server that creates multiple tools, each connected to a specific managed index on LlamaCloud. Each tool is defined through command-line arguments.

    Features

    Tools

    • Creates a separate tool for each index you define
    • Each tool provides a query parameter to search its specific index
    • Auto-generates tool names like get_information_index_name based on index names

    Installation

    To use with your MCP Client (e.g. Claude Desktop, Windsurf or Cursor), add the following config to your MCP client config:

    The LLAMA_CLOUD_PROJECT_NAME environment variable is optional and defaults to Default if not set.

    json
    {
      "mcpServers": {
        "llamacloud": {
          "command": "npx",
          "args": [
            "-y",
            "@llamaindex/mcp-server-llamacloud",
            "--index",
            "10k-SEC-Tesla",
            "--description",
            "10k SEC documents from 2023 for Tesla",
            "--topK",
            "5",
            "--index",
            "10k-SEC-Apple",
            "--description",
            "10k SEC documents from 2023 for Apple"
          ],
          "env": {
            "LLAMA_CLOUD_API_KEY": ""
          }
        }
      }
    }

    For Claude, the MCP config can be found at:

    • On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • On Windows: %APPDATA%/Claude/claude_desktop_config.json

    Tool Definition Format

    In the args array of the MCP config, you can define multiple tools by providing pairs of --index and --description arguments. Each pair defines a new tool. You can also optionally specify --topK to limit the number of results.

    For example:

    bash
    --index "10k-SEC-Tesla" --description "10k SEC documents from 2023 for Tesla" --topK 5

    Adds a tool for the 10k-SEC-Tesla LlamaCloud index to the MCP server. In this example, it's configured to return the top 5 results.

    Development

    Install dependencies:

    bash
    npm install

    Build the server:

    bash
    npm run build

    For development with auto-rebuild:

    bash
    npm run watch

    To use the development version, replace in your MCP config npx @llamaindex/mcp-server-llamacloud with node ./build/index.js.

    Debugging

    Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:

    bash
    npm run inspector

    The Inspector will provide a URL to access debugging tools in your browser.

    Similar MCP

    Based on tags & features

    • MC

      Mcp Open Library

      TypeScript·
      42
    • FH

      Fhir Mcp Server

      Python·
      55
    • MC

      Mcp K8s

      Go·
      128
    • CO

      Code To Tree

      C·
      60

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • MC

      Mcp Open Library

      TypeScript·
      42
    • FH

      Fhir Mcp Server

      Python·
      55
    • MC

      Mcp K8s

      Go·
      128
    • CO

      Code To Tree

      C·
      60

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k