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

xalen-mcp

v1.0.0

Published

MCP server for the XALEN API — full faith-tech marketplace with chat completions, embeddings, image generation, audio transcription, Vedic astrology (kundali, matching, panchang, dasha, yogas, transits, horoscope), Vastu analysis, voice TTS, and billing.

Readme

@xalen/mcp-server

MCP (Model Context Protocol) server for the XALEN API. Lets AI assistants — Claude Desktop, Cursor, GitHub Copilot, VS Code — interact with XALEN directly.

Tools (15)

AI & Media

| Tool | Description | |------|-------------| | chat_completion | Send a chat completion request to any XALEN model | | list_models | List available models with pricing | | generate_image | Generate images with FLUX/SDXL models | | embeddings | Generate text embeddings for search, clustering, or RAG | | transcribe_audio | Speech-to-text transcription via Whisper | | voice_tts | Convert text to speech |

Vedic Astrology

| Tool | Description | |------|-------------| | kundali | Generate a Vedic birth chart (Kundali / Janam Patri) | | match_kundali | Kundali matching — Ashtakoot compatibility score | | panchang | Vedic calendar — tithi, nakshatra, yoga, karana, muhurta | | dasha | Vimshottari Dasha periods with Mahadasha/Antardasha hierarchy | | yoga_analysis | Identify 100+ classical yogas in a birth chart | | horoscope | Daily/weekly/monthly horoscope (Vedic or Western) | | transit | Current planetary transits and their effects |

Vastu & Billing

| Tool | Description | |------|-------------| | vastu_analysis | Vastu Shastra property analysis with remedies | | check_balance | Check wallet balance and usage |

Quick Start

Claude Desktop

Add this to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "xalen": {
      "command": "npx",
      "args": ["-y", "@xalen/mcp-server"],
      "env": {
        "XALEN_API_KEY": "xln_live_..."
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "xalen": {
      "command": "npx",
      "args": ["-y", "@xalen/mcp-server"],
      "env": {
        "XALEN_API_KEY": "xln_live_..."
      }
    }
  }
}

VS Code

Add to .vscode/mcp.json:

{
  "servers": {
    "xalen": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@xalen/mcp-server"],
      "env": {
        "XALEN_API_KEY": "xln_live_..."
      }
    }
  }
}

Claude Code

claude mcp add xalen -- npx -y @xalen/mcp-server

Set the API key in your environment:

export XALEN_API_KEY="xln_live_..."

Get Your API Key

  1. Sign up at xalen.io
  2. Go to the Dashboard
  3. Copy your API key (starts with xln_live_)

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | XALEN_API_KEY | Yes | Your XALEN API key | | XALEN_BASE_URL | No | Override API base URL (default: https://api.xalen.io/v1) |

Build from Source

git clone https://github.com/xalen-io/mcp-server.git
cd mcp-server
npm install
npm run build
node dist/index.js

Example Usage

Once configured, ask your AI assistant:

  • "Use XALEN to list available models"
  • "Generate an image of a sunset over mountains using XALEN"
  • "Create a Vedic birth chart for someone born on 1990-05-15 at 14:30 in Mumbai"
  • "Match two kundalis for compatibility — person A born 1992-03-10 Delhi, person B born 1994-07-22 Mumbai"
  • "Get today's panchang for Pune"
  • "What yogas are present in my chart?"
  • "Show Vimshottari Dasha periods for this birth time"
  • "Get daily Vedic horoscope for Aries"
  • "Analyze Vastu for a north-facing house with kitchen in southeast"
  • "What are the current planetary transits?"
  • "Generate embeddings for these product descriptions"
  • "Transcribe this audio recording"
  • "Check my XALEN API balance"
  • "Use XALEN chat to explain quantum computing with the gpt-oss-120b model"

License

MIT