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

@dennisk2025/pokemon-type-chart-lookup

v1.0.0

Published

Provides offensive and defensive type effectiveness information for any given Pokémon type or dual-type combination, helping users understand strengths and weaknesses for competitive play.

Readme

\ud83d\udc09 Pokemon Type Chart Lookup MCP Server\n\nProvides offensive and defensive type effectiveness information for any given Pok\u00e9mon type or dual-type combination. This server helps trainers quickly understand strengths and weaknesses for competitive battling.\n\n## Features\n\n- Lookup super-effective, not very effective, immune, and neutral matchups for any mono or dual Pokémon typing.\n- See both offensive (what you hit well) and defensive (what hits you hard) charts.\n\n## Installation\n\n### One-time install (CLI)\n\n npm install -g @dennisk2025/pokemon-type-chart-lookup\n (then run with pokemon-type-chart-lookup)\n\n### Temporary run (recommended)\n\n npx @dennisk2025/pokemon-type-chart-lookup\n\n## Add to Claude Desktop\n\nAdd the following to your Claude Desktop config file at:\n\n- macOS: ~/Library/Application Support/Claude/claude_desktop_config.json\n- Windows: %APPDATA%\\Claude\\claude_desktop_config.json\n\nExample configuration:\n\njson\n{\n "mcpServers": {\n "typechart": {\n "command": "npx",\n "args": ["@dennisk2025/pokemon-type-chart-lookup"]\n }\n }\n}\n\n\n## Usage\n\nWhen this MCP is active, you can use the tool:\n\n- get_type_chart: Returns super-effective, not very effective, immune, and neutral matchup charts for the given Pokémon mono- or dual-type.\n\n### Example tool call (single typing)\n\n {\n "name": "get_type_chart",\n "arguments": { "type1": "Steel" }\n }\n\n### Example tool call (dual typing)\n\n {\n "name": "get_type_chart",\n "arguments": { "type1": "Steel", "type2": "Flying" }\n }\n\n## Tools\n\n### get_type_chart\n\nReturns a breakdown of what a given Pokémon type or dual-type is strong or weak against, including super effective, not very effective, immune, and neutral matchups.\n\nParameters:\n- type1 (string, required): Primary Pokémon type (e.g. "Fire", "Psychic")\n- type2 (string, optional): Optional secondary Pokémon type for dual typing\n\nOutput:\n\n- input: A string describing the type or type combination\n- defense:\n - super_effective: Types that hit this type for double or quadruple damage\n - not_very_effective: Types that hit this type for half or quarter damage\n - immune: Types that deal zero damage\n - neutral: Types that hit for normal damage\n- offense:\n - Same breakdown as above, but for when the chosen type attacks each type\n- legend: Guide to defense/offense and keys.\n\n---\n\n\u26a1️ Try queries like:\n\n- steel / fairy\n- bug\n- fire / flying\n- water / ground\n- dark / ghost\n\n---\n\n\ud83c\udfaf Gotta check 'em all!\n