
Security News
GitHub Actions Checkout Now Blocks Risky pull_request_target Checkouts
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.
ascend-tools
Advanced tools
CLI, SDK, and MCP server for the Ascend Instance web API.
Rust core with napi-rs bindings for Node.js. Exposes the Client class and the full ascend-tools CLI.
npm install ascend-tools
npx ascend-tools workspace list
npx ascend-tools flow run "My Flow" --workspace "My Workspace"
npx ascend-tools otto tui
Or install globally:
npm install -g ascend-tools
ascend-tools workspace list
import { Client } from "ascend-tools";
const client = new Client(); // reads from env vars
const workspaces = await client.listWorkspaces();
const run = await client.runFlow("sales", "My Workspace");
All methods are async and return plain objects/arrays. See the demo app for a full example.
Set three environment variables (from Ascend UI > Settings > Users > Create Service Account):
export ASCEND_SERVICE_ACCOUNT_ID="asc-sa-..."
export ASCEND_SERVICE_ACCOUNT_KEY="..."
export ASCEND_INSTANCE_API_URL="https://<instance-name>.api.instance.ascend.io"
Or pass them directly:
const client = new Client(
"asc-sa-...", // serviceAccountId
"...", // serviceAccountKey
"https://api.instance.ascend.io", // instanceApiUrl
);
Start an MCP server for AI assistants:
npx ascend-tools mcp
npm install
npm run build # release
npm run build:debug # debug
npm test
Requires Rust toolchain and @napi-rs/cli.
| Platform | Architecture |
|---|---|
| macOS | x86_64, aarch64 |
| Linux | x86_64, aarch64 |
See the full documentation for more details.
FAQs
CLI, SDK, and MCP server for the Ascend Instance web API
The npm package ascend-tools receives a total of 10 weekly downloads. As such, ascend-tools popularity was classified as not popular.
We found that ascend-tools demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.