MCP server for searching and browsing the IBM ISC Playbook with hybrid search capabilities
Project description
ISC Playbook MCP Server
Model Context Protocol (MCP) server for searching and browsing the IBM ISC Playbook with hybrid search capabilities.
Features
- Hybrid Search: Combines semantic (dense vectors) and keyword (sparse vectors) search using Milvus Lite
- 1,358 Indexed Pages: Complete IBM ISC Playbook content (1,091 documents + 266 folders)
- Natural Language Queries: Search using conversational questions
- GitHub Copilot Integration: Access playbook directly from VS Code
Architecture
- Vector Database: Milvus Lite (embedded, no external service needed)
- Embeddings: sentence-transformers (all-MiniLM-L6-v2, 384-dim)
- Search Algorithm: RRF (Reciprocal Rank Fusion) for result merging
- MCP Framework: FastMCP (Python SDK)
Installation
Option 1: Using uvx (Recommended)
The easiest way to use this MCP server is with uvx:
# Install and run directly with uvx
uvx isc-playbook-mcp-server
Option 2: From PyPI
# Install from PyPI
pip install isc-playbook-mcp-server
# Run the server
isc-playbook-mcp-server
Option 3: From Source (Development)
-
Clone the repository:
git clone git@github.ibm.com:kirtijha/isc-playbook-mcp-server.git cd isc-playbook-mcp-server
-
Install with uv:
uv pip install -e .
Or with pip:
python -m venv .venv source .venv/bin/activate # On macOS/Linux pip install -e .
Usage
MCP Server Configuration
Add to your MCP settings file (e.g., ~/.config/mcp/mcp.json or VS Code's MCP settings):
Using uvx (Recommended):
{
"mcpServers": {
"isc-playbook": {
"command": "uvx",
"args": ["isc-playbook-mcp-server"]
}
}
}
Using installed package:
{
"mcpServers": {
"isc-playbook": {
"command": "isc-playbook-mcp-server"
}
}
}
}
Available Tools
- search_playbook: Natural language search across all pages using hybrid search (semantic + keyword)
- get_document: Retrieve full content of a specific document by URL
- browse_by_type: List all documents or folders
- search_by_path: Find documents by navigation path pattern (e.g., "UPX > PRM DevOps")
- get_related_documents: Find semantically similar documents to a given document
- get_index_stats: Get statistics about indexed content (total pages, documents, folders)
Example Queries
Natural Language Search:
- "How do I troubleshoot production issues in ISC?"
- "What is the process for onboarding new team members?"
- "How to create and manage Salesforce packages?"
- "Deployment process to staging environment"
Path-based Search:
- "Show me all documents in UPX > PRM DevOps"
- "Find everything under ISC Sales > Development"
- "What's in the Salesforce Admin section?"
Related Documents:
- "Find documents similar to the deployment guide"
- "What else should I read after the onboarding doc?"
Project Structure
playbook-mcp-server/
├── src/
│ ├── server.py # FastMCP server
│ ├── hybrid_indexer.py # Milvus Lite hybrid search
│ ├── scraper.py # Playbook scraper
│ └── cleaner.py # HTML cleaner
├── data/
│ ├── cleaned/ # Cleaned JSON data
│ └── index/ # Milvus database
├── requirements.txt
└── README.md
Technical Details
- Vocabulary Size: 100K terms for sparse vectors (BM25-like)
- Text Limit: 65,535 characters per document (Milvus VARCHAR limit)
- Preview Size: 1,000 chars in search results, 500 in browse
- Batch Size: 100 documents per indexing batch
Production Ready
✅ Comprehensive data coverage (3.2x more than initial version)
✅ No data loss or unnecessary truncation
✅ Accurate hybrid search with RRF fusion
✅ Error handling and logging
✅ Optimized for performance
License
IBM Internal Use Only
Authors
- Kirti Jha (kirtijha@in.ibm.com)
Last Updated
November 12, 2025
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file isc_playbook_mcp_server-0.1.1.tar.gz.
File metadata
- Download URL: isc_playbook_mcp_server-0.1.1.tar.gz
- Upload date:
- Size: 189.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df329b3905535f7f7b9464eedc65fff5cc6f3476c72978715b093863e114cf99
|
|
| MD5 |
c627cbe40c896ae3bf930344fcdbc100
|
|
| BLAKE2b-256 |
2dd0232d7a41d70514919b307f7dc4314ef474fa3bdd2bdc724133577d937721
|
File details
Details for the file isc_playbook_mcp_server-0.1.1-py3-none-any.whl.
File metadata
- Download URL: isc_playbook_mcp_server-0.1.1-py3-none-any.whl
- Upload date:
- Size: 70.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b18fc218ef01747cb31e48695f9057d365d8e95df237348a513ef854e6bad3e
|
|
| MD5 |
4069c2ce908207009e936abe6383541c
|
|
| BLAKE2b-256 |
0b55583d465bebea3f2c535849c281ab54ad72e0809e5e73b5709c6cc7677965
|