Agent-ready provider API wrappers with typed schemas, OAuth scope mappings, and LLM function-calling definitions.
Project description
apron-tools
Agent-ready provider API wrappers with typed schemas, OAuth scope mappings, and LLM function-calling definitions.
What is apron-tools?
Provider SDKs are designed for human developers — they expose hundreds or thousands of operations per provider. apron-tools adds what agents need:
- LLM function-calling schemas — structured tool definitions generated from Pydantic models.
- Curation — a selected subset of operations useful for agents, not the entire API surface.
- Tool-to-scope mappings — which OAuth scopes each tool requires.
- Provider quirk handling — surfaced and handled, not buried in SDK internals.
apron-tools defines tools, not transport. The same definitions can be served as MCP, OpenAPI, GraphQL, or plain Python callables. Tool definitions are more durable than wire protocols.
Installation
# Core only (tool definitions and schemas, no provider SDK dependencies).
# via uv
uv add apron-tools
# via pip
pip install apron-tools
# With specific provider extras (installs provider SDK dependencies).
# via uv
uv add apron-tools --extra slack --extra google
# via pip
pip install apron-tools[slack,google]
# All providers.
# via uv
uv add apron-tools --extra all
# via pip
pip install apron-tools[all]
Usage
Discover available tools
from apron_tools import discover_tools, get_tools_for_provider
# Discover tools across all installed providers.
# Only providers whose dependencies are installed will be found.
tools = discover_tools()
# Tools for a specific provider.
typeform_tools = get_tools_for_provider("typeform")
for td in typeform_tools:
print(f"{td.name}: {td.description}")
print(f" scopes: {td.scopes}")
print(f" docs: {td.api_docs_url}")
Call a tool
from apron_tools.providers.typeform.tools import list_forms
from apron_tools.providers.typeform.types import ListFormsParams
result = await list_forms(ListFormsParams(page_size=10), token="your-typeform-token")
# Typed attribute access.
for form in result.items:
print(f"{form.title} ({form.id})")
# LLM-readable string.
print(str(result))
# Dict or JSON.
result.model_dump()
result.model_dump_json()
Access tool metadata
Every tool function decorated with @tool has a _tool_definition attribute containing its metadata:
from apron_tools.providers.typeform.tools import list_forms
td = list_forms._tool_definition
td.name # "list_forms"
td.provider # "typeform"
td.scopes # ["forms:read"]
td.input_schema # JSON Schema from the Pydantic input model
td.output_schema # JSON Schema from the Pydantic output model
td.api_docs_url # "https://www.typeform.com/developers/create/reference/retrieve-forms/"
Adding a provider
Each provider is a directory under src/apron_tools/providers/:
src/apron_tools/providers/yourprovider/
├── __init__.py # Export tool functions
├── types.py # Pydantic input/output models
├── tools.py # Async tool functions with @tool decorator
└── scopes.py # OAuth scope enum and mappings
See src/apron_tools/providers/typeform/ for the reference implementation.
Provider PR checklist
- Create provider directory with
types.py,tools.py,scopes.py,__init__.py. - Add API docs URLs in
@tooldecorator and provider__init__.pydocstring. - Capture real API response snapshots in
tests/providers/yourprovider/testdata/. - Write tests — model validation, tool function tests (mocked HTTP), contract snapshots.
- Optionally add integration tests in
test_integration.py.
Development
Requires uv.
make setup # Install uv, create venv, sync deps, install pre-commit hooks
make test # Run unit tests (integration tests skipped by default)
make lint # Run pre-commit hooks (ruff, ty, detect-secrets)
make test-integration # Run integration tests (requires provider tokens)
Or using uv directly:
uv sync --group dev # Sync all dev dependencies
uv run pytest tests # Run tests
uv run pre-commit run --all-files # Run linters
Integration tests
Integration tests call real provider APIs and are skipped by default. To run them:
APRON_TOOLS_INTEGRATION_TESTS=1 TYPEFORM_TOKEN=xxx make test-integration
Each provider has its own token env var. Only providers with credentials set will run; the rest skip cleanly:
# Run just Slack integration tests.
APRON_TOOLS_INTEGRATION_TESTS=1 SLACK_TOKEN=xoxb-... make test-integration
# Run Google + Notion integration tests.
APRON_TOOLS_INTEGRATION_TESTS=1 GOOGLE_TOKEN=... NOTION_TOKEN=... make test-integration
License
Project details
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 apron_tools-0.4.1.tar.gz.
File metadata
- Download URL: apron_tools-0.4.1.tar.gz
- Upload date:
- Size: 498.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afecd7aeb46278eab71ec817ae960a3f521956e9ea70392aced40f0535e87b44
|
|
| MD5 |
b11354e50cc225261cdcf78d03294d4a
|
|
| BLAKE2b-256 |
5465237802c8215a664c6a4a541fe82fdbdee72cc7ee74df20ac4f8c3cb42d06
|
Provenance
The following attestation bundles were made for apron_tools-0.4.1.tar.gz:
Publisher:
release.yaml on mozilla-ai/apron-tools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
apron_tools-0.4.1.tar.gz -
Subject digest:
afecd7aeb46278eab71ec817ae960a3f521956e9ea70392aced40f0535e87b44 - Sigstore transparency entry: 1585385730
- Sigstore integration time:
-
Permalink:
mozilla-ai/apron-tools@78f2c0d84f6fcdbadf8890661ea688cc6f258a6a -
Branch / Tag:
refs/tags/0.4.1 - Owner: https://github.com/mozilla-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@78f2c0d84f6fcdbadf8890661ea688cc6f258a6a -
Trigger Event:
release
-
Statement type:
File details
Details for the file apron_tools-0.4.1-py3-none-any.whl.
File metadata
- Download URL: apron_tools-0.4.1-py3-none-any.whl
- Upload date:
- Size: 208.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c8920c62a7f9d6f577558205a1f788c896fe26088b08da2b92a205330ff8ce9
|
|
| MD5 |
72bb02126abdef03186f478512c1ffb8
|
|
| BLAKE2b-256 |
a17402de78167de99068c007c5d0a7e477a8cdd59af447223c5762aa5728d74c
|
Provenance
The following attestation bundles were made for apron_tools-0.4.1-py3-none-any.whl:
Publisher:
release.yaml on mozilla-ai/apron-tools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
apron_tools-0.4.1-py3-none-any.whl -
Subject digest:
6c8920c62a7f9d6f577558205a1f788c896fe26088b08da2b92a205330ff8ce9 - Sigstore transparency entry: 1585385852
- Sigstore integration time:
-
Permalink:
mozilla-ai/apron-tools@78f2c0d84f6fcdbadf8890661ea688cc6f258a6a -
Branch / Tag:
refs/tags/0.4.1 - Owner: https://github.com/mozilla-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@78f2c0d84f6fcdbadf8890661ea688cc6f258a6a -
Trigger Event:
release
-
Statement type: