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

@borissolomonia/rs-waybill-mcp

v1.0.2

Published

MCP Server for Georgian Revenue Service (RS.ge) Waybill System - Natural language interface for waybill management

Readme

RS.ge Waybill MCP Server

A production-ready Model Context Protocol (MCP) server that lets Claude Desktop talk to the Georgian Revenue Service (RS.ge) waybill system using natural language.


Quick Start (For End Users)

The easiest way to get started:

  1. Configure Claude Desktop - Add the MCP server to claude_desktop_config.json with your RS.ge credentials
  2. Run one command - npx @borissolomonia/rs-waybill-mcp setup

That's it! The setup command will automatically:

  • Check and install Docker if needed
  • Build and start the backend container
  • Verify everything is working

📖 See QUICK_START.md for detailed step-by-step instructions.

Manual Setup (Alternative)

If you prefer to run the scripts manually:

  1. Start the backend in Docker

    • Windows: cd docker && start-backend-docker.bat
    • macOS/Linux: cd docker && ./start-backend-docker.sh
    • First run only: copy docker/.env.example to docker/.env and add your RS.ge credentials
  2. Add the MCP server to Claude Desktop config:

    {
      "mcpServers": {
        "rs-waybill": {
          "command": "npx",
          "args": ["-y", "@borissolomonia/rs-waybill-mcp"],
          "env": {
            "BACKEND_URL": "http://localhost:8081",
            "RS_SERVICE_USER": "your-username:your-tin",
            "RS_SERVICE_PASSWORD": "your-password"
          }
        }
      }
    }
  3. Restart Claude Desktop

Claude will auto-launch the MCP server via npx whenever it starts. No git clone or local build required.


Verify Installation

  • docker-compose -f docker/docker-compose-backend-only.yml ps should show the backend container as Up on port 8081.
  • curl http://localhost:8081/actuator/health should return {"status":"UP"} once the backend is ready.
  • Inside Claude Desktop ask What custom MCP servers do I have? and confirm rs-waybill appears with 16 tools.
  • Ask Check if my RS.ge credentials are valid to confirm everything works end-to-end.

Available MCP Tools

| Category | Tools | | --- | --- | | Lookup | get_error_codes, get_akciz_codes, get_name_from_tin, get_service_users, check_service_user, get_waybill_types | | Waybill queries | get_waybill, get_waybills, get_waybills_v1, get_buyer_waybills | | Waybill management | save_waybill, send_waybill, close_waybill, confirm_waybill, reject_waybill | | Invoices | save_invoice |

Each tool proxies through the Spring Boot backend, which handles SOAP/XML communication with RS.ge.


When You Launch the Backend

  • Run start-backend-docker.bat (Windows) or ./start-backend-docker.sh (macOS/Linux) whenever you need RS.ge access.
  • Leave the terminal open; stop the backend with docker-compose -f docker/docker-compose-backend-only.yml down when finished.
  • Keep RS_SERVICE_USER and RS_SERVICE_PASSWORD in both docker/.env (for the backend) and the Claude config (for the MCP server).

Documentation Map

  • Quick Start (New Users): QUICK_START.md - Get started in 2 steps!
  • User Installation Guide: docs/USER_INSTALLATION_GUIDE.md - Complete guide for end users
  • Detailed Setup: docs/SETUP.md - Manual setup instructions
  • Troubleshooting: docs/TROUBLESHOOTING.md - Common issues and solutions
  • Architecture & Learning: docs/LEARNING.md - Design decisions and how it works
  • Docker Details: docker/README-DOCKER.md - Advanced Docker usage
  • MCP Package: mcp-server/README.md - MCP server specifics

Architecture Snapshot

Claude Desktop (local process)
    ? launches `npx @borissolomonia/rs-waybill-mcp`
        ? HTTP to backend at http://localhost:8081
            ? Spring Boot service (Docker) ? RS.ge SOAP API

Claude must start the MCP server locally over STDIO, so only the backend runs in Docker. This keeps setup simple and still lets other machines use the MCP server via npx.


Contributing & Support

  • Issues and pull requests welcome in this repository.
  • Open docker/README-DOCKER.md for backend-only Docker commands.
  • See docs/LEARNING.md for background, design rationale, and extension ideas.

License

MIT License. See LICENSE for details.