AI Coding Agents Support
Turn your favorite coding agent into a Napster Omniagent API expert with access to docs, tools, and best practices
Napster provides three layers of support for AI coding agents โ an MCP server for documentation access, agent skills for architectural guidance, and a Claude plugin that bundles everything together. Use one or all three depending on your tool.
Quick Start Prompt
Copy one prompt to build your first Omniagent
MCP Server
Free docs server for any MCP-compatible tool
Agent Skills
Architectural guidance and best practices
Claude Plugin
All-in-one plugin with quickstart wizard
GitHub Repository
Source code for skills, MCP, and plugin
Quick start prompt
Copy this prompt and paste it into your AI coding tool. It walks you through building and deploying your first Omniagent end to end โ API key setup, persona creation, agent configuration, tools, knowledge, and channel deployment.
MCP server
For coding agents that support the Model Context Protocol, Napster provides a free MCP server with tools for browsing and searching the documentation site. This gives your coding agent direct access to API references, guides, and examples without leaving the editor.
Add the Napster docs MCP server to your tool:
claude mcp add napster-docs --transport http https://developers.napster.com/mcpAdd this to your MCP configuration:
{"napster-docs": {"url": "https://developers.napster.com/mcp"}}code --add-mcp '{"name":"napster-docs","type":"http","url":"https://developers.napster.com/mcp"}'codex mcp add --url https://developers.napster.com/mcp napster-docsAgent skills
Napster publishes open-source skills for coding agents that provide architectural guidance and best practices for building omniagents โ covering workflow design, channel configuration, tool integration, and deployment patterns. Combined with the MCP server, skills give your coding agent deep expertise about building with the Omniagent API so it can look up the docs, understand the architecture, and generate code that follows best practices.
npx skills add napster/omniagent-api-skillsClaude plugin
The Napster plugin bundles the MCP server and agent skills into a single package with an interactive quickstart wizard. Setup depends on which Claude environment you use.
Claude Code (CLI)
This is the recommended setup. The CLI always pulls the latest skills and MCP server.
Step 1. Add the Napster marketplace:
/plugin marketplace add https://github.com/Napster/omniagent-api-skills.gitStep 2. Install the plugin:
/plugin install napster-omniagent-api@napsterTo update to the latest version later:
/plugin marketplace update napsterClaude browser & desktop
For the browser and desktop versions, you need to download the plugin manually first.
Step 1 โ Download the plugin
Go to the Napster Omniagent API Skills repo, click the green Code button, and select Download ZIP. Save the file to your machine.
Skills installed from a ZIP won't update automatically. If we publish new skills, you'll need to re-download and re-upload. The Claude Code CLI handles updates for you.
Step 2 โ Install the plugin
- Go to claude.ai
- In the left sidebar, click Customize
- Click the + button to add a plugin, then choose Create plugin โ Upload plugin
- Select the ZIP file you downloaded in Step 1
- Once uploaded, click the plugin in the left sidebar โ the skills install automatically
- Open the Connectors tab โ you'll see Napster Docs (the MCP server). Click Install
- Open Claude Desktop
- Go to Settings โ Plugins
- Click Add plugin โ Upload plugin
- Select the ZIP file you downloaded in Step 1
- Once uploaded, the skills install automatically
- Go to Settings โ Connectors โ you'll see Napster Docs (the MCP server). Click Install
What you get
Once installed, the plugin gives Claude:
- Access to the full Omniagent API documentation via MCP
- Architectural guidance for building omniagents
- A quickstart wizard that walks you through creating your first agent
GitHub repository
Source code for the skills and everything else is available on GitHub: