npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@sunra/mcp-server

v0.1.1

Published

MCP server for Sunra.ai API integration

Readme

Sunra MCP Server

A Model Context Protocol (MCP) server that provides tools for interacting with Sunra.ai services.

Installation

From npm (Recommended)

npx @sunra/mcp-server --help

Local Development

git clone https://github.com/sunra-ai/sunra-clients.git
cd sunra-clients/mcp-server
npm install
npm run build

Usage

Command Line Options

sunra-mcp-server [options]

Options:
  -t, --transport <type>   Transport type: 'stdio' or 'http' (default: stdio)
  -p, --port <number>      Port for HTTP transport (default: 3000)
  -h, --host <string>      Host for HTTP transport (default: localhost)
  --help                   Show this help message

Examples:
  sunra-mcp-server                           # Start with stdio transport
  sunra-mcp-server --transport http          # Start with HTTP transport on port 3000
  sunra-mcp-server -t http -p 8080           # Start with HTTP transport on port 8080

For Cursor IDE

Add the following to your .cursor/mcp.json file:

{
  "mcpServers": {
    "sunra-mcp-server": {
      "command": "npx",
      "args": ["@sunra/mcp-server"],
      "env": {
        "SUNRA_KEY": "your-api-key-here. optional if you set the SUNRA_KEY environment variable system wide"
      }
    }
  }
}

For Claude Desktop

Add the following to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "sunra-mcp-server": {
      "command": "npx",
      "args": ["@sunra/mcp-server"],
      "env": {
        "SUNRA_KEY": "your-api-key-here. optional if you set the SUNRA_KEY environment variable system wide"
      }
    }
  }
}

Features

  • Base Tools: Submit, status, result, cancel, subscribe operations
  • Model Management: List, search, and get schema information for AI models
  • File Management: Upload files to Sunra.ai
  • Authentication: Secure API key management
  • Multiple Transports: Supports both stdio (for Claude Desktop) and HTTP (for Cursor)

Tools

Base Operations

  • submit - Submit a request to a model endpoint
  • status - Check the status of a request
  • result - Get the result of a completed request
  • cancel - Cancel a pending request
  • subscribe - Submit and wait for completion

Model Management

  • list-models - List all available models
  • search-models - Search for models by name or description
  • model-schema - Get input and output schemas for a specific model endpoint

File Management

  • upload - Upload files to Sunra.ai storage

Authentication

  • set-sunra-key - Configure your Sunra.ai API key

Usage Examples

Model Schema Tool

The model-schema tool now accepts a model slug in the format owner/model/endpoint and returns only the input and output schemas:

# Get schema for a specific model endpoint
model-schema --modelSlug "black-forest-labs/flux-kontext-max/text-to-image"

Reference Resolution

The tool automatically resolves OpenAPI $ref references to provide fully expanded schemas. For example, if the original OpenAPI schema contains:

{
  "schema": {
    "$ref": "#/components/schemas/TextToVideoInput"
  }
}

The tool will resolve this reference and return the actual schema definition:

{
  "inputSchema": {
    "type": "object",
    "properties": {
      "prompt": {
        "type": "string",
        "description": "Text prompt for video generation"
      },
      "duration": {
        "type": "integer",
        "enum": [5, 10],
        "description": "Duration of the video in seconds"
      }
    },
    "required": ["prompt"]
  }
}

The tool handles:

  • ✅ Simple references (#/components/schemas/SchemaName)
  • ✅ Nested references within objects and arrays
  • ✅ Circular references (marked with $circular: true)
  • ✅ Missing references (graceful fallback to original $ref)

Response Format

Response format:

{
  "success": true,
  "modelSlug": "black-forest-labs/flux-kontext-max/text-to-image",
  "owner": "black-forest-labs",
  "model": "flux-kontext-max",
  "endpoint": "text-to-image",
  "inputSchema": {
    "type": "object",
    "properties": {
      "prompt": {
        "type": "string",
        "description": "Text prompt for image generation"
      }
    },
    "required": ["prompt"]
  },
  "outputSchema": {
    "type": "object",
    "properties": {
      "id": {
        "type": "string",
        "description": "Request ID"
      },
      "status": {
        "type": "string",
        "description": "Request status"
      },
      "output": {
        "type": "object",
        "description": "Generated output"
      }
    }
  }
}

Development

Running Tests

npm test

Building

npm run build

Starting the Server

npm start

Configuration

Set your Sunra.ai API key as an environment variable:

export SUNRA_KEY="your-api-key-here"

Or use the set-sunra-key tool at runtime.

Publishing

To publish to npm:

npm run build
npm publish

API Reference

For detailed API documentation, see the Sunra.ai API documentation.