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 Code plugin that bundles everything together. Use one or all three depending on your tool.
MCP Server
Free docs server for any MCP-compatible tool
Agent Skills
Architectural guidance and best practices
Claude Code Plugin
All-in-one plugin with quickstart wizard
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 Code plugin
The plugin is the recommended setup for Claude Code users.
If you use Claude Code, you can install the full Napster plugin which bundles both the MCP server and agent skills into a single package with an interactive quickstart wizard.
/plugin marketplace add napster/omniagent-api-skills
/plugin install napster-omniagent-apiOnce installed, the plugin gives Claude Code:
- 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