Skip to main content
Core & Utilitiesmelodic-software

setup-aspire

Install the .NET Aspire CLI tool for MCP integration

Stars
74
Source
melodic-software/claude-code-plugins
Updated
2026-04-07
Slug
melodic-software--claude-code-plugins--setup-aspire
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/melodic-software/claude-code-plugins/HEAD/plugins/dotnet/skills/setup-aspire/SKILL.md -o .claude/skills/setup-aspire.md

Drops the SKILL.md into .claude/skills/setup-aspire.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

/dotnet:setup-aspire

Install the .NET Aspire CLI, required for the aspire MCP server.

Workflow

Step 1: Check current state

dotnet tool list -g | grep -i aspire || echo "Aspire CLI not installed"

Step 2: Install

dotnet tool install --global aspire.cli

If already installed and needs updating:

dotnet tool update --global aspire.cli

Step 3: Verify

aspire --version

Step 4: Report

Tell the user to restart Claude Code so the aspire MCP server can reconnect with the now-available CLI tool.