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

seizn-mcp

v1.0.2

Published

MCP (Model Context Protocol) server for Seizn AI Memory - Persistent memory for AI applications

Readme

Seizn MCP Server

MCP (Model Context Protocol) server for Seizn AI Memory - Persistent memory for AI applications.

License npm version

Features

  • Semantic Search: Vector-based similarity search for memories
  • Knowledge Graph: Create entities, relations, and observations
  • Multi-language Support: Full UTF-8 support (Korean, Japanese, Chinese, Arabic, etc.)
  • Claude Desktop Integration: Works seamlessly with Claude Desktop

Installation

Using npx (Recommended)

No installation required! Just configure Claude Desktop:

{
  "mcpServers": {
    "seizn": {
      "command": "npx",
      "args": ["-y", "seizn-mcp"],
      "env": {
        "SEIZN_API_URL": "https://www.seizn.com",
        "SEIZN_API_KEY": "your-api-key"
      }
    }
  }
}

Global Installation

npm install -g seizn-mcp

Then configure Claude Desktop:

{
  "mcpServers": {
    "seizn": {
      "command": "seizn-mcp",
      "env": {
        "SEIZN_API_URL": "https://www.seizn.com",
        "SEIZN_API_KEY": "your-api-key"
      }
    }
  }
}

Configuration

| Environment Variable | Required | Default | Description | |---------------------|----------|---------|-------------| | SEIZN_API_KEY | Yes | - | Your Seizn API key | | SEIZN_API_URL | No | https://www.seizn.com | Seizn API endpoint |

Available Tools

| Tool | Description | |------|-------------| | create_entities | Create new entities (memories) in the knowledge graph | | create_relations | Create relationships between entities | | add_observations | Add observations to existing entities | | search_nodes | Semantic search for memories (vector, hybrid, keyword) | | read_graph | Read all entities and relations | | open_nodes | Get specific entities by name | | delete_entities | Delete entities from the graph | | delete_observations | Delete specific observations | | delete_relations | Delete relations from the graph |

Usage Examples

Creating a Memory

Claude, remember that my favorite programming language is TypeScript.

Searching Memories

Claude, what do you remember about my preferences?

Creating Relations

Claude, note that the "Project Alpha" project uses the "React" framework.

Getting an API Key

  1. Visit seizn.com
  2. Sign up for an account
  3. Navigate to API Settings
  4. Generate a new API key

Development

# Clone the repository
git clone https://github.com/iruhana/seizn.git
cd seizn/mcp-server

# Install dependencies
npm install

# Development mode (with hot reload)
npm run dev

# Build
npm run build

# Start
npm start

License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

Links


Made with love by Seizn

Troubleshooting

Windows Encoding Issues (Korean/Japanese/Chinese garbled)

If non-ASCII characters appear as ??? or , use the cmd wrapper:

{
  "mcpServers": {
    "seizn": {
      "command": "cmd",
      "args": ["/c", "chcp 65001 >nul && npx -y seizn-mcp@latest"],
      "env": {
        "SEIZN_API_URL": "https://www.seizn.com",
        "SEIZN_API_KEY": "your-api-key"
      }
    }
  }
}

This sets the Windows console code page to UTF-8 (65001) before starting the server.

Cache Issues

If you're not getting the latest version:

npm cache clean --force

Then restart your IDE/application.