Metadata-Version: 2.5
Name: santismm-knowledge-mcp
Version: 0.2.1
Summary: MCP access to the Santismm Knowledge Platform (harness engineering, agentic AI patterns, reference architectures, AI governance) — a zero-dependency stdio proxy to the hosted, always-fresh endpoint.
Project-URL: Homepage, https://santismm.com/en/mcp
Project-URL: Repository, https://github.com/santismm/santismm-knowledge-mcp
Project-URL: Issues, https://github.com/santismm/santismm-knowledge-mcp/issues
Author: Santiago Santa María Morales
License-Expression: MIT
Keywords: agentic-ai,ai-governance,harness-engineering,knowledge-base,mcp,mcp-server,model-context-protocol
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# santismm-knowledge-mcp (Python)

MCP access to the [Santismm Knowledge Platform](https://santismm.com/en/mcp) —
harness engineering, agentic AI patterns, reference architectures, AI
governance and the Harness Engineering Handbook. 19 read-only tools, content
CC BY 4.0, in three languages (en/es/pt).

This package is a **zero-dependency stdio proxy** to the hosted endpoint at
`https://santismm.com/mcp`. It ships no corpus and no tool logic — your agent
always queries the live, current knowledge base. If your MCP client supports
remote servers natively, you can skip this package entirely and point it at
the endpoint.

## Usage

```bash
uvx santismm-knowledge-mcp        # or: pipx run santismm-knowledge-mcp
```

MCP client config (stdio):

```json
{
  "mcpServers": {
    "santismm-knowledge": {
      "command": "uvx",
      "args": ["santismm-knowledge-mcp"]
    }
  }
}
```

Remote-capable clients can use the endpoint directly instead:

```json
{ "mcpServers": { "santismm-knowledge": { "type": "http", "url": "https://santismm.com/mcp" } } }
```

## Environment

- `SANTISMM_MCP_URL` — override the endpoint URL (e.g. for a mirror or test).

Docs: https://santismm.com/en/mcp · Registry: `com.santismm/knowledge` ·
Code MIT, content CC BY 4.0.
