seizn-mcp
v1.0.2
Published
MCP (Model Context Protocol) server for Seizn AI Memory - Persistent memory for AI applications
Maintainers
Readme
Seizn MCP Server
MCP (Model Context Protocol) server for Seizn AI Memory - Persistent memory for AI applications.
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-mcpThen 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
- Visit seizn.com
- Sign up for an account
- Navigate to API Settings
- 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 startLicense
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Links
- Website: https://seizn.com
- Documentation: https://seizn.com/docs
- GitHub: https://github.com/iruhana/seizn
- Issues: https://github.com/iruhana/seizn/issues
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 --forceThen restart your IDE/application.
