A modern, pythonic Katana Manufacturing ERP API client with automatic retries, rate limiting, and smart pagination
Project description
Katana Manufacturing ERP - API Ecosystem
Multi-language client ecosystem for the Katana Manufacturing ERP API. Production-ready clients with automatic resilience, rate limiting, and pagination.
Packages
| Package | Language | Version | Description |
|---|---|---|---|
| katana-openapi-client | Python | Full-featured API client with transport-layer resilience | |
| katana-mcp-server | Python | Model Context Protocol server for AI assistants | |
| katana-openapi-client | TypeScript | TypeScript/JavaScript client with full type safety |
Features Comparison
| Feature | Python Client | TypeScript Client | MCP Server |
|---|---|---|---|
| Automatic retries | Yes | Yes | Yes (via Python client) |
| Rate limit handling | Yes | Yes | Yes |
| Auto-pagination | Yes | Yes | Yes |
| Type safety | Full (Pydantic) | Full (TypeScript) | Full (Pydantic) |
| Sync + Async | Yes | Async only | Async only |
| Browser support | No | Yes | No |
| AI Integration | - | - | Claude, Cursor, etc. |
Quick Start
Python Client
pip install katana-openapi-client
import asyncio
from katana_public_api_client import KatanaClient
from katana_public_api_client.api.product import get_all_products
async def main():
async with KatanaClient() as client:
response = await get_all_products.asyncio_detailed(client=client)
products = response.parsed.data
print(f"Found {len(products)} products")
asyncio.run(main())
TypeScript Client
npm install katana-openapi-client
import { KatanaClient } from 'katana-openapi-client';
const client = await KatanaClient.create();
const response = await client.get('/products');
const { data } = await response.json();
console.log(`Found ${data.length} products`);
MCP Server (Claude Desktop)
pip install katana-mcp-server
Add to Claude Desktop config
(~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"katana": {
"command": "uvx",
"args": ["katana-mcp-server"],
"env": {
"KATANA_API_KEY": "your-api-key-here"
}
}
}
}
Configuration
All packages support the same authentication methods:
- Environment variable:
KATANA_API_KEY .envfile: Create withKATANA_API_KEY=your-key- Direct parameter: Pass
api_keyto client constructor
# .env file
KATANA_API_KEY=your-api-key-here
KATANA_BASE_URL=https://api.katanamrp.com/v1 # Optional
API Coverage
All clients provide access to the complete Katana API. The canonical endpoint surface is
the OpenAPI spec at docs/katana-openapi.yaml; the Python
and TypeScript clients are generated from it, and the MCP server wraps a curated subset
of high-level tools on top of the Python client.
- Python / TypeScript clients — every operation in the spec, with generated types for all request and response models.
- MCP server — a higher-level tool surface (search, modify, fulfill, verify, plus
preview/apply pairs for write operations); the live tool list is exposed via the
katana://help/toolsresource.
Project Structure
katana-openapi-client/ # Monorepo root
├── pyproject.toml # Workspace configuration (uv)
├── uv.lock # Unified lock file
├── docs/
│ ├── katana-openapi.yaml # OpenAPI 3.1.0 specification
│ ├── adr/ # Shared architecture decisions
│ └── *.md # Shared documentation
├── katana_public_api_client/ # Python client package
│ ├── katana_client.py # Resilient client with retries
│ ├── api/ # Generated API modules
│ ├── models/ # Generated data models
│ ├── models_pydantic/ # Generated pydantic models
│ └── docs/ # Package documentation
├── katana_mcp_server/ # MCP server package
│ ├── src/katana_mcp/
│ │ ├── server.py # FastMCP server
│ │ ├── tools/ # MCP tools
│ │ ├── resources/ # MCP resources
│ │ └── typed_cache/ # SQLite-backed typed cache
│ └── docs/ # Package documentation
└── packages/
└── katana-client/ # TypeScript client package
├── src/
│ ├── client.ts # Resilient client
│ └── generated/ # Generated SDK
└── docs/ # Package documentation
Documentation
Package Documentation
Each package has its own documentation in its docs/ directory:
- Python Client Guide — usage, response helpers, pagination, retries
- Python Client Cookbook — practical recipes
- OpenAPI Spec Authoring — 3.1 conventions, generator/regen lockstep, breaking-change markers
- MCP Server Architecture — MCP design patterns
- MCP Server Development — development workflow
- MCP Prefab UI — card builders and renderer pitfalls
- MCP Typed Cache — SQLite cache, FTS5, soft-state filtering
- TypeScript Client Guide — TypeScript usage
Architecture Decisions
Architecture Decision Records live under each package's docs/adr/ directory plus
shared monorepo ADRs under docs/adr/. Each ADR directory has a README.md index that
lists every ADR in that scope with its current status — those indexes are the canonical
list and stay current as ADRs are added or superseded.
- Shared / monorepo ADRs — cross-cutting decisions
- Python client ADRs — client package decisions
- MCP server ADRs — MCP package decisions
- TypeScript client ADRs — TS package decisions
Shared Documentation
- Contributing Guide — how to contribute
- uv Usage Guide — package manager guide
- Monorepo Release Guide — semantic release setup
Development
Prerequisites
- Python 3.12+ for Python packages
- Node.js 18+ for TypeScript package
- uv package manager (install)
Setup
# Clone repository
git clone https://github.com/dougborg/katana-openapi-client.git
cd katana-openapi-client
# Install all dependencies
uv sync --all-extras
# Install pre-commit hooks
uv run pre-commit install
# Create .env file
cp .env.example .env # Add your KATANA_API_KEY
Common Commands
# Run all checks (lint, type-check, test)
uv run poe check
# Run tests
uv run poe test
# Format code
uv run poe format
# Regenerate Python client from OpenAPI spec
uv run poe regenerate-client
Commit Standards
This project uses semantic-release with conventional commits:
# Python client changes
git commit -m "feat(client): add new inventory helper"
git commit -m "fix(client): handle pagination edge case"
# MCP server changes
git commit -m "feat(mcp): add manufacturing order tools"
git commit -m "fix(mcp): improve error handling"
# TypeScript client changes
git commit -m "feat(ts): add browser support"
# Documentation only (no release)
git commit -m "docs: update README"
See MONOREPO_SEMANTIC_RELEASE.md for details.
License
MIT License - see LICENSE for details.
Contributing
Contributions welcome! See CONTRIBUTING.md for guidelines.
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 katana_openapi_client-0.64.0.tar.gz.
File metadata
- Download URL: katana_openapi_client-0.64.0.tar.gz
- Upload date:
- Size: 2.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
778adde35745dd1dd65fc30dac597574a80216c55386292812ee14f40d6a3bb7
|
|
| MD5 |
0c172d64cb1f88ae7784cc4731543047
|
|
| BLAKE2b-256 |
bc5f44ff5fc2aff7adb642fc3a5358fa4d344ef54112ebdd8cbc4956f718afc7
|
Provenance
The following attestation bundles were made for katana_openapi_client-0.64.0.tar.gz:
Publisher:
release.yml on dougborg/katana-openapi-client
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
katana_openapi_client-0.64.0.tar.gz -
Subject digest:
778adde35745dd1dd65fc30dac597574a80216c55386292812ee14f40d6a3bb7 - Sigstore transparency entry: 1539157821
- Sigstore integration time:
-
Permalink:
dougborg/katana-openapi-client@4a47e4cb451d8dc4a5996d04603b7b0ff85a5bc6 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/dougborg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@4a47e4cb451d8dc4a5996d04603b7b0ff85a5bc6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file katana_openapi_client-0.64.0-py3-none-any.whl.
File metadata
- Download URL: katana_openapi_client-0.64.0-py3-none-any.whl
- Upload date:
- Size: 1.0 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b89ec8adab3614342e541c37e0285b3882ca0843c76f2aa69ced35372ccb6edb
|
|
| MD5 |
0f48a04512050ff4ba9e68db1e1fff57
|
|
| BLAKE2b-256 |
fdb1eadcf434d48ef06c1c2a2c3bdb08624e2d068f6844ee7f141d7e981e3c50
|
Provenance
The following attestation bundles were made for katana_openapi_client-0.64.0-py3-none-any.whl:
Publisher:
release.yml on dougborg/katana-openapi-client
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
katana_openapi_client-0.64.0-py3-none-any.whl -
Subject digest:
b89ec8adab3614342e541c37e0285b3882ca0843c76f2aa69ced35372ccb6edb - Sigstore transparency entry: 1539157923
- Sigstore integration time:
-
Permalink:
dougborg/katana-openapi-client@4a47e4cb451d8dc4a5996d04603b7b0ff85a5bc6 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/dougborg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@4a47e4cb451d8dc4a5996d04603b7b0ff85a5bc6 -
Trigger Event:
push
-
Statement type: