Skip to main content
Glama
cognizonline

Cogniz Memory Platform MCP Server

by cognizonline

Cogniz Memory Platform - MCP Server

Official Model Context Protocol (MCP) server for Cogniz Memory Platform - Enables AI assistants like Claude to store and retrieve memories across conversations.

๐ŸŒ Live Server: https://app.cogniz.online/mcp


โœจ Features

  • ๐Ÿ”Œ MCP Protocol 2025-03-26 - Latest streamable HTTP transport

  • ๐Ÿ” Multi-Tenant - Each user uses their own API key

  • ๐Ÿง  Persistent Memory - Store and retrieve context across sessions

  • ๐Ÿ” Semantic Search - Find relevant memories using natural language

  • ๐Ÿ“ Project Organization - Organize memories by project

  • ๐Ÿ’พ Auto-Compression - 65% storage savings with lossless compression

  • ๐ŸŒ Remote Access - Works with Claude Desktop AND Web UIs


Related MCP server: Claude Continuity MCP Server

๐Ÿš€ Quick Start

For Claude Desktop Users

1. Get Your API Key:

2. Configure Claude Desktop:

Open your Claude Desktop config file:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Linux: ~/.config/Claude/claude_desktop_config.json

Add this configuration:

{
  "mcpServers": {
    "cogniz-memory": {
      "url": "https://app.cogniz.online/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY_HERE"
      }
    }
  }
}

Replace YOUR_API_KEY_HERE with your actual API key.

3. Restart Claude Desktop

4. Test It:

You: "Store a memory: MCP integration is working!"
Claude: "I've stored that memory in your Cogniz account."

Verify it appears in your dashboard.


For Web UI Users (ChatGPT Web UI, Claude Web UI, etc.)

Web UIs often can't send custom headers, so we support query parameter authentication.

Method 1: Custom Connector (if supported)

Some Web UIs support custom connectors:

  1. Go to Settings โ†’ Connectors

  2. Add Custom Connector:

    • Name: Cogniz Memory Platform

    • URL: https://app.cogniz.online/mcp?api_key=YOUR_API_KEY

    • Method: POST

Method 2: URL with API Key

Use this URL format:

https://app.cogniz.online/mcp?api_key=YOUR_API_KEY

โš ๏ธ Security Note: Query parameters are less secure than headers because they appear in logs and URLs. Use this method only for Web UIs that don't support Authorization headers.


๐Ÿ› ๏ธ Available Tools

Once connected, Claude can use these MCP tools:

cogniz_store_memory

Store a new memory in the Cogniz platform.

Parameters:

  • content (required): The text/information to store

  • project_id (optional): Project identifier (default: "default")

  • project_name (optional): Human-readable project name

  • category (optional): Category tag (e.g., "code-snippets", "meeting-notes")

Example:

"Store this code snippet in my development project: async function fetchData() { ... }"

cogniz_search_memories

Search memories using semantic search.

Parameters:

  • query (required): Search text

  • project_id (optional): Limit search to specific project

  • limit (optional): Max results (1-100, default: 10)

Example:

"Search my memories for API authentication examples"

cogniz_list_projects

List all your projects.

Example:

"Show me all my projects"

cogniz_get_stats

View your usage statistics.

Returns:

  • Current plan

  • Memory usage

  • API calls

  • Project count

  • Storage stats

Example:

"How much memory am I using?"

cogniz_delete_memory

Delete a specific memory by ID.

Parameters:

  • memory_id (required): ID of memory to delete

Example:

"Delete memory mem_12345"

๐Ÿ” Authentication Methods

This server supports two authentication methods to work with different clients:

Best for: Claude Desktop, API clients, secure environments

Format:

POST /mcp HTTP/1.1
Authorization: Bearer mp_1_YOUR_API_KEY
Content-Type: application/json

Pros:

  • โœ… More secure

  • โœ… Not visible in URLs/logs

  • โœ… Standard HTTP authentication


Method 2: Query Parameter

Best for: Web UIs that can't send custom headers

Format:

https://app.cogniz.online/mcp?api_key=mp_1_YOUR_API_KEY

Pros:

  • โœ… Works with Web UIs

  • โœ… No header support needed

Cons:

  • โš ๏ธ Less secure (visible in URLs)

  • โš ๏ธ Appears in server logs

  • โš ๏ธ May be cached by proxies


๐Ÿ“Š Pricing Plans

The MCP server is free to use. You only pay for your Cogniz Memory Platform account:

Plan

Price

Memory Limit

Projects

API Calls/Month

Starter

Free (30 days)

100 MB

3

1,000

Plus

$7/month

Unlimited

15

15,000

Pro

$49/month

Unlimited

Unlimited

100,000

Enterprise

Custom

Unlimited

Unlimited

Unlimited

View detailed pricing


๐Ÿงช Testing

Health Check

curl https://cogniz-claude-mcp.onrender.com/health

Expected Response:

{
  "status": "healthy",
  "service": "cogniz-mcp-server"
}

Test Authentication (Header Method)

curl -X POST https://app.cogniz.online/mcp \
  -H "Authorization: Bearer mp_1_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/list"
  }'

Test Authentication (Query Method)

curl -X POST "https://app.cogniz.online/mcp?api_key=mp_1_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/list"
  }'

