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 🙏

© 2024 – Pkg Stats / Ryan Hefner

mcpfoundation

v0.0.25

Published

MCP Foundation

Downloads

1,742

Readme

MCP Foundation

Model Context Protocol Manager

img.png

1. Web

npx -y -p mcpfoundation@latest web

2. CLI

npx mcpfoundation add <name> (<args...>)
npx mcpfoundation rm <name> (<args...>)
npx mcpfoundation ls
  1. Easily add or remove MCP servers with one line.
  2. View published servers.

Quickstart

1. One-Click Install

Install Pinokio and run MCP Foundation in Pinokio. Everything is taken care of.

2. Manual Install

  1. Follow the instructions in the Install Section to install the prerequisites.
  2. Run npx mcpfoundation add cocktailpeanut/mcp/sqlite

Install

1. One-Click Install

Install on Pinokio.

2. Manual Install

First make sure the following prerequisites are installed on your machine.

  1. UV: https://docs.astral.sh/uv/
  2. Git: https://git-scm.com/
  3. Sqlite3: https://www.servermania.com/kb/articles/install-sqlite
  4. Node.js: https://nodejs.org/en

Web Usage

The easiest way to use is through the web ui.

npx -p mcpfoundation web

CLI Usage

1. add

Basic

npx mcpfoundation add <name>

Modules that require environment variables:

npx mcpfoundation add <github id>/<name> --GITHUB_PERSONAL_ACCESS_TOKEN <token> ...

2. rm

npx mcpfoundation rm <name>

3. update

npx mcpfoundation update

4. ls

display all installed mcp servers

npx mcpfoundation ls

Customize

Web UI Customization

Environment variables

  1. PORT: (for web ui only) use custom port for the web ui
  2. MCP_DEFAULT_REPO: (for web ui only) the default mcp default repository

Additionally, any environment variables on your system will be available

MCP Client Customization

By default, the MCP config file is stored under the Claude app

  • Windows: %AppData%/Claude/claude_desktop_config.json
  • Mac: $HOME/Library/Application Support/Claude/claude_desktop_config.json

But you can change these locations by setting:

  • MCP_CONFIG_PATH: the absolute path where the config file needs to be stored.

MCP Server Path Customization

By default, all the MCP Foundation code is downloaded under ~/mcpfoundation.

You can change this behavior by setting:

  • MCP_SERVER_PATH: the absolute path where each MCP foundation repository will be downloaded.

Environment Value Customization

By default, MCP clients use the system wide environment variables. But sometimes you may want to make it use custom environment variables. In these cases you can use:

  • MCP_ENV: a comma separated value to specify the environment variable names to inherit

  • Example: If you set MCP_OVERRIDE_ENV=PATH, the PATH value of the current environment will be used by the MCP client.

  • When is this useful?:

    • Sometimes you want to run these commands inside a specific context such as conda environment or venv. If you do not override the MCP environment, it will just use the default PATH to run the programs globally.