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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@open-mcp/totoy-ai

v0.0.13

Published

## Using the remote server

Readme

@open-mcp/totoy-ai

Using the remote server

To use the hosted Streamable HTTP server, add the following to your client config:

{
  "mcpServers": {
    "totoy-ai": {
      "transport": "streamableHttp",
      "url": "https://mcp.open-mcp.org/api/server/totoy-ai@latest/mcp"
    }
  }
}

Forwarding variables

You can forward "environment" variables to the remote server by including them in the request headers or URL query string (headers take precedence). Just prefix the variable name with FORWARD_VAR_ like so:

https://mcp.open-mcp.org/api/server/totoy-ai@latest/mcp?FORWARD_VAR_OPEN_MCP_BASE_URL=https%3A%2F%2Fapi.example.com

Installing locally

If you want to run the server locally on your own machine instead of using the remote server, first set the environment variables as shell variables:

API_KEY='...'

Then use the OpenMCP config CLI to add the server to your MCP client:

Claude desktop

npx @open-mcp/config add totoy-ai \
  ~/Library/Application\ Support/Claude/claude_desktop_config.json \
  --API_KEY=$API_KEY

Cursor

Run this from the root of your project directory or, to add to all cursor projects, run it from your home directory ~.

npx @open-mcp/config add totoy-ai \
  .cursor/mcp.json \
  --API_KEY=$API_KEY

Other

npx @open-mcp/config add totoy-ai \
  /path/to/client/config.json \
  --API_KEY=$API_KEY

Manually

If you don't want to use the helper above, add the following to your MCP client config manually:

{
  "mcpServers": {
    "totoy-ai": {
      "command": "npx",
      "args": ["-y", "@open-mcp/totoy-ai"],
      "env": {"API_KEY":"..."}
    }
  }
}

Environment variables

  • OPEN_MCP_BASE_URL - overwrites the base URL of every tool's underlying API request
  • API_KEY - gets sent to the API provider

Tools

expandSchema

Expand the input schema for a tool before calling the tool

Input schema

  • toolName (string)
  • jsonPointers (array)

createexplanation

Environment variables

  • API_KEY

Input schema

  • output_language (string)
  • language_level (string)
  • source_id (string)
  • messages (array)
  • markdown_response (boolean)

createknowledgebase

Environment variables

  • API_KEY

Input schema

  • name (string)
  • instructions (string)
  • project_id (string)

listknowledgebases

Environment variables

  • API_KEY

Input schema

No input parameters

getknowledgebase

Environment variables

  • API_KEY

Input schema

  • knowledge_base_id (string)

modifyknowledgebase

Environment variables

  • API_KEY

Input schema

  • knowledge_base_id (string)
  • name (string)
  • instructions (string)
  • project_id (string)

deleteknowledgebase

Environment variables

  • API_KEY

Input schema

  • knowledge_base_id (string)

chatwithknowledgebase

Environment variables

  • API_KEY

Input schema

  • knowledge_base_id (string)
  • output_language (string)
  • language_level (string)
  • messages (array)
  • markdown_response (boolean)

addknowledgebasesources

Environment variables

  • API_KEY

Input schema

  • knowledge_base_id (string)

listknowledgebasesources

Environment variables

  • API_KEY

Input schema

  • knowledge_base_id (string)

getknowledgebasesource

Environment variables

  • API_KEY

Input schema

  • knowledge_base_id (string)
  • source_id (string)

deleteknowledgebasesource

Environment variables

  • API_KEY

Input schema

  • knowledge_base_id (string)
  • source_id (string)

createsource

Environment variables

  • API_KEY

Input schema

  • text_content (string)
  • title (string)
  • backlink (string)
  • valid_from (string)
  • valid_until (string)
  • project_id (string)
  • custom_metadata (object)

listsources

Environment variables

  • API_KEY

Input schema

No input parameters

getsource

Environment variables

  • API_KEY

Input schema

  • source_id (string)

modifysource

Environment variables

  • API_KEY

Input schema

  • source_id (string)
  • text_content (string)
  • title (string)
  • backlink (string)
  • valid_from (string)
  • valid_until (string)
  • project_id (string)
  • custom_metadata (object)

deletesource

Environment variables

  • API_KEY

Input schema

  • source_id (string)

getsourcecontent

Environment variables

  • API_KEY

Input schema

  • source_id (string)

createproject

Environment variables

  • API_KEY

Input schema

  • name (string)

listprojects

Environment variables

  • API_KEY

Input schema

No input parameters

getproject

Environment variables

  • API_KEY

Input schema

  • project_id (string)

modifyproject

Environment variables

  • API_KEY

Input schema

  • project_id (string)
  • name (string)

deleteproject

Environment variables

  • API_KEY

Input schema

  • project_id (string)

getorganization

Environment variables

  • API_KEY

Input schema

No input parameters

createextraction

Environment variables

  • API_KEY

Input schema

  • model (string)
  • document (string)
  • expand_abbreviations (boolean)

createclassification

Environment variables

  • API_KEY

Input schema

  • model (string)
  • document (string)