Expected: List of 5 available MCP tools


๐Ÿ—๏ธ Self-Hosting

Want to run your own instance? Clone and deploy:

Prerequisites

  • Node.js 18+

  • TypeScript

  • Render account (or any Node.js hosting)

Deploy to Render

1. Fork this repository

2. Create Web Service on Render:

  • Connect your GitHub fork

  • Build Command: npm install && npm run build

  • Start Command: npm start

  • Environment Variables:

    • COGNIZ_BASE_URL=https://cogniz.online

    • COGNIZ_PROJECT_ID=default

    • Optional: COGNIZ_API_KEY (for demo/testing only)

3. Configure Custom Domain (Optional):

  • Professional plan required ($19/month)

  • Add CNAME: your-subdomain.com โ†’ your-service.onrender.com

  • SSL auto-configured

4. Update OAuth Discovery URL: In src/server-remote.ts line 224:

resource: "https://your-domain.com/mcp",

5. Deploy and test!


๐Ÿ“š Documentation


๐Ÿ”ง Development

Local Setup

# Clone repository
git clone https://github.com/cognizonline/Cogniz_Claude_MCP.git
cd Cogniz_Claude_MCP

# Install dependencies
npm install

# Build TypeScript
npm run build

# Set environment variables
export COGNIZ_BASE_URL=https://cogniz.online
export COGNIZ_API_KEY=mp_1_YOUR_TEST_KEY

# Start server
npm start

# Server runs on http://localhost:3000

Test Locally

# Health check
curl http://localhost:3000/health

# List tools
curl -X POST http://localhost:3000/mcp \
  -H "Authorization: Bearer mp_1_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

๐Ÿค Contributing

Contributions welcome! Please:

  1. Fork the repository

  2. Create a feature branch

  3. Make your changes

  4. Test thoroughly

  5. Submit a pull request


๐Ÿ“‹ Troubleshooting

"Authentication required" error

Cause: No API key provided

Fix:

  • Desktop: Add Authorization: Bearer YOUR_KEY to config

  • Web UI: Add ?api_key=YOUR_KEY to URL

"Invalid API key" (401 error)

Cause: API key is wrong or expired

Fix:

  • Get fresh API key from dashboard

  • Verify format: mp_1_XXXXXXXXXXXX

"Rate limit exceeded" (429 error)

Cause: Exceeded monthly API call limit

Fix:

  • Check usage in dashboard

  • Upgrade plan for more calls

  • Limit resets monthly

Connection timeout

Cause: Server on free Render plan (cold starts)

Fix:

  • Wait 30-60 seconds for warmup

  • Or upgrade to Professional plan ($19/month) for always-on


๐Ÿ’ฐ Hosting Costs

Free Render Plan

  • โœ… Free forever

  • โš ๏ธ Cold starts (30-60s delay after 15min idle)

  • โš ๏ธ Limited resources

Professional Render Plan ($19/month)

  • โœ… Always-on (no cold starts)

  • โœ… Better performance

  • โœ… Custom domains

  • โœ… Priority support

Recommended for production use.


๐Ÿ”’ Security

API Key Safety

  • โœ… Keys transmitted via HTTPS only

  • โœ… Server doesn't store keys (stateless)

  • โœ… Each request isolated

  • โœ… SSL/TLS encryption

Best Practices

  1. Never commit API keys to git

  2. Use Authorization header when possible (more secure than query params)

  3. Rotate keys periodically

  4. Monitor usage for suspicious activity

  5. Use query params only for Web UIs that don't support headers


๐ŸŒ Protocol Details

MCP Version

2025-03-26 (Streamable HTTP)

Transport

HTTP POST with streaming support

Endpoints

  • POST /mcp - Main MCP endpoint

  • GET /health - Health check

  • GET /.well-known/oauth-protected-resource - Auth discovery

Supported Methods

  • tools/list - List available tools

  • tools/call - Execute a tool

  • resources/list - List resources (future)


๐Ÿ“ž Support


๐Ÿ“„ License

MIT License - See LICENSE file for details


๐Ÿ™ Acknowledgments


๐Ÿ”„ Changelog

v1.2.0 (Latest - January 2025)

  • โœ… Multi-tenant support with user-provided API keys

  • โœ… Authorization header authentication (recommended)

  • โœ… Query parameter authentication (for Web UIs)

  • โœ… Improved error messages

  • โœ… OAuth discovery metadata

v1.1.0 (October 2024)

  • โœ… Updated to MCP Streamable HTTP protocol (2025-03-26)

  • โœ… Fixed API field mappings

  • โœ… Improved error handling

v1.0.0

  • Initial release

  • Basic MCP tools

  • Streamable HTTP transport


Live MCP Server: https://app.cogniz.online/mcp

Get Your API Key: https://cogniz.online/dashboard

Need Help? Open an issue or contact support@cogniz.online


Made with โค๏ธ for the AI community

F
license - not found
-
quality - not tested
D
maintenance

Maintenance

โ€“Maintainers
โ€“Response time
โ€“Release cycle
โ€“Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Cloud-hosted MCP server for durable AI memory

  • A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yoโ€ฆ

  • Shared, governed long-term memory for AI agents across tools and sessions via MCP and REST.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cognizonline/Cogniz_Claude_MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server