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

warframe-market-mcp

v1.1.3

Published

MCP server for the Warframe Market API v2

Readme

Warframe Market MCP

MCP server for the Warframe Market API v2.

Setup

Omit the -e flags for read-only, unauthenticated access.

Claude Code

claude mcp add warframe-market -e [email protected] -e WFM_PASSWORD=hunter2 -- npx -y warframe-market-mcp

Add --scope global to install for all projects. Or add to ~/.claude/mcp.json (global) or .claude/mcp.json (project):

{
  "mcpServers": {
    "warframe-market": {
      "command": "npx",
      "args": ["-y", "warframe-market-mcp"],
      "env": { "WFM_EMAIL": "[email protected]", "WFM_PASSWORD": "hunter2" }
    }
  }
}

Gemini CLI

gemini mcp add warframe-market -e [email protected] -e WFM_PASSWORD=hunter2 -- npx -y warframe-market-mcp

Or add to ~/.gemini/settings.json (global) or .gemini/settings.json (project):

{
  "mcpServers": {
    "warframe-market": {
      "command": "npx",
      "args": ["-y", "warframe-market-mcp"],
      "env": { "WFM_EMAIL": "[email protected]", "WFM_PASSWORD": "hunter2" }
    }
  }
}

OpenCode

opencode mcp add warframe-market -e [email protected] -e WFM_PASSWORD=hunter2 -- npx -y warframe-market-mcp

Or add to opencode.json in your project root:

{
  "mcpServers": {
    "warframe-market": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "warframe-market-mcp"],
      "env": { "WFM_EMAIL": "[email protected]", "WFM_PASSWORD": "hunter2" }
    }
  }
}

Tools

| Tool | Auth | Description | |------|------|-------------| | wfm_signin | — | Sign in, persists token to disk | | wfm_signout | ✓ | Sign out and clear token | | wfm_auth_status | — | Check if a session is active | | wfm_search_items | — | Search tradable items by name | | wfm_get_item | — | Item details by slug; optionally include full set | | wfm_get_item_statistics | — | 90-day + 48h price history | | wfm_get_top_orders | — | Top 5 buy + top 5 sell (online users only) | | wfm_get_orders_for_item | — | All orders for an item | | wfm_get_recent_orders | — | Most recent orders across all items (last 4h) | | wfm_get_user_orders | ✓* | Orders for a user; omit slug for your own | | wfm_get_order | — | Single order by ID | | wfm_create_order | ✓ | Create buy/sell order | | wfm_manage_order | ✓ | Update, delete, or close an order | | wfm_update_order_group | ✓ | Bulk toggle visibility for all / ungrouped | | wfm_get_profile | ✓* | User profile; omit slug for your own | | wfm_get_achievements | — | Achievement list or user progress | | wfm_get_versions | — | Resource version numbers (cache staleness check) | | wfm_get_riven_data | — | Riven weapons or attributes | | wfm_get_progenitor_weapons | — | Kuva Lich or Sister of Parvos weapons |

* Public data works unauthenticated; own data requires sign-in.

Rate limit

3 requests/second (sliding window). Backs off automatically on 429/509.