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

mcpbind-toolkit

v0.0.1

Published

MCP server for MCPBind operations

Readme

MCPBind Server

A Model Context Protocol (MCP) server that provides tools for AI models to interact with MCPBind services.

Features

  • Execute prompts on MCPBind servers

Installation

Global Installation (for CLI usage)

npm install -g mcpbind-toolkit

Local Installation

npm install mcpbind-toolkit

Usage

Using with npx

# Set required environment variables
export MCP_BIND_TOKEN=your_token
export MCP_SERVER_NAME=your_server_name

# Run the server using npx
npx mcpbind-toolkit

As a standalone server

# Set required environment variables
export MCP_BIND_TOKEN=your_token
export MCP_SERVER_NAME=your_server_name

# Run the server
mcpbind-server

As a library

import { BindClient, startServer } from 'mcpbind-toolkit';

// Initialize the client
const bindClient = new BindClient({
  token: "your_token",
  defaultServerName: "your_server_name"
});

// Use the client directly
const result = await bindClient.executeServer(
  "optional_override_token", 
  "optional_override_server_name", 
  "Your prompt here"
);

// Or start the MCP server
startServer({
  token: "your_token",
  defaultServerName: "your_server_name"
});

Available Tools

  1. mcp_server_execute - Use this tool to execute the MCP server tools for the server that is provided. Requires a server name and prompt to execute.
    • Parameters:
      • token - Authentication token (optional if set in environment variables)
      • server_name - Name of the MCP server (optional if set in environment variables)
      • prompt - The prompt to execute (required)

Environment Variables

  • MCP_BIND_TOKEN - Authentication token for MCP operations
  • MCP_SERVER_NAME - Default server name for MCP server operations

Development

# Install dependencies
npm install

# Build TypeScript
npm run build

# Run the server
npm start

Example

Here's an example of how to use the MCPBind server with an AI model:

// AI model code
const response = await callTool("mcp_server_execute", {
  prompt: "What is the capital of France?"
});

// The token and server_name are automatically provided from environment variables
console.log(response);

License

MIT