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

server-anthropic

v0.1.0

Published

A [Model Context Protocol (MCP)](https://github.com/modelcontextprotocol) server that provides access to Anthropic's AI models through their official API. List available models and send messages to Claude using a secure, standardized interface. [More abou

Readme

Anthropic API MCP Server

A Model Context Protocol (MCP) server that provides access to Anthropic's AI models through their official API. List available models and send messages to Claude using a secure, standardized interface. More about MCP.

Anthropic API MCP Server

Features

  • List all available Anthropic models
  • Send messages to any Anthropic model
  • Secure API key management
  • Support for workspace segmentation
  • Automatic API versioning
  • Comprehensive error handling
  • Experimental context window management

Why Use This Server?

Unlike direct API integration, this server:

  • Provides a standardized MCP interface for Anthropic's API
  • Handles authentication and versioning automatically
  • Supports workspace isolation for different use cases
  • Integrates seamlessly with Claude Desktop and other MCP clients
  • Includes detailed error messages and validation
  • Potentially extends conversation context windows through distributed processing

Context Window Management Hypothesis

This server explores efficient context window management through distributed processing:

Claim: Offloading processing to separate API calls through the MCP server may reduce context window pressure on the main Claude Desktop conversation.

Primary Hypothesis: By branching conversation processing across multiple isolated API instances, the total effective context window of a conversation can be extended beyond standard limitations.

Key Mechanisms:

  • Main conversation (trunk) retains only final outputs and discussion
  • Individual API calls maintain isolated contexts
  • Processing can be distributed across multiple model instances

Testing Scenarios:

  1. Context Window Extension

    • Compare context limits with and without API offloading
    • Measure conversation longevity in both scenarios
    • Track rate limit encounters
  2. Processing Distribution

    • Haiku for rapid initial processing
    • Sonnet for medium-sized aggregation
    • Opus for comprehensive analysis

Installation

npm install server-anthropic

Tool Reference

list_models

Lists all available Anthropic models and their capabilities.

Arguments:

{
  // No arguments required
}

Returns:

{
  "models": [
    {
      "name": "claude-3-opus-20240229",
      "description": "Most powerful model for highly complex tasks",
      ...
    },
    ...
  ]
}

send_message

Send a message to an Anthropic model using the Messages API.

Arguments:

{
  "messages": {
    "type": "array",
    "description": "Array of messages to send",
    "items": {
      "role": "user | assistant",
      "content": "string"
    },
    "required": true
  },
  "model": {
    "type": "string",
    "description": "Model ID to use",
    "default": "claude-3-opus-20240229"
  },
  "max_tokens": {
    "type": "number",
    "description": "Maximum tokens to generate",
    "default": 1024
  }
}

Returns:

{
  "content": [
    {
      "type": "text",
      "text": "Model response..."
    }
  ]
}

Usage with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "anthropic": {
      "command": "npx",
      "args": ["-y", "server-anthropic"],
      "env": {
        "ANTHROPIC_API_KEY": "your-api-key-here",
        "ANTHROPIC_WORKSPACE_ID": "optional-workspace-id"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | ANTHROPIC_API_KEY | Yes | Your Anthropic API key from console.anthropic.com | | ANTHROPIC_WORKSPACE_ID | No | Optional workspace ID for usage segmentation |

Dependencies

  • @modelcontextprotocol/sdk - Core MCP functionality
  • @anthropic-ai/sdk - Official Anthropic API client

Error Handling

The server provides detailed error messages for common issues:

  • Invalid API key
  • Missing required parameters
  • Rate limiting
  • Model-specific errors
  • Network connectivity issues

Development

  1. Clone the repository
  2. Install dependencies: npm install
  3. Set up environment variables in .env:
    ANTHROPIC_API_KEY=your-api-key
    ANTHROPIC_WORKSPACE_ID=optional-workspace
  4. Start the server: npm start

Version Notes (0.1.0-beta)

Current beta version focuses on:

  • Core MCP server functionality
  • Context window management testing
  • API integration stability
  • Initial hypothesis validation

Known limitations:

  • Context window behavior requires further testing
  • Rate limiting patterns under investigation
  • Workspace segmentation impact on context management undefined

License

MIT