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

@arenatwo/uponly-mcp

v0.1.1

Published

MCP server for the Up Only football prediction app — connect your AI agent to predict, view leaderboards, and more.

Readme

Up Only MCP Server

Connect your AI agent to Up Only — the free-to-play football prediction game.

Predict match outcomes, check leaderboards, and manage your gameweek — all through natural language with Claude, Cursor, or any MCP-compatible AI client.

Quick Start

Claude Desktop / VS Code / Cursor

Add to your MCP configuration:

{
  "mcpServers": {
    "uponly": {
      "command": "npx",
      "args": ["@arenatwo/uponly-mcp"]
    }
  }
}

That's it. No API keys, no secrets — just your Up Only account.

From Source

git clone https://github.com/arenatwo/uponly-mcp.git
cd uponly-mcp
npm install
npm run build

Then add to your MCP config:

{
  "mcpServers": {
    "uponly": {
      "command": "node",
      "args": ["/path/to/uponly-mcp/dist/index.js"]
    }
  }
}

Getting Started

Once connected, just talk to your AI agent:

  1. Sign in — "Log in to Up Only with my email" (or create an account with "Sign me up")
  2. See matches — "What matches are coming up this week?"
  3. Make predictions — "Predict Arsenal to win 2-1"
  4. Lock in — "Lock all my predictions for this gameweek"
  5. Check standings — "Where am I on the leaderboard?"

Don't have an account? You can sign up directly through the MCP — just provide an email and password.

Available Tools

Auth

| Tool | Description | |------|-------------| | auth_login_email | Sign in with email and password | | auth_signup_email | Create a new account | | auth_whoami | Show current user | | auth_logout | Sign out |

Predictions (requires auth)

| Tool | Description | |------|-------------| | submit_prediction | Predict a match outcome and score | | lock_prediction | Lock a single prediction (no more changes) | | lock_all_predictions | Lock all predictions for a gameweek | | get_prediction | Get your prediction for a specific fixture | | get_user_predictions | Get all your predictions |

Leaderboards

| Tool | Description | |------|-------------| | get_weekly_leaderboard | Gameweek standings | | get_overall_leaderboard | Season standings | | get_my_leaderboard_position | Your rank (requires auth) | | get_my_score | Your points breakdown (requires auth) | | get_my_gameweek_status | Lock status for a gameweek (requires auth) |

Matches & Gameweeks

| Tool | Description | |------|-------------| | get_current_gameweek | Current active gameweek with all matches | | get_gameweeks | List all gameweeks | | get_gameweek | Single gameweek with match details | | get_leagues | All available leagues | | get_upcoming_matches | Upcoming fixtures for a league | | get_past_matches | Past results for a league |

Info

| Tool | Description | |------|-------------| | get_uponly_info | Game rules, scoring system, and league info |

Scoring

  • +2 points for predicting the correct match outcome (home win, away win, or draw)
  • +3 bonus points for predicting the exact score

Predict all matches each gameweek to maximize your score and climb the leaderboard.

How It Works

This MCP server uses the Firebase Client SDK with the same public configuration as the Up Only web app. All operations go through Firestore security rules — you can only read and write your own data.

No API keys or secrets are needed beyond your Up Only account credentials.

Links