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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@createveai/nexus-mcp-server

v1.0.0-preview

Published

MCP client server for Createve.AI Nexus API

Readme

Createve.AI Nexus MCP Client Server

A TypeScript implementation of an MCP server that connects to a remote Createve.AI Nexus server and exposes its functionality through the Model Context Protocol, for local deployment in tools that cannot connect to a remote MCP server.

Overview

This MCP client server acts as a bridge between AI assistants that support the Model Context Protocol and a remote Createve.AI Nexus server. It dynamically generates MCP tools and resources based on the API endpoints available on the Nexus server.

Features

  • Local Execution: Runs on the client machine, avoiding direct WebSocket connections to remote servers
  • API Abstraction: Interacts with the remote Nexus server via REST APIs
  • Enhanced Security: Keeps API keys local to the client machine
  • Dynamic API Discovery: Automatically discovers available APIs through OpenAPI schema
  • LLM-Optimized Interface: Formats responses in a way that's optimal for LLM consumption

Installation

npm install @createveai/nexus-mcp-server

Configuration

The MCP client server can be configured using environment variables or command-line arguments:

Environment Variables

  • CREATEVEAI_NEXUS_BASE_URL: The base URL of the Nexus server (required)
  • CREATEVEAI_NEXUS_API_KEY: API key for authentication (required)
  • CREATEVEAI_NEXUS_API: Optional API filter to limit exposed endpoints
  • DEBUG: Set to "createveai-nexus-mcp" to enable debug logging

Command-Line Arguments

  • --base-url <URL>: The base URL of the Nexus server
  • --api-key <KEY>: API key for authentication
  • --api <FILTER>: Optional API filter
  • --debug: Enable debug logging

Integration with AI Assistants

Claude Integration

Add the MCP server to your Claude environment by modifying the MCP settings configuration file:

{
  "mcpServers": {
    "createveai-nexus": {
      "command": "node",
      "args": ["/path/to/node_modules/@createveai/nexus-mcp-server/build/index.js"],
      "env": {
        "CREATEVEAI_NEXUS_BASE_URL": "https://nexus.createve.ai",
        "CREATEVEAI_NEXUS_API_KEY": "your-api-key-here"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

Available Resources

The MCP client server exposes the following resources:

  • queue://{queueId}: Status and result for a queued request
  • schema://openapi: OpenAPI schema for all available APIs
  • schema://{api}: OpenAPI schema for a specific API (when using API filter)
  • docs://readme: Server documentation
  • docs://{path}: Specific documentation resource

Available Tools

The MCP client server dynamically creates tools based on the API endpoints available on the Nexus server. These tools follow the naming convention of the API paths with slashes replaced by underscores.

For example, an API endpoint at /api/text_processing/analyze would be available as the MCP tool text_processing_analyze.

Development Information

Build Process

This package includes pre-built JavaScript files in the repository to ensure reliable packaging and distribution. The TypeScript source is compiled to JavaScript during development, and the built files are committed to the repository.

If you make changes to the TypeScript source:

  1. Run npm run build to compile the TypeScript code
  2. Commit both the source changes and the updated build files

GitHub Workflow

The GitHub Actions workflow for this package relies on the pre-built files being present in the repository. It verifies their existence during the publishing process but doesn't attempt to rebuild them.

License

This project is licensed under the MIT License.