๐Ÿ† Omniagent API Hackathon ยท Judging underway โ€” Winners announced June 15

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 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/mcp

Add this to your MCP configuration:

{"napster-docs": {"url": "https://developers.napster.com/mcp"}}

Or install directly: Install MCP Server in Cursor

code --add-mcp '{"name":"napster-docs","type":"http","url":"https://developers.napster.com/mcp"}'
codex mcp add --url https://developers.napster.com/mcp napster-docs

Agent 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-skills

Claude 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.git

Step 2. Install the plugin:

/plugin install napster-omniagent-api@napster

To update to the latest version later:

/plugin marketplace update napster

Claude 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

  1. Go to claude.ai
  2. In the left sidebar, click Customize
  3. Click the + button to add a plugin, then choose Create plugin โ†’ Upload plugin
  4. Select the ZIP file you downloaded in Step 1
  5. Once uploaded, click the plugin in the left sidebar โ€” the skills install automatically
  6. Open the Connectors tab โ€” you'll see Napster Docs (the MCP server). Click Install
  1. Open Claude Desktop
  2. Go to Settings โ†’ Plugins
  3. Click Add plugin โ†’ Upload plugin
  4. Select the ZIP file you downloaded in Step 1
  5. Once uploaded, the skills install automatically
  6. 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:

github.com/Napster/omniagent-api-skills

On this page