How to integrate Alpaca MCP with Claude Code

Manage your Alpaca directly from Claude Code with zero worries about OAuth hassles, API-breaking issues, or reliability and security concerns. You can do this in two different ways: Via Composio Connect - Direct and easiest approach Via Composio SDK - Programmatic approach with more control

Alpaca logoAlpaca
Api KeyOauth2

Alpaca is a stock and crypto trading platform for commission-free trading, real-time market data, and algorithmic strategies. Use it to build brokerage apps, trading bots, and portfolio workflows with market connectivity.

100 Tools

Introduction

Manage your Alpaca directly from Claude Code with zero worries about OAuth hassles, API-breaking issues, or reliability and security concerns.

You can do this in two different ways:

  1. Via Composio Connect - Direct and easiest approach
  2. Via Composio SDK - Programmatic approach with more control

Also integrate Alpaca with

Why use Composio?

  • Only one MCP URL to connect multiple apps with Claude Code with zero auth hassles.
  • Programmatic tool calling allows LLMs to write its code in a remote workbench to handle complex tool chaining. Reduces to-and-fro with LLMs for frequent tool calling.
  • Handling Large tool responses out of LLM context to minimize context rot.
  • Dynamic just-in-time access to 20,000 tools across 1000+ other Apps for cross-app workflows. It loads the tools you need, so LLMs aren't overwhelmed by tools you don't need.

Connecting Alpaca to Claude Code using Composio

1. Add the Composio MCP to Claude

Terminal

2. Start Claude Code

bash
claude

3. Open your MCP list

bash
/mcp

4. Select Composio and click on Authenticate

Select Composio and click Authenticate

5. This will redirect you to the Composio OAuth page. Complete the flow by authorizing Composio and you're all set.

Composio OAuth authorization page
Composio authorization complete
Ask Claude to connect to your account and authenticate via the link

What is the Alpaca MCP server, and what's possible with it?

The Alpaca MCP server is an implementation of the Model Context Protocol that connects your AI agent and assistants like Claude, Cursor, etc directly to your Alpaca account. It provides structured and secure access so your agent can perform Alpaca operations on your behalf.

Connecting Alpaca via Composio SDK

Composio SDK is the underlying tech that powers Rube. It's a universal gateway that does everything Rube does but with much more programmatic control. You can programmatically generate an MCP URL with the app you need (here Alpaca) for even more tool search precision. It's secure and reliable.

How the Composio SDK works

The Composio SDK follows a three-phase workflow:

  1. Discovery: Searches for tools matching your task and returns relevant toolkits with their details.
  2. Authentication: Checks for active connections. If missing, creates an auth config and returns a connection URL via Auth Link.
  3. Execution: Executes the action using the authenticated connection.

Step-by-step Guide

Step by step10 STEPS
1

Prerequisites

Before starting, make sure you have:
  • Claude Pro, Max, or API billing enabled Anthropic account
  • Composio API Key
  • A Alpaca account
  • Basic knowledge of Python or TypeScript
2

Install Claude Code

bash
# macOS, Linux, WSL
curl -fsSL https://claude.ai/install.sh | bash

# Windows PowerShell
irm https://claude.ai/install.ps1 | iex

# Windows CMD
curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd

To install Claude Code, use one of the following methods based on your operating system:

3

Set up Claude Code

bash
cd your-project-folder
claude

Open a terminal, go to your project folder, and start Claude Code:

  • Claude Code will open in your terminal
  • Follow the prompts to sign in with your Anthropic account
  • Complete the authentication flow
  • Once authenticated, you can start using Claude Code
Claude Code initial setup showing sign-in prompt
Claude Code terminal after successful login
4

Set up environment variables

bash
COMPOSIO_API_KEY=your_composio_api_key_here
USER_ID=your_user_id_here

Create a .env file in your project root with the following variables:

  • COMPOSIO_API_KEY authenticates with Composio (get it from Composio dashboard)
  • USER_ID identifies the user for session management (use any unique identifier)
5

Install Composio library

npm install @composio/core dotenv

Install the Composio TypeScript library to create MCP sessions.

  • @composio/core provides the core Composio functionality
  • dotenv loads environment variables from your .env file
