Install the .NET Aspire CLI tool for MCP integration
Scanned 6/7/2026
Install to Claude Code
npx -y skills add melodic-software/claude-code-plugins --skill setup-aspire --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Setup Aspire?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/melodic-software-setup-aspire)More formats (shields.io, HTML) on the badges page.
---
name: setup-aspire
description: Install the .NET Aspire CLI tool for MCP integration
allowed-tools: Bash, Read
---
# /dotnet:setup-aspire
Install the .NET Aspire CLI, required for the aspire MCP server.
## Workflow
### Step 1: Check current state
```bash
dotnet tool list -g | grep -i aspire || echo "Aspire CLI not installed"
```
### Step 2: Install
```bash
dotnet tool install --global aspire.cli
```
If already installed and needs updating:
```bash
dotnet tool update --global aspire.cli
```
### Step 3: Verify
```bash
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.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!