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

@anyshift/anyshift-mcp-server

v0.9.0

Published

An MCP server for interacting with infrastructure data

Readme

Anyshift MCP Server

A toolkit for AWS infrastructure analysis and exploration through a Claude-powered conversational interface. This MCP server enables seamless integration of your infrastructure knowledge with various AI tools and platforms.

Overview

The Model Context Protocol (MCP) server provides a comprehensive set of tools for accessing and analyzing your infrastructure data through natural language queries. It integrates with various AI tools and platforms to provide context-aware infrastructure insights.

Documentation

For detailed documentation, visit our official documentation.

Prerequisites

  • Node.js (v18+)
  • Claude Desktop app
  • Anyshift API Token (Get it from your Anyshift configuration page)

Configuration

Generate Anyshift MCP Token

  • Go to the Anyshift configuration page
  • Navigate to the MCP section
  • Click on "Generate Token"
  • Copy the generated token

Configure Claude Desktop

Add the following to your Claude desktop config file: (claude_desktop_config.json)

NPX

{
	"mcpServers": {
		"anyshift-mcp-server": {
			"command": "npx",
			"args": ["-y", "@anyshift/anyshift-mcp-server"],
			"env": {
				"API_TOKEN": "<API_TOKEN>"
			}
		}
	}
}
  1. Testing Local Changes: To test local changes before publishing:

    {
    	"mcpServers": {
    		"anyshift-mcp-server": {
    			"command": "node",
    			"args": ["/path/to/ops/mcp-server/dist/anyshift_mcp_server.js"],
    			"env": {
    				"API_TOKEN": "<API_TOKEN>"
    			}
    		}
    	}
    }

    Or using npm:

    {
    	"mcpServers": {
    		"anyshift-mcp-server": {
    			"command": "npm",
    			"args": ["start", "--prefix", "/path/to/ops/mcp-server"],
    			"env": {
    				"API_TOKEN": "<API_TOKEN>"
    			}
    		}
    	}
    }

Docker

{
   "mcpServers": {
   "anyshift": {
      "command": "docker",
      "args": [
      "run",
      "--rm",
      "-i",
      "-e",
      "API_TOKEN",
      "anyshift/mcp"
      ],
      "env": {
         "API_TOKEN": "<API_TOKEN>"
      }
   }
}
}

Available Tools

The MCP server provides the following tools for infrastructure analysis:

  • get_resource_types: Get a list of all resource types in the infrastructure
  • search_graph_at_timestamp: Search the infrastructure graph at a specific timestamp
  • get_graph_changes_over_timespan: Get changes in the infrastructure graph over a time period
  • get_resource_history_over_timespan: Get the history of specific resources over a time period
  • get_resources_details_at_timestamp: Get detailed information about resources at a specific timestamp
  • execute_cypher: Execute a Cypher query against the infrastructure graph

Example Queries

Here are some example queries you can use with the MCP server:

  • "List all IAM users in the engineering group"
  • "Show me S3 buckets with public access"
  • "What resources are in the production VPC?"
  • "Display EC2 instances with their security groups"
  • "Find resources missing required tags"

Available Integrations

  • Cursor: Access infrastructure context while using Cursor for development tasks
  • Claude Code: Access infrastructure context while using Claude Code
  • Claude Desktop: Access infrastructure context while using Claude Desktop
  • MCP Marketplace: Access Annie through various MCP marketplaces, including Smithery

Build

Docker build:

docker build -t anyshift/mcp -f Dockerfile .

License

This project is licensed under the MIT License - see the LICENSE file for details.