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

asnotebook

v1.5.6

Published

Notebook MCP Server - AI integration for project management

Downloads

50

Readme

Arcstrum Notebook MCP Server

Official Model Context Protocol (MCP) server for Arcstrum Notebook. Enables AI assistants like Claude to interact with your Arcstrum Notebook projects.

✨ Quick Start

Local Development Installation

Since this package is in development, install from the local directory:

# Navigate to the mcp-server directory
cd /Users/jonathanhori/Desktop/Apps/ASNotebook/mcp-server

# Install dependencies and build
npm install
npm run build

# Link globally for development
npm link

# Set up with your API token
asnotebook setup

Alternative: Direct Installation

You can also install directly from the local directory:

# Install from local path
npm install -g /Users/jonathanhori/Desktop/Apps/ASNotebook/mcp-server

# Set up with your API token
asnotebook setup

Production Installation (when published)

npm install -g asnotebook
asnotebook setup

That's it! The setup wizard will:

  1. Open your browser to generate an API token
  2. Configure the connection
  3. Automatically integrate with Claude Code
  4. Test everything works

🎯 Features

  • Zero Config: Automatic setup and Claude Code integration
  • Secure: API token authentication (no passwords stored)
  • Complete Access: Projects, views, use cases, test cases, and roles
  • Smart CLI: Simple commands for everything

📝 Usage

Once installed, you can ask Claude things like:

  • "List my Notebook projects"
  • "Create a new authentication view"
  • "Add test cases for user login"
  • "Update the payment use case description"
  • "Show me all failing test cases"

🛠 CLI Commands

asnotebook setup     # Interactive setup wizard
asnotebook status    # Check connection status
asnotebook test      # Test API and list projects
asnotebook enable    # Add to Claude Code
asnotebook disable   # Remove from Claude Code
asnotebook logout    # Remove API token
asnotebook uninstall # Complete removal

🔑 API Token

Get your API token from: https://notebook.arcstrum.com - Go to Settings → API Keys

Tokens are stored securely in ~/.asnotebook/config.json

🤖 Available MCP Tools

Projects

  • list_projects - List all your projects
  • get_project - Get project details

Views

  • create_view - Create a new view
  • update_view - Update view details
  • delete_view - Remove a view

Use Cases

  • create_usecase - Add a use case to a view
  • update_usecase - Update use case details
  • delete_usecase - Remove a use case

Test Cases

  • create_testcase - Add test case to use case
  • update_testcase - Update test details
  • delete_testcase - Remove a test case

Roles

  • create_role - Create a project role
  • update_role - Update role details
  • delete_role - Remove a role

🔧 Manual Configuration

If automatic setup doesn't work, you can manually configure Claude Code:

  1. Find your Claude Code MCP config file:

    • macOS: ~/Library/Application Support/Claude/mcp.json
    • Linux: ~/.config/claude-code/mcp.json
    • Windows: %APPDATA%\Claude\mcp.json
  2. Add this configuration:

{
  "mcpServers": {
    "asnotebook": {
      "command": "node",
      "args": ["/path/to/global/node_modules/asnotebook/dist/server.js"],
      "env": {
        "ASNOTEBOOK_CONFIG_PATH": "~/.asnotebook/config.json"
      }
    }
  }
}

🐛 Troubleshooting

"API token not configured"

Run asnotebook setup to configure your token.

"Cannot connect to API"

  1. Check your internet connection
  2. Verify token is valid: asnotebook test
  3. Generate a new token if needed

"Not found in Claude Code"

Run asnotebook enable to add to Claude Code config.

📦 Development

# Clone and install
git clone https://github.com/asnotebook/mcp-server
cd mcp-server
npm install

# Development
npm run dev

# Build
npm run build

# Test locally
npm link
asnotebook setup

📄 License

MIT © Arcstrum Notebook

🤝 Support