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

citizen-nexus-mcp

v0.1.0

Published

MCP server for read-only access to the uex and star citizen wiki APIs.

Readme

Citizen Nexus


An MCP server that fetches data from the Star Citizen wiki and UEX.

Description


This project is an MCP server that gathers data from the Star Citizen Wiki and UEX via their respective APIs, letting new and veteran players alike look up item and vehicle purchase locations, commodity prices, and more directly from their favorite LLM. Plug it into any MCP compatible client accepting stdio, such as Claude.

⚙️ Exposed tools

search_vehicles

Finds Star Citizen flight-ready ships and ground vehicles by name. Returns matching vehicles with key details ( manufacturer, classification, crew, cargo, quantum travel) along with any in-game purchase or rental listings ( terminals, locations, UEC prices).

Parameters:

  • query (string, required): Full or partial vehicle name, e.g. "Constellation" or "Drake Cutlass Black"

search_vehicles_ex.png

📝 Requirements

Node >= 24.16.0

You will need an MCP client installed on your computer. I recommend the Claude desktop app. If you run out of usage too quickly, you can install Dive instead and use a Gemini API key from Google AI Studio (500 requests/day with the Gemini 3.1 Flash Lite model).

⚠️ Note: Citizen Nexus was built mainly with Claude in mind. As more tools and use cases are added, other models might give unexpected results.

📦 Installation and setup


Start by cloning the repository and navigating into it, then run:

npm install && npm run build

Next, take note of the full path to the dist/index.js file.

Claude Desktop App

Edit the claude_desktop_config.json file. You can find its location in the Claude app under Settings > Developer > Edit Config. Add the following configuration, replacing path/to/index.js with the path you identified above:

{
  "mcpServers": {
    "citizen-nexus": {
      "command": "node",
      "args": ["path/to/index.js"]
    }
  }
}

Save the file and restart the Claude desktop app. Before using the server in a chat, make sure it is enabled:

enable_server_in_claude.png

Dive

After setting up your model provider, open the MCP Tools Management tab in the settings and click Add / Edit MCP Config. Paste the following configuration into the JSON field, replacing path/to/index.js with the path you identified above:

{
  "mcpServers": {
    "citizen nexus": {
      "transport": "stdio",
      "enabled": true,
      "command": "node",
      "args": ["path/to/index.js"]
    }
  }
}

Click Save. Before using the server in a chat, make sure it is enabled:

enable_server_in_dive.png

ℹ️ Note: If you run into issues with the node command, try replacing it with its full path, which you can find using this command: Get-Command node.

Usage


Support this project


If you find this tool useful, you can buy me a coffee 😊

📌 Acknowledgements and disclaimers


This project uses data from the following community APIs:

UEX Corporation: Provides Star Citizen trade and market data. Use of this tool requires your own UEX API key and compliance with the UEX Terms of Service.

Star Citizen Wiki API: Star Citizen general game data. Use of this tool requires compliance with their usage terms.

This is a fan-made tool and is not affiliated with or endorsed by Cloud Imperium Games or Roberts Space Industries. Star Citizen®, Roberts Space Industries®, and Cloud Imperium® are registered trademarks of Cloud Imperium Rights LLC and Cloud Imperium Rights Ltd.

Commercial use is not permitted under the RSI Fandom FAQ.