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

@picobase_app/mcp-server

v0.1.3

Published

An MCP server for managing Picobase schema via AI assistants

Downloads

387

Readme

Picobase MCP Server

An official Model Context Protocol (MCP) server for Picobase. This server allows AI assistants like Cursor and Claude to directly manage your Picobase schema and collections via natural language.

Features

  • List Collections: View all existing schema collections.
  • Get Collection: Inspect individual collection fields and rules.
  • Create Collection: Add new collections (base, auth, or view) with defined fields.
  • Update Collection: Modify the schema of an existing collection.
  • Delete Collection: Remove a collection from the database.

Installation & Setup

  1. Make sure you have Node.js installed on your machine.
  2. Clone the Picobase repository or ensure this package is built:
    cd packages/mcp-server
    npm install
    npm run build

Using with Cursor

To connect Cursor to your Picobase instance, you need to add this MCP server in Cursor's settings.

  1. Open Cursor Settings (Cmd/Ctrl + ,)
  2. Go to Features -> MCP (Model Context Protocol)
  3. Click + Add new MCP server
  4. Configure it as follows (replace the absolute path and environment variables with your specific values):
    • Type: command
    • Name: picobase-mcp
    • Command: node
    • Args: /absolute/path/to/picobase/packages/mcp-server/dist/index.js
    • Env Variables: Add the following environment variables so it can authenticate to your Picobase instance:
      • PICOBASE_URL: e.g. http://localhost:8090 (or your production URL)
      • PICOBASE_ADMIN_API_KEY: Your Admin API Key generated from the dashboard

Click "Save" and ensure the status shows green (connected). You can now ask Cursor chat: "Create a tasks collection with a title and a boolean completed field" and it will directly execute schema modifications for you!

Using with Claude Desktop

Add the following to your claude_desktop_config.json (located via Claude Desktop settings > Developer > Edit Config):

{
  "mcpServers": {
    "picobase": {
      "command": "node",
      "args": ["/absolute/path/to/picobase/packages/mcp-server/dist/index.js"],
      "env": {
        "PICOBASE_URL": "http://localhost:8090",
        "PICOBASE_ADMIN_API_KEY": "pbk_xyz98765_xxxxxxxxxxxxxxxx"
      }
    }
  }
}

Restart Claude Desktop to apply the configuration.