Metadata-Version: 2.4
Name: summary-stack-mcp-core
Version: 2026.4.17.1422
Summary: Core MCP tools for Summary Stack search and discovery
Project-URL: Homepage, https://summarystack.ai
Project-URL: Repository, https://github.com/tomschreck/cannon-collective-nx
Author-email: Tom Schreck <tom@arta.ing>
License: MIT
Keywords: ai,mcp,model-context-protocol,search,summary-stack
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.12
Requires-Dist: httpx<1.0,>=0.28.0
Requires-Dist: pydantic<3.0,>=2.12.0
Requires-Dist: summary-stack-models
Description-Content-Type: text/markdown

# Summary Stack MCP Core

Shared MCP tools for Summary Stack connectors. Provides core RAG/search functionality that connector-specific MCP servers can import and register.

## Tools Provided

- `search_stacks` - Semantic search across summary stacks
- `get_stack` - Get a specific stack by ID
- `list_stacks` - List recent stacks
- `get_related_stacks` - Find related stacks

## Usage

```python
from summary_stack_mcp_core import search_stacks, get_stack, list_stacks, get_related_stacks

# Register with FastMCP
mcp.tool()(search_stacks)
mcp.tool()(get_stack)
mcp.tool()(list_stacks)
mcp.tool()(get_related_stacks)
```

## Configuration

Set environment variables:

- `SUMMARY_STACK_API_URL` - API base URL
- `SUMMARY_STACK_API_KEY` - API key for authentication