6

Generate Composio MCP URL

import 'dotenv/config';
import { Composio } from '@composio/core';

const { COMPOSIO_API_KEY, USER_ID } = process.env;

if (!COMPOSIO_API_KEY || !USER_ID) {
  throw new Error('COMPOSIO_API_KEY and USER_ID required in .env');
}

const composioClient = new Composio({ apiKey: COMPOSIO_API_KEY });

const composioSession = await composioClient.create(USER_ID, {
  toolkits: ['alpaca'],
});

const composioMcpUrl = composioSession?.mcp.url;

console.log(`MCP URL: ${composioMcpUrl}`);
console.log(`\nUse this command to add to Claude Code:`);
console.log(`claude mcp add --transport http alpaca-composio "${composioMcpUrl}" --headers "X-API-Key:${COMPOSIO_API_KEY}"`);

Create a script to generate a Composio MCP URL for Alpaca. This URL will be used to connect Claude Code to Alpaca.

What's happening

  • We import the Composio client and load environment variables
  • Create a Composio instance with your API key
  • Call create() to create a Tool Router session for Alpaca
  • The returned mcp.url is the MCP server URL that Claude Code will use
  • The script prints this URL so you can copy it
7

Run the script and copy the MCP URL

node --loader ts-node/esm generate_mcp_url.ts
# or if using tsx
tsx generate_mcp_url.ts

Run your TypeScript script to generate the MCP URL.

  • The script connects to Composio and creates a Tool Router session
  • It prints the MCP URL and the exact command you need to run
  • Copy the entire claude mcp add command from the output
8

Add Alpaca MCP to Claude Code

bash
claude mcp add --transport http alpaca-composio "YOUR_MCP_URL_HERE" --headers "X-API-Key:YOUR_COMPOSIO_API_KEY"

# Then restart Claude Code
exit
claude

In your terminal, add the MCP server using the command from the previous step. The command format is:

  • claude mcp add registers a new MCP server with Claude Code
  • --transport http specifies that this is an HTTP-based MCP server
  • The server name (alpaca-composio) is how you'll reference it
  • The URL points to your Composio Tool Router session
  • --headers includes your Composio API key for authentication

After running the command, close the current Claude Code session and start a new one for the changes to take effect.

9

Verify the installation

bash
claude mcp list

Check that your Alpaca MCP server is properly configured.

  • This command lists all MCP servers registered with Claude Code
  • You should see your alpaca-composio entry in the list
  • This confirms that Claude Code can now access Alpaca tools

If everything is wired up, you should see your alpaca-composio entry listed:

Claude Code MCP list showing the toolkit MCP server
10

Authenticate Alpaca

The first time you try to use Alpaca tools, you'll be prompted to authenticate.

  • Claude Code will detect that you need to authenticate with Alpaca
  • It will show you an authentication link
  • Open the link in your browser (or copy/paste it)
  • Complete the Alpaca authorization flow
  • Return to the terminal and start using Alpaca through Claude Code

Once authenticated, you can ask Claude Code to perform Alpaca operations in natural language. For example:

  • "Show my current Alpaca positions"
  • "Check latest AAPL market price"
  • "Cancel all open Alpaca orders"

Complete Code

Here's the complete code to get you started with Alpaca and Claude Code:

import 'dotenv/config';
import { Composio } from '@composio/core';

const { COMPOSIO_API_KEY, USER_ID } = process.env;

if (!COMPOSIO_API_KEY || !USER_ID) {
  throw new Error('COMPOSIO_API_KEY and USER_ID required in .env');
}

const composioClient = new Composio({ apiKey: COMPOSIO_API_KEY });

const composioSession = await composioClient.create(USER_ID, {
  toolkits: ['alpaca'],
});

const composioMcpUrl = composioSession?.mcp.url;

console.log(`MCP URL: ${composioMcpUrl}`);
console.log(`\nUse this command to add to Claude Code:`);
console.log(`claude mcp add --transport http alpaca-composio "${composioMcpUrl}" --headers "X-API-Key:${COMPOSIO_API_KEY}"`);

Conclusion

