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

litellm-mcp-server

v1.0.2

Published

MCP server bridge for LiteLLM

Downloads

318

Readme

LiteLLM MCP Server Bridge

A Model Context Protocol (MCP) server that connects Antigravity to your deployed LiteLLM instance.

Features

This MCP server provides the following tools:

  • chat_completion - Generate chat completions using any model in your LiteLLM instance
  • completion - Generate text completions using the legacy endpoint
  • list_models - List all available models
  • health_check - Check LiteLLM instance health status
  • create_embedding - Generate embeddings
  • model_info - Get detailed information about a specific model
  • create_image - Generate images using models available in your instance
  • create_speech - Generate speech audio from text (TTS)
  • rerank - Rerank documents based on a search query
  • key_generate - Generate a new LiteLLM Proxy API key (admin feature)
  • key_info - Get details and spend info for a LiteLLM Proxy API key (admin feature)

Setup

1. Configure Antigravity

Add the following to your Antigravity MCP configuration. This will use npx to fetch and run the latest version of the published package on-the-fly.

{
  "mcpServers": {
    "litellm": {
      "command": "npx",
      "args": [
        "-y",
        "litellm-mcp-server@latest"
      ],
      "env": {
        "LITELLM_BASE_URL": "https://your-litellm-url",
        "LITELLM_API_KEY": "your-api-key-here"
      }
    }
  }
}

2. Set Your Secrets

Replace your-litellm-url and your-api-key-here in the configuration with your actual LiteLLM Base URL and API key.

Usage Examples

Once configured, you can use the MCP tools in Antigravity:

Chat Completion

Use the chat_completion tool to generate a response using gpt-4

List Models

Use the list_models tool to see what models are available

Health Check

Use the health_check tool to verify the LiteLLM instance is running

Environment Variables

  • LITELLM_BASE_URL - Your LiteLLM instance URL
  • LITELLM_API_KEY - Your LiteLLM API key for authentication

Troubleshooting

Server won't start

  1. Ensure Node.js is installed: node --version
  2. Check dependencies are installed: npm install
  3. Verify the script path in your Antigravity config is correct
  4. Check that your API key is valid

Connection errors

  1. Verify your LiteLLM instance is accessible: curl https://your-litellm-url/health
  2. Check your API key has proper permissions
  3. Ensure your network allows connections to the LiteLLM instance

Tool not showing up

  1. Restart Antigravity after adding the MCP server configuration
  2. Check Antigravity logs for any error messages
  3. Verify the JSON configuration is valid

Architecture

The MCP server acts as a bridge:

Antigravity ←→ MCP Server (this script) ←→ LiteLLM Instance

All requests from Antigravity are forwarded to your LiteLLM instance with proper authentication headers.

License

MIT