Metadata-Version: 2.4
Name: docsie-mcp
Version: 0.1.0
Summary: Local stdio bridge for the hosted Docsie MCP server.
Project-URL: Homepage, https://github.com/LikaloLLC/docsie-mcp
Project-URL: Repository, https://github.com/LikaloLLC/docsie-mcp
Project-URL: Documentation, https://github.com/LikaloLLC/docsie-mcp#readme
Project-URL: Issues, https://github.com/LikaloLLC/docsie-mcp/issues
Author: Docsie
License: Proprietary
Keywords: docsie,documentation,mcp,model-context-protocol,video-to-docs
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# docsie-mcp

Local stdio bridge for the hosted Docsie MCP server.

Use this package for MCP clients or directories that require a locally-run stdio server instead of a remote Streamable HTTP endpoint.

## Install Snippet

```json
{
  "mcpServers": {
    "docsie": {
      "command": "uvx",
      "args": ["docsie-mcp"],
      "env": {
        "DOCSIE_MCP_TOKEN": "mcp_sa_...",
        "DOCSIE_MCP_ENDPOINT": "https://app.docsie.io/mcp"
      }
    }
  }
}
```

`DOCSIE_MCP_ENDPOINT` defaults to `https://app.docsie.io/mcp`.

## Authentication

The first version expects a Docsie MCP service token:

```bash
export DOCSIE_MCP_TOKEN=mcp_sa_...
uvx docsie-mcp
```

The token is sent as:

```text
Authorization: Bearer <token>
```

The token still controls the selected Docsie organization, workspace, and permission packs.
