⚠️ DEPRECATION NOTICE
This repository and its packages are deprecated and will be maintained until May 1, 2026.
Please migrate to the new packages: - Python:
pip install llama-cloud>=1.0(GitHub) - TypeScript:npm install @llamaindex/llama-cloud(GitHub)The new packages provide the same functionality with improved performance, better support, and active development.
This repository contains the code for hand-written SDKs and clients for interacting with LlamaCloud.
This includes:
Install the package:
pip install llama-cloud-services
Then, get your API key from LlamaCloud.
Then, you can use the services in your code:
from llama_cloud_services import (
LlamaParse,
LlamaExtract,
LlamaCloudIndex,
)
parser = LlamaParse(api_key="YOUR_API_KEY")
extract = LlamaExtract(api_key="YOUR_API_KEY")
index = LlamaCloudIndex(
"my_first_index", project_name="default", api_key="YOUR_API_KEY"
)
See the quickstart guides for each service for more information:
If you are interested in using LlamaCloud services in the EU, you can adjust your base URL to https://api.cloud.eu.llamaindex.ai.
You can also create your API key in the EU region here.
from llama_cloud_services import (
LlamaParse,
LlamaExtract,
EU_BASE_URL,
)
parser = LlamaParse(api_key="YOUR_API_KEY", base_url=EU_BASE_URL)
extract = LlamaExtract(api_key="YOUR_API_KEY", base_url=EU_BASE_URL)
index = LlamaCloudIndex(
"my_first_index",
project_name="default",
api_key="YOUR_API_KEY",
base_url=EU_BASE_URL,
)
You can see complete SDK and API documentation for each service on our official docs.
See the Terms of Service Here.
You can get in touch with us by following our contact link.
$ claude mcp add llama_cloud_services \
-- python -m otcore.mcp_server <graph>