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

@alphadezede/mcp-server

v1.0.0

Published

AlphaZede Sports MCP Server — real-time odds, player props, and parlay analysis via the Model Context Protocol

Readme

AlphaZede Sports MCP Server

Overview

The AlphaZede Sports MCP Server exposes the AlphaZede Sports API through the Model Context Protocol (MCP). It is designed as an operator-installed gateway: the MCP client talks to azs-mcp-server, and the server forwards authenticated, identity-bound requests to the upstream API.

The server exposes 13 tools:

  • find_game_markets
  • analyze_parlay
  • price_player_prop
  • explain_edge
  • get_daily_picks
  • get_futures
  • get_alerts
  • get_ml_projection
  • get_arb_opportunities
  • get_dfs_lineups
  • get_forecasts
  • get_fantasy_projections
  • get_fantasy_workspace

Supported clients include MCP-compatible desktop apps, CLI hosts, assistant-action surfaces, developer tools, and the AlphaZede browser extension.

Quick Start

Install dependencies and build the package from the repo root:

pnpm install
pnpm --filter @alphadezede/mcp-server build

During local development, link the binary globally from this package directory:

cd packages/mcp-server
npm link
# or
pnpm link --global

Confirm the binary is available:

azs-mcp-server help

Login

Authenticate before starting the MCP server:

azs-mcp-server login

The login command opens a browser, starts a temporary loopback callback listener, performs OAuth code flow with PKCE S256, and stores the resulting token under ~/.config/alphazede-sports/.

Use a client-specific registration when needed:

azs-mcp-server login --client=azs-desktop-mcp

Accepted first-party client IDs are assigned per supported integration surface.

If a browser cannot be opened automatically, run:

azs-mcp-server login --print-auth-url

Compatibility

The MCP server is host-mediated, not model-mediated — your choice of LLM is a host-level configuration. The server passes tool calls to the host's MCP runtime; the host then routes through whatever model you've configured.

Per-host install snippets are below.

Claude Desktop

Config path:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "alphazede-sports": {
      "command": "azs-mcp-server",
      "args": ["serve"]
    }
  }
}

Restart the app after saving the config file.

Claude Code

Config path: Project scope (.claude.json) or user scope (~/.claude.json).

claude mcp add alphazede-sports azs-mcp-server -- serve

Use --scope user before the server name to add at user scope: claude mcp add --scope user alphazede-sports azs-mcp-server -- serve

Cursor

Config path:

  • Project: .cursor/mcp.json
  • Global: ~/.cursor/mcp.json
{
  "mcpServers": {
    "alphazede-sports": {
      "command": "azs-mcp-server",
      "args": ["serve"]
    }
  }
}

Create the file if it does not exist. Project-scoped config takes precedence.

Cline

Config path: VS Code extension storage (accessible via Cline sidebar → MCP Servers → Edit MCP Settings).

{
  "alphazede-sports": {
    "command": "azs-mcp-server",
    "args": ["serve"]
  }
}

Open the Cline extension sidebar, click "MCP Servers", then "Edit MCP Settings" to open the JSON config.

Codex CLI

Config path: ~/.codex/config.toml (TOML format) or via CLI command.

codex mcp add alphazede-sports -- azs-mcp-server serve

Or add manually to ~/.codex/config.toml under [mcp_servers.alphazede-sports] in TOML format.

Gemini CLI

Config path:

  • User scope: ~/.gemini/settings.json
  • Project scope: .gemini/settings.json (in your project root)
{
  "mcpServers": {
    "alphazede-sports": {
      "command": "azs-mcp-server",
      "args": ["serve"]
    }
  }
}

Use --scope user to add at user scope: gemini mcp add --scope user alphazede-sports azs-mcp-server serve

ChatGPT Desktop

Config path: App Settings → Tools & Plugins → MCP Servers.

{
  "command": "azs-mcp-server",
  "args": ["serve"]
}

macOS only (as of 2025). MCP support is not available in the Windows or Linux ChatGPT Desktop apps. Check App Settings → MCP Servers.

Zed

Config path:

  • Project: .zed/settings.json
  • Global: ~/.config/zed/settings.json
{
  "context_servers": {
    "alphazede-sports": {
      "command": {
        "path": "azs-mcp-server",
        "args": ["serve"]
      }
    }
  }
}

Zed uses the context_servers key. Restart Zed after editing settings.

Continue

Config path: .continue/config.json (project) or ~/.continue/config.json (user).

{
  "experimental": {
    "modelContextProtocolServers": [
      {
        "transport": {
          "type": "stdio",
          "command": "azs-mcp-server",
          "args": ["serve"]
        }
      }
    ]
  }
}

Add the entry inside the experimental.modelContextProtocolServers array in your Continue config.

Windsurf

Config path: ~/.codeium/windsurf/mcp_settings.json

{
  "mcpServers": {
    "alphazede-sports": {
      "command": "azs-mcp-server",
      "args": ["serve"]
    }
  }
}

Create the file if it does not exist.

Open Interpreter

Config path: Profile config or CLI flag.

interpreter --mcp-server "azs-mcp-server serve"

Or add to your Open Interpreter profile under mcp_servers. See Open Interpreter documentation for the current config file location.

HTTP Transport Variant

Stdio is the default transport for desktop and CLI MCP hosts. For assistant actions, the browser extension, and local HTTP development, start the streamable HTTP transport:

azs-mcp-server serve --http :3000

Local HTTP binds to loopback by default. Production non-loopback binding requires both an explicit flag and an environment assertion:

AZS_MCP_PRODUCTION=1 azs-mcp-server serve --http 0.0.0.0:3000 --allow-non-loopback

Terminate TLS at the reverse proxy in production. Do not expose plain HTTP directly on a public interface.

OAuth protected-resource discovery is available at:

/.well-known/oauth-protected-resource

Environment Variables

| Variable | Description | Default | | --- | --- | --- | | AZS_API_URL | Upstream AlphaZede Sports API base URL. | https://api.alphazedesports.com | | AZS_API_KEY | Optional local token fallback. OAuth token storage is preferred. System tokens require AZS_MCP_DEV_MODE=1 and stdio. | Unset | | AZS_LOG_LEVEL | Server log level. | info | | AZS_TIMEZONE | Timezone used by date/time formatting helpers. | America/New_York | | AZS_MCP_CLIENT_ID | Default OAuth client ID and outbound gateway attribution when token storage does not provide one. | Assigned per integration | | AZS_MCP_DEV_MODE | Enables stdio-only SystemToken development mode when set to 1; HTTP transport refuses to start in this mode. | Unset | | AZS_MCP_PRODUCTION | Required as 1 for non-loopback HTTP binding. | Unset | | AZS_MCP_OBS_DEST | Observability event destination: stderr, file:/path/to/events.jsonl, or upstream. | stderr | | AZS_MCP_OBS_HMAC_SECRET | Optional 32-byte hex HMAC key for stable params_hash and identity_key correlation across restarts. | Random process key | | AZS_MCP_LOGIN_TIMEOUT_MS | OAuth login callback timeout in milliseconds. | 300000 | | AZS_MCP_HTTP_RATE_LIMIT_PER_MIN | Per-token HTTP request limit per minute. | 100 | | AZS_MCP_HTTP_MAX_INFLIGHT | Global maximum number of in-flight HTTP requests. | 50 |

Technical Reference

See the public developer repository docs for MCP installation, authentication, and API usage guidance.

License

Apache-2.0 © 2026 AlphaZede Sports

Maintainer

AlphaZede Sports platform engineering.