You've successfully integrated Alpaca with Claude Code using Composio's MCP server. Now you can interact with Alpaca directly from your terminal using natural language commands.

Key features of this setup:

  • Terminal-native experience without switching contexts
  • Natural language commands for Alpaca operations
  • Secure authentication through Composio's managed MCP
  • Tool Router for dynamic tool discovery and execution

Next steps:

  • Try asking Claude Code to perform various Alpaca operations
  • Add more toolkits to your Tool Router session for multi-app workflows
  • Integrate this setup into your development workflow for increased productivity

You can extend this by adding more toolkits, implementing custom workflows, or building automation scripts that leverage Claude Code's capabilities.

TOOLS

Supported Tools

Every Alpaca action and event your agent gets out of the box.

Add Asset to Watchlist

Adds a symbol to an existing watchlist in the authenticated account.

Add Asset to Watchlist by Name

Add an asset to a watchlist by name.

Create Watchlist

Creates a new watchlist for the authenticated account.

Create Watchlist

Create a new watchlist for the authenticated account.

Delete All Open Positions

Liquidates all open positions by closing them at market price.

Delete All Orders for Account

Attempts to cancel all open orders for a specified trading account.

Delete Unsubscribe Account

Delete a rebalancing subscription to unsubscribe an account.

Delete Watchlist By ID

Delete a watchlist by its unique identifier.

Get Account

Retrieves account information for the authenticated Alpaca account.

Get Account Activities

Retrieves account activities for the authenticated Alpaca account.

Get Account Activities V2

Retrieves account activities of one type for the authenticated Alpaca account using the v2 API.

Get Account Activities By Activity Type

Retrieves account activities of a specific type for the authenticated Alpaca account.

Get Account Configurations

Retrieves the current trading account configuration settings for the authenticated Alpaca account.

Get Account Portfolio History

Retrieves the portfolio history statistics for an Alpaca trading account.

Get Account Portfolio History

Retrieves the portfolio history statistics for a trading account.

Get All Account Positions

Bulk fetches all open positions for the authenticated account.

Get All Open Positions

Retrieves all open positions for the authenticated Alpaca trading account.

Get All Orders

Retrieves all orders for an account based on specified filter criteria.

Get Historical Crypto US Bars

Retrieves historical OHLCV (Open, High, Low, Close, Volume) bars for crypto symbols in a specific US location.

Get Crypto Bars for Multiple Symbols

Retrieves OHLCV (Open, High, Low, Close, Volume) bars for multiple crypto symbols.

Get Stock Bars for Multiple Symbols

Retrieves OHLCV (Open, High, Low, Close, Volume) bars for multiple stock symbols.

Get Historical Bars for Stock Symbol

Retrieves historical OHLCV (Open, High, Low, Close, Volume) bars for a single stock symbol.

Get Historical Stock Bars

Retrieves historical OHLCV (Open, High, Low, Close, Volume) bars for a single stock symbol.

Get Calendar

Retrieves market calendar information for trading days from the Alpaca Trading API.

Get Clock

Retrieves the current market clock information from the Alpaca Trading API.

Get Stock Conditions

Retrieves the mapping of condition codes to their names from Alpaca Markets API for the specified type (trade or quote conditions) and tape.

Get Crypto Latest Quotes

Retrieves the latest bid and ask prices for specified crypto symbols at a specific location.

Get Crypto Perp Latest Bars

Retrieves the latest OHLCV (Open, High, Low, Close, Volume) bars for crypto perpetual futures symbols.

Get Crypto Perp Latest Orderbooks

Retrieves the latest bid and ask orderbook data for specified crypto perpetual futures symbols.

Get Crypto Perp Latest Pricing

Retrieves the latest pricing data for specified crypto perpetual futures symbols.

Get Crypto Perp Latest Quotes

Retrieves the latest bid and ask prices for specified crypto perpetual futures symbols for a specific location.

Get Crypto Perp Latest Trades

Retrieves the latest trade data for specified crypto perpetual futures symbols.

Get Crypto Perps Global Latest Bars

Retrieves the latest OHLCV (Open, High, Low, Close, Volume) bars for crypto perpetual futures symbols.

