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

ocean-breezer-casefiles-mcp-server

v2.0.2

Published

Ocean Breezer Casefiles MCP Server - Search and explore casefiles using Zep Cloud SDK

Downloads

11

Readme

Ocean Breezer Casefiles MCP Server

A Model Context Protocol (MCP) server implementation for exploring and analyzing Ocean Breezer casefiles using the Zep Cloud SDK. This server allows language models to interact with casefile data, search through episodes, and explore relationships through a standardized interface.

Features

  • Casefile Exploration: Access and browse through Ocean Breezer casefiles with detailed indexing
  • Episode Management: Retrieve detailed episode information and recent casefiles using Zep Cloud SDK
  • Advanced Search: Comprehensive search across casefile content with configurable ranking strategies
  • Entity Analysis: Explore entities, relationships, and facts extracted from casefiles
  • Group-Based Access: Hardcoded to work with Ocean Breezer group for consistent data access
  • Seamless MCP Integration: Works with Claude Desktop and other AI tools supporting MCP

Installation & Usage

Using npx (recommended)

The easiest way to use this package is through npx:

npx ocean-breezer-casefiles-mcp-server

Using with Claude Desktop

To use with Claude Desktop:

  1. Open Claude Desktop
  2. Enable the MCP feature in settings
  3. Add the server configuration to your claude_desktop_config.json:
    {
      "mcpServers": {
        "ocean-breezer-casefiles": {
          "command": "npx",
          "args": [
            "-y",
            "ocean-breezer-casefiles-mcp-server@latest",
            "--zep-api-key",
            "YOUR_ZEP_API_KEY",
            "--mongo-uri", 
            "mongodb://username:password@host:port/database",
            "--db-name",
            "your-database-name"
          ]
        }
      }
    }
  4. Restart Claude Desktop
  5. Ask Claude to search memories, explore knowledge graphs, and analyze relationships

Global Installation

You can install the package globally using:

npm install -g ocean-breezer-casefiles-mcp-server

Then run:

ocean-breezer-casefiles-mcp-server

Manual Installation

  1. Clone this repository
  2. Install dependencies:
npm install
  1. Build the TypeScript code:
npm run build
  1. Start the server:
node dist/index.js

MCP Integration

This server implements the Model Context Protocol, allowing language models to:

  1. Search and explore Ocean Breezer casefiles using various strategies
  2. Find specific entities and relationships in casefile data
  3. Access detailed information about episodes and their content
  4. Navigate through casefile indexes and specific pages
  5. Retrieve recent casefiles and episode details

Available Tools (8 Total)

The server provides a comprehensive set of tools for working with Ocean Breezer casefiles:

🔍 Search Tools (2)

  1. search_casefile_content: Performs comprehensive search across casefile content, extracted entities, and relationships. Returns relevant emails and entities based on the search query.

  2. advanced_casefile_search: Executes advanced search with configurable ranking strategies, relationship context, and filtering options. Provides more control over search results than the basic search.

📁 Casefile Tools (3)

  1. get_casefile_index: Get the casefile index which contains short summaries of all pages (emails) in a casefile along with their corresponding page numbers.

  2. get_casefile_pages_by_number: Get the full detailed content of specific pages (emails) from a casefile by page number.

  3. get_casefile_page_by_uuid: Get detailed information about a specific casefile page (email) by UUID.

📝 Episode Tools (2)

  1. get_recent_casefiles: Retrieve the most recent episodes (casefiles) for the Ocean Breezer group using the Zep Cloud SDK.

  2. get_episode_details: Get detailed information about a specific episode by UUID using the Zep Cloud SDK.

🎯 Entity Tools (1)

  1. get_entity_details: Get detailed information about a specific entity extracted from casefile pages, including its properties, relationships, and connected facts.

Usage Examples

Basic Casefile Search

// Search across casefile content
{
  "tool": "search_casefile_content",
  "arguments": {
    "query": "safety protocols",
    "search_focus": "comprehensive",
    "max_results": 15
  }
}

Advanced Casefile Search

// Search with specific ranking strategy
{
  "tool": "advanced_casefile_search",
  "arguments": {
    "query": "incident reports",
    "ranking_strategy": "most_accurate",
    "search_focus": "emails_only",
    "max_results": 20
  }
}

Get Recent Casefiles

// Retrieve recent casefiles from Ocean Breezer group
{
  "tool": "get_recent_casefiles",
  "arguments": {
    "lastn": 10
  }
}

Get Episode Details

// Get detailed information about a specific episode
{
  "tool": "get_episode_details",
  "arguments": {
    "episode_uuid": "episode-uuid-here"
  }
}

Browse Casefile Content

// Get casefile index first
{
  "tool": "get_casefile_index",
  "arguments": {
    "casefile_id": "casefile-id-here",
    "limit": 20
  }
}

// Then get specific pages
{
  "tool": "get_casefile_pages_by_number",
  "arguments": {
    "casefile_id": "casefile-id-here",
    "pages": [1, 2, 3]
  }
}

Architecture

This server is built on:

  • Zep Cloud SDK: For accessing Ocean Breezer casefiles and episodes
  • Model Context Protocol (MCP): Standardized AI tool integration
  • TypeScript: Type-safe development
  • MongoDB: For casefile indexing and page management
  • Advanced Search: Multiple ranking strategies and search focus options

Development

For development, you can run the server directly using ts-node:

npm run dev

Contributing

Contributions are welcome! Please see CONTRIBUTING.md for guidelines.

License

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

About Ocean Breezer

Ocean Breezer is a comprehensive casefile management system that enables AI applications to access, search, and analyze casefile data through the Zep Cloud platform. This MCP server provides a bridge between Ocean Breezer's casefile capabilities and AI language models through standardized tool interfaces, allowing for efficient exploration and analysis of casefile content.