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

bika-mcp-server

v1.0.7-alpha.62

Published

A Model Context Protocol server that provides read and write access to Bika.ai. This server enables LLMs to list spaces, list nodes, list records, create records and upload attachments in Bika.ai.

Readme

Bika.ai MCP Server

A Model Context Protocol server that provides read and write access to Bika.ai. This server enables LLMs to list spaces, list nodes, list records, create records and upload attachments in Bika.ai.

Tools

| Tool Name | Availabe | Description | | ------------------------- | -------- | ------------------------------------------------------------------------------------------------------------- | | list_spaces | ✅ | Fetches all workspaces that the currently authenticated user has permission to access. | | list_nodes | ✅ | Retrieves all nodes contained within the specified workspace. | | get_records | ✅ | Read the records from a specified database with support for pagination, field filtering, and sorting options. | | get_fields_schema | ✅ | Returns the JSON schema of all fields within the specified database | | create_record | ✅ | Create a new record in the database. | | upload_attachment_via_url | ✅ | Upload an attachment to the Bika server using its web URL. | | update_record | ❌ | TODO |

Usage

You can use this server in MCP client such as Claude Desktop, CherryStudio, etc.

Claude Desktop In the case of Claude Desktop, you need to add the following configuration information to the "mcpServers" section of the claude_desktop_config.json file:

// Linux, MacOS
{
  "mcpServers": {
    "bika": {
      "command": "npx",
      "args": [
        "-y",
        "/ABSOLUTE/PATH/TO/PARENT/FOLDER/bika-mcp-server"
      ],
      "env": {
        "BIKA_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}
// Windows
{
  "mcpServers": {
    "bika": {
      "command": "npx",
      "args": [
        "-y",
        "D:\\ABSOLUTE\\PATH\\TO\\PARENT\\FOLDER\\bika-mcp-server"
      ],
      "env": {
        "BIKA_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Replace YOUR_API_KEY with your Bika personal access token and /ABSOLUTE/PATH/TO/PARENT/FOLDER/bika-mcp-server with the absolute path to the parent folder of this repository.

CherryStudio If you are using the CherryStudio as MCP client and Windows system, your configuration should look like this:

{
  "mcpServers": {
    "bika": {
      "command": "cmd",
      "args": [
        "/c",
        "npx",
        "-y",
        "D:\\ABSOLUTE\\PATH\\TO\\PARENT\\FOLDER\\bika-mcp-server"
      ],
      "env": {
        "BIKA_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Debug

The MCP inspector is a developer tool for testing and debugging MCP servers.

To inspect an MCP server implementation, there's no need to clone the MCP inspector repo. Instead, use npx. For example, Bika MCP server is built at build/index.js. Arguments are passed directly to your server, while environment variables can be set using the -e flag:

npx @modelcontextprotocol/inspector -e BIKA_API_KEY={YOUR_API_KEY} node build/index.js

The other way is to clone the MCP inspector repo and connect the Bika MCP server in the inspector interface.

cd path/to/inspector/
npm start -- -e BIKA_API_KEY={YOUR_API_KEY}