Get Crypto Perps Global Latest Pricing

Returns the latest pricing data for crypto perpetual futures symbols.

Get Crypto Perps Global Latest Quotes

Retrieves the latest bid and ask prices for specified crypto perpetual futures symbols.

Get Crypto Perps Global Latest Trades

Retrieves the latest trade data for specified crypto perpetual futures symbols.

Get Crypto Snapshots

Retrieves snapshots (latest trade, latest quote, minute bar, daily bar, and previous daily bar) for multiple cryptocurrency symbols in a specific location.

Get Crypto US Latest Bars

Retrieves the latest OHLCV (Open, High, Low, Close, Volume) bars for US crypto symbols.

Get Crypto US Latest Orderbooks

Retrieves the latest bid and ask orderbook data for specified crypto symbols in the US market.

Get Crypto US Latest Quotes

Retrieves the latest bid and ask prices for specified crypto symbols in the US location.

Get Crypto US Latest Trades

Retrieves the latest trade data for specified crypto symbols in the US location.

Get Crypto US Historical Quotes

Retrieves historical quote data (bid/ask prices) for specified crypto symbols on US exchanges.

Get Crypto US Snapshots

Retrieves snapshots (latest trade, latest quote, minute bar, daily bar, and previous daily bar) for multiple cryptocurrency symbols in the US market location.

Get Crypto US Trades

Retrieves historical trade data for specified US crypto symbols.

Get Exchanges

Retrieves a list of supported stock exchanges with their short codes and full names from the Alpaca Market Data API.

Get Latest Bar for Stock Symbol

Retrieves the latest OHLCV (Open, High, Low, Close, Volume) bar for a single stock symbol.

Get Latest Bars For Crypto Symbol

Retrieves the latest OHLCV (Open, High, Low, Close, Volume) bar data for a crypto symbol.

Get Latest Bars for Crypto Symbols

Retrieves the latest OHLCV (Open, High, Low, Close, Volume) bars for multiple crypto symbols.

Get Latest Bars for Multiple Stock Symbols

Retrieves the latest OHLCV (Open, High, Low, Close, Volume) bars for multiple stock symbols.

Get Crypto Latest Orderbooks

Retrieves the latest bid and ask orderbook data for specified crypto symbols.

Get Crypto Latest Quote

Retrieves the latest bid and ask prices for a specified crypto symbol.

Get Latest Quote for Stock Symbol

Retrieves the latest NBBO (National Best Bid and Offer) quote for a single stock symbol.

Get Crypto Latest Quotes

Retrieves the latest bid and ask prices for specified crypto symbols.

Get Latest Quotes for Multiple Stock Symbols

Retrieves the latest NBBO (National Best Bid and Offer) quotes for multiple stock symbols.

Get Latest Trade for Stock Symbol

Retrieves the latest trade data for a single stock symbol.

Get Latest Crypto Trades

Retrieves the latest trade data for specified crypto symbols.

Get Latest Trades for Multiple Stock Symbols

Retrieves the latest trade data for multiple stock symbols.

Get Market Calendar

Retrieves market calendar information for a specific exchange from the Alpaca Trading API.

Get Meta Exchanges

Retrieves a list of all US stock exchanges and their identifying information from the Alpaca Market Data API.

Get Most Active Stocks

Retrieves the most active stocks by trading volume or trade count.

Get News

Retrieves news articles for specified crypto symbols from the Alpaca Market Data API.

Get Open Position

Fetches a single open position by symbol or asset ID.

Get Options Historical Bars

Retrieves historical OHLCV (Open, High, Low, Close, Volume) bars for options contracts.

Get Option Chain

Retrieves the option chain for a specific underlying symbol including quotes and greeks for all available strikes and expirations.

Get Option Contract

Get an option contract by its symbol or unique identifier.

Get Option Latest Quotes

Retrieves the latest bid and ask prices for specified option symbols.

Get Options Meta Conditions

Retrieves the mapping of condition codes to their names from Alpaca Markets API for the specified tick type (trade or quote conditions).

Get Option Contracts

Retrieve option contracts from Alpaca Markets API (BETA).

