Loading...
Loading...
Alpaca integration. Manage Organizations, Users, Filters. Use when the user wants to interact with Alpaca data.
npx skill4agent add membranedev/application-skills alpacamembranenpm install -g @membranehq/climembrane login --tenantmembrane login complete <code>membrane search alpaca --elementType=connector --jsonoutput.items[0].element?.idmembrane connect --connectorId=CONNECTOR_ID --jsonmembrane connection list --jsonconnectionIdmembrane action list --intent=QUERY --connectionId=CONNECTION_ID --json| Name | Key | Description |
|---|---|---|
| List Assets | list-assets | Retrieve a list of assets available for trading. |
| List Positions | list-positions | Retrieve a list of all open positions in the account. |
| List Orders | list-orders | Retrieve a list of orders for the account, with optional filters. |
| List Watchlists | list-watchlists | Retrieve all watchlists for the account. |
| List Account Activities | list-account-activities | Retrieve account activity history including trades, dividends, and other transactions. |
| Get Account | get-account | Retrieve the account information associated with the current API credentials. |
| Get Asset | get-asset | Retrieve details about a specific asset by symbol or asset ID. |
| Get Position | get-position | Retrieve the position for a specific asset by symbol or asset ID. |
| Get Order | get-order | Retrieve details of a specific order by its ID. |
| Get Watchlist | get-watchlist | Retrieve a specific watchlist by ID. |
| Get Clock | get-clock | Retrieve the current market clock, including whether the market is open. |
| Get Calendar | get-calendar | Retrieve the market calendar showing trading days and their open/close times. |
| Get Account Configurations | get-account-configurations | Retrieve the current account trading configurations. |
| Create Order | create-order | Submit a new order to buy or sell an asset. |
| Create Watchlist | create-watchlist | Create a new watchlist with optional initial symbols. |
| Update Account Configurations | update-account-configurations | Update account trading configurations. |
| Cancel Order | cancel-order | Cancel an open order by its ID. |
| Close Position | close-position | Close (liquidate) a position in a specific asset. |
| Delete Watchlist | delete-watchlist | Delete a watchlist by ID. |
| Cancel All Orders | cancel-all-orders | Cancel all open orders. |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --jsonmembrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"membrane request CONNECTION_ID /path/to/endpoint| Flag | Description |
|---|---|
| HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
| Add a request header (repeatable), e.g. |
| Request body (string) |
| Shorthand to send a JSON body and set |
| Send the body as-is without any processing |
| Query-string parameter (repeatable), e.g. |
| Path parameter (repeatable), e.g. |
membrane action list --intent=QUERY