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

horizon-mcp

v1.1.0

Published

MCP server for horizOn Backend-as-a-Service — documentation, live API tools, and workflow prompts for Godot, Unity, and Unreal Engine integration.

Downloads

298

Readme

horizOn MCP Server

npm version npm downloads License: MIT

MCP server for horizOn Backend-as-a-Service -- gives AI coding assistants documentation, live API tools, and workflow prompts for game and app development.


Quick Install

Add to your MCP client configuration (Claude Desktop, Cursor, etc.):

{
  "mcpServers": {
    "horizOn": {
      "command": "npx",
      "args": ["-y", "horizon-mcp"],
      "env": {
        "HORIZON_API_KEY": "your-api-key-here"
      }
    }
  }
}

Features

Resources (13 docs)

Documentation resources are served directly from the MCP server. No API key required.

| URI | Description | |-----|-------------| | horizon://overview | What is horizOn, core concepts (Account vs User), features, tier system, API structure, and SDKs | | horizon://docs/auth | Authentication methods (Anonymous, Email, Google), endpoints, SDK code examples, and common errors | | horizon://docs/leaderboard | Leaderboard score submission, top entries, user rank, entries around user, with SDK examples | | horizon://docs/cloud-save | Cloud save/load for JSON and binary data, tier size limits, SDK examples | | horizon://docs/remote-config | Server-side key-value configuration: feature flags, game balance, A/B testing. SDK examples | | horizon://docs/news | In-game news and announcements with language filtering. SDK examples | | horizon://docs/gift-codes | Gift code validation and redemption for promotional rewards. SDK examples | | horizon://docs/feedback | Bug reports, feature requests, and general feedback submission. SDK examples | | horizon://docs/user-logs | Server-side event and error tracking. Requires BASIC tier or higher. SDK examples | | horizon://api/reference | Complete API reference for all horizOn App API endpoints with request/response schemas | | horizon://quickstart/godot | Step-by-step guide to integrate horizOn in Godot with GDScript examples | | horizon://quickstart/unity | Step-by-step guide to integrate horizOn in Unity with C# examples | | horizon://quickstart/unreal | Guide to integrate horizOn in Unreal Engine using REST API. C++ and cURL examples |

Tools (19 tools)

Live API tools that call the horizOn backend. Requires a valid API key.

| Tool | Description | |------|-------------| | horizon_test_connection | Test connection to the horizOn API (health check) | | horizon_signup_anonymous | Create a new anonymous user account | | horizon_signup_email | Create a new user account with email and password | | horizon_signin_email | Sign in with email and password | | horizon_signin_anonymous | Sign in with an anonymous token | | horizon_check_auth | Check whether a user session is still valid | | horizon_submit_score | Submit a score to the leaderboard | | horizon_get_leaderboard_top | Get the top leaderboard entries | | horizon_get_user_rank | Get a user's leaderboard rank | | horizon_get_leaderboard_around | Get leaderboard entries around a user's position | | horizon_save_cloud_data | Save cloud data for a user | | horizon_load_cloud_data | Load cloud save data for a user | | horizon_get_remote_config | Get a single remote config value by key | | horizon_get_all_remote_configs | Get all remote config values | | horizon_get_news | Get news articles with optional language filtering | | horizon_validate_gift_code | Validate a gift code without redeeming it | | horizon_redeem_gift_code | Redeem a gift code for a user | | horizon_submit_feedback | Submit user feedback (bug reports, feature requests) | | horizon_create_log | Create a server-side log entry (INFO, WARN, ERROR) |

Prompts (4 prompts)

Workflow prompts that guide AI assistants through common horizOn tasks.

| Prompt | Description | |--------|-------------| | integrate-feature | Generate integration code for a specific horizOn feature in your game engine | | setup-auth | Step-by-step guide to set up horizOn authentication in your project | | debug-connection | Diagnose and fix horizOn connection issues | | explain-feature | Get a detailed explanation of any horizOn feature |

Configuration

| Variable | Required | Description | |----------|----------|-------------| | HORIZON_API_KEY | Yes (for tools) | Your horizOn API key. Get one at horizon.pm | | HORIZON_BASE_URL | No | API base URL. Defaults to https://horizon.pm |

Resources (documentation) work without an API key. Only the live API tools require authentication.

What is horizOn?

horizOn is a multi-tenant Backend-as-a-Service platform built for game and app developers. It provides a managed backend so developers can focus on building their game or app instead of server infrastructure.

Core features:

  • Authentication (Anonymous, Email, Google)
  • Leaderboards
  • Cloud Save
  • Remote Config
  • News and Announcements
  • Gift Codes
  • User Feedback
  • User Logs

Learn more at horizon.pm. Install this MCP server via npm.

Supported Engines

  • Godot 4.5+ -- GDScript SDK
  • Unity 6 -- C# SDK
  • Unreal Engine -- REST API (no official SDK)

Development

# Clone the repository
git clone https://github.com/nicokimmel/horizOn-mcp.git
cd horizOn-mcp

# Install dependencies
npm install

# Start the server (development mode)
npm run dev

# Build for production
npm run build

# Run tests
npm test

License

MIT