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

metafide-spoton-mcp

v1.4.0

Published

MCP server for Metafide Spot-On prediction game

Downloads

54

Readme

Metafide Spot-On MCP

A bare-metal MCP server for the Metafide Spot-On prediction game. Connects your AI assistant (Claude, ChatGPT, Gemini, Cursor, Windsurf) directly to the Spot-On API through natural language.

You make every decision. The server translates your words into API calls.


Quick Start

Prerequisites

  • Node.js 18+ -- check with node --version (download)
  • Metafide API key + wallet address -- get them at https://mf-gr6ah752x-metafide.vercel.app/wallet
  • Docs -- https://docs.metafide.io/docs/intro

1. Install

npm install -g metafide-spoton-mcp

2. Run the setup wizard

metafide-spoton-setup

The wizard prompts for your API key and wallet address, then auto-detects installed AI tools (Claude Desktop, ChatGPT, etc.) and configures them.

3. Configure your AI tool (if not auto-detected)

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "metafide-spoton": {
      "command": "metafide-spoton-mcp",
      "env": {
        "METAFIDE_API_KEY": "your_api_key_here",
        "METAFIDE_USER_ADDRESS": "your_wallet_address_here"
      }
    }
  }
}
claude mcp add metafide-spoton -- env METAFIDE_API_KEY=your_api_key METAFIDE_USER_ADDRESS=your_wallet_address metafide-spoton-mcp

Add to ~/.config/openai/mcp.json:

{
  "mcpServers": {
    "metafide-spoton": {
      "command": "metafide-spoton-mcp",
      "env": {
        "METAFIDE_API_KEY": "your_api_key_here",
        "METAFIDE_USER_ADDRESS": "your_wallet_address_here"
      }
    }
  }
}
gemini mcp add metafide-spoton -- env METAFIDE_API_KEY=your_api_key METAFIDE_USER_ADDRESS=your_wallet_address metafide-spoton-mcp

Add to .cursor/mcp.json or .windsurf/mcp.json in your project:

{
  "mcpServers": {
    "metafide-spoton": {
      "command": "metafide-spoton-mcp",
      "env": {
        "METAFIDE_API_KEY": "your_api_key_here",
        "METAFIDE_USER_ADDRESS": "your_wallet_address_here"
      }
    }
  }
}

4. Restart your AI tool and start playing

"Check my balance"
"What's the live BTC price?"
"Place a position at 68,500 with 1 USDC"

Available Tools (9)

| Tool | What it does | |------|-------------| | get_balance | Check your current USDC balance | | get_live_price | Get the current BTC price | | get_game_status | See active positions, projected winnings, and streak data | | get_spot_game | Check if a game is active and accepting positions | | place_position | Place a single prediction at a specific price | | run_bot_cycle | Run one full cycle: check game, generate random positions, submit | | configure_strategy | Adjust settings: network, interval, max positions, price ranges | | get_config | View current bot configuration | | get_results | Get historical game results: winnings, returns, closing prices |


How it works

The Spot-On game runs in short rounds (1 minute, 1 hour, or 1 day). Each round, you predict where BTC's price will be when the round closes. The closer your prediction, the larger your share of the prize pool. You can place up to 10 independent predictions per round.

This MCP server gives your AI assistant direct access to the Spot-On API. You tell it what to do in plain English and it makes the API calls.

Example conversations

"What game is running right now?"

"Place 5 positions spread between 68,400 and 68,500, each with 1 USDC"

"Run a bot cycle on testnet with 60-second games"

"Switch to 1-hour games and set max positions to 5"

"What are my current positions and how are they doing?"


Configuration

Settings you can change

| Setting | Default | Options | |---------|---------|---------| | network | testnet | testnet, mainnet | | interval | 60 | 60 (1min), 3600 (1hr), 86400 (1day) | | max_positions | 10 | 1-10 | | price_range_min | -10 | Any number | | price_range_max | 10 | Any number | | position_amounts | [0.1, 0.2, 0.3, 0.4] | Array of USDC amounts |

Change settings through conversation:

"Switch to mainnet"

"Set the interval to 3600 and max positions to 5"

Mainnet safety

All position-placing tools require confirmed: true on mainnet. Your AI tool will ask for confirmation before placing real-money positions.


Want intelligence?

This is the bare-metal server -- you make every decision.

For an intelligent agent that builds optimized portfolios, learns from results, and runs autonomously, see Spot-On Agent MCP:

  • Adaptive strategy engine (anchor/hedge/precision positions)
  • Performance tracking across sessions
  • Multiple play modes (bare-metal, collaborative, autonomous)
  • Multi-account support
  • Settlement enrichment

Resources

  • Docs: https://docs.metafide.io/docs/intro
  • Wallet: https://mf-gr6ah752x-metafide.vercel.app/wallet
  • Templates (JS/Python): https://github.com/Metafide/spot-on