npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@aithr-ai/mcp-server

v1.2.2

Published

MCP server to connect Claude Code to Aether canvas - AI-powered team workspace for software development

Readme

@aithr-ai/mcp-server

MCP (Model Context Protocol) server to connect Claude Code to the Aether canvas.

Quick Install

Mac/Linux

claude mcp add --transport stdio aether \
  --env AETHER_API_KEY=YOUR_KEY \
  --env AETHER_WORKSPACE_ID=your-workspace \
  --env AETHER_PROJECT_ID=your-project-id \
  -s user -- npx -y @aithr-ai/mcp-server

Windows

Add this to your ~/.claude.json file (in the mcpServers object):

{
  "mcpServers": {
    "aether": {
      "type": "stdio",
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@aithr-ai/mcp-server"],
      "env": {
        "AETHER_API_KEY": "YOUR_KEY",
        "AETHER_WORKSPACE_ID": "your-workspace",
        "AETHER_PROJECT_ID": "your-project-id"
      }
    }
  }
}

Note: The claude mcp add command has a bug on Windows that drops the command args. Manual config is required.

Get Your Credentials

Visit https://www.aithr.ai/settings/mcp-install for personalized install commands with your API key and project ID.

Available Tools

Canvas Management

  • aether_canvas_state - Get current canvas state
  • aether_clear_canvas - Clear all nodes from canvas
  • aether_add_agent - Add an AI agent to the canvas
  • aether_remove_node - Remove a node
  • aether_connect_nodes - Create connections between nodes
  • aether_list_agents - List all agents on canvas

Generation

  • aether_trigger_generation - Trigger AI generation for an agent
  • aether_get_artifacts - Get generated artifacts

GitHub Automation

  • aether_automation_status - Check what's ready to push
  • aether_extract_files - Extract code from artifacts
  • aether_push_artifacts - Push to GitHub via API (branch + commit + PR)
  • aether_push_local - NEW Push using local git (no rate limits, recommended for large pushes)

Orchestra (Autonomous Development)

  • aether_start_orchestra - Start orchestration session
  • aether_set_orchestra_plan - Define development plan
  • aether_orchestra_approve - Approve and start execution
  • aether_orchestra_status - Get progress and status
  • aether_orchestra_next - Get next ready tasks
  • aether_orchestra_trigger_task - Execute a specific task
  • aether_report_to_orchestrator - Report completion/blockers
  • aether_orchestra_pause / aether_orchestra_resume - Control execution
  • aether_complete_orchestra - Mark session complete
  • aether_orchestra_set_autonomous - Enable/disable autonomous mode

Folders & Artifacts

  • aether_list_folders - List project folders
  • aether_create_folder - Create a folder
  • aether_delete_folder - Delete a folder
  • aether_add_file_to_folder - Add files to folders
  • aether_create_artifact - Create and place artifacts

Orchestra Skill (Auto-Installed)

When you install this package, it automatically installs the Orchestra skill to your Claude Code skills directory (~/.claude/skills/orchestra/).

This enables the /orchestra command with full v6 capabilities:

/orchestra          # Start planning a new session
/orchestra approve  # Begin autonomous execution
/orchestra status   # Check current progress
/orchestra push     # Push to GitHub

Orchestra v6 Features

  • Contract-First Development - Define types, schemas, APIs upfront
  • Orchestrator Brain - AI-powered decision engine (Claude Opus 4.5)
  • Dynamic Agent Switching - Reassign tasks when agents struggle
  • Structured Reports - Consistent agent-to-orchestrator communication
  • File Collision Prevention - Safe parallel task execution with file locks
  • Validation Protocol - TypeScript checks after every code generation

Manual Skill Installation

If the auto-install doesn't work, manually copy the skill:

# The skill file is bundled at:
# node_modules/@aithr-ai/mcp-server/skills/orchestra/SKILL.md

# Copy to your Claude skills directory:
mkdir -p ~/.claude/skills/orchestra
cp node_modules/@aithr-ai/mcp-server/skills/orchestra/SKILL.md ~/.claude/skills/orchestra/

Documentation

Full documentation at https://www.aithr.ai/docs/orchestra