Get Options Latest Trades

Retrieves the latest trade for each requested option contract symbol.

Get Options Meta Conditions Trade

Retrieves the mapping of trade condition codes to their names from Alpaca Markets API.

Get Options Snapshots

Retrieves snapshots (latest trade, latest quote, minute bar, daily bar, and previous daily bar) for multiple option contract symbols.

Get Options Snapshots by Underlying Symbol

Retrieves the option chain snapshot data for a specific underlying symbol.

Get Options Historical Trades

Retrieves historical trade data for option contracts.

Get PDT Status

Retrieves the Pattern Day Trader (PDT) status for a specified Alpaca trading account.

List account positions

Lists all open positions for a specified trading account.

Get Quotes for Multiple Stock Symbols

Retrieves historical quote (bid/ask) data for multiple stock symbols.

Get Quotes for Stock Symbol

Retrieves historical NBBO (National Best Bid and Offer) quotes for a specific stock symbol.

Get Stock Snapshot for Symbol

Retrieves a snapshot (latest trade, latest quote, minute bar, daily bar, and previous daily bar) for a single stock symbol.

Get Crypto Snapshots

Retrieves snapshots (latest trade, latest quote, minute bar, daily bar, and previous daily bar) for multiple cryptocurrency symbols.

Get Stock Snapshots for Multiple Symbols

Retrieves snapshots (latest trade, latest quote, minute bar, daily bar, and previous daily bar) for multiple stock symbols.

Get Specific Announcement

Retrieves a specific corporate action announcement by its unique identifier.

Get Stock Auctions

Retrieves historical auction data for specified stock symbols.

Get Stock Auctions for Symbol

Retrieves historical auction (opening/closing print) data for a single stock symbol.

Get Stocks Meta Conditions Trade

Retrieves the mapping of trade condition codes to their names from Alpaca Markets API.

Get Subscription

Retrieves a rebalancing subscription by its unique ID.

Get Top Movers By Market Type

Retrieves the top market movers (gainers and losers) for a specified market type.

Get Trades for Multiple Crypto Symbols

Retrieves historical trade data for specified crypto symbols.

Get Trades for Multiple Stock Symbols

Retrieves historical trade data for multiple stock symbols.

Get Historical Trades for Stock Symbol

Retrieves historical trade data for a single stock symbol.

Get Watchlist By ID

Retrieves a single watchlist by its unique identifier.

Get Watchlist By Name

Retrieves a specific watchlist by its name.

Get Watchlists

Retrieves all watchlists associated with the authenticated account.

Update Account Configurations

Update the trading account configuration settings for the authenticated account.

Remove Asset From Watchlist

Removes a symbol from an existing watchlist in Alpaca.

Remove Symbol From Watchlist

Tool to remove a symbol from an existing watchlist in Alpaca.

Update Trading Configurations

Updates trading account configurations for an Alpaca trading account.

Update Watchlist By ID

Updates an existing watchlist by its unique identifier.

Update Watchlist By Name

Updates an existing watchlist by its name.

Update Watchlist By Name (v2)

Updates an existing watchlist by its name.

Upload Account CIP Information

Upload CIP (Customer Identification Program) information for an account to complete identity verification.

FAQ

Frequently asked questions

With a standalone Alpaca MCP server, the agents and LLMs can only access a fixed set of Alpaca tools tied to that server. However, with the Composio Tool Router, agents can dynamically load tools from Alpaca and many other apps based on the task at hand, all through a single MCP endpoint.

Yes, you can. Claude Code fully supports MCP integration. You get structured tool calling, message history handling, and model orchestration while Tool Router takes care of discovering and serving the right Alpaca tools.

Yes, absolutely. You can configure which Alpaca scopes and actions are allowed when connecting your account to Composio. You can also bring your own OAuth credentials or API configuration so you keep full control over what the agent can do.

All sensitive data such as tokens, keys, and configuration is fully encrypted at rest and in transit. Composio is SOC 2 Type 2 compliant and follows strict security practices so your Alpaca data and credentials are handled as safely as possible.

Start with Alpaca.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Alpaca tool your agent needs.Free to start.

Start building