Unified Agent Protocol Core SDK - Universal interoperability layer for AI agents and tools
Project description
Unified Agent Protocol (UAP) – Core SDK Specification
Version: 0.1 Alpha
Maintained by: WhoMeta Labs part of WhoMeta Inc.
License: Apache 2.0
Language: Python 3.10+
Repository: Private/internal (planned public release Q3 2025)
✨ Introduction
The Unified Agent Protocol (UAP) is a foundational interoperability layer designed to standardize the definition, registration, execution, and orchestration of AI agents and tools across diverse ecosystems.
UAP is not a runtime or a competing protocol like A2A or MCP – instead, it acts as a universal adapter, enabling seamless translation between heterogeneous agent formats, toolkits, and interface protocols.
The uap-core SDK is the reference Python implementation of this protocol, designed for SDK-level integration, automatic conversions, and full schema introspection.
💡 Motivation
As the AI agent ecosystem evolves, developers face increasing friction when integrating tools across platforms like OpenWebUI, LangChain, Azure OpenAI Agents, OpenAPI-based agents, or proprietary agent chains.
Common challenges include:
- ❌ Fragmented agent and tool definition formats
- ❌ Missing bridges between proprietary agent runtimes
- ❌ Lack of universal abstraction for tool metadata, input types, and execution capabilities
- ❌ Friction when reusing agent definitions across platforms (e.g., MCP ↔ A2A ↔ OpenAPI)
UAP solves this by introducing a common schema + protocol that allows agents and tools to be described once – and deployed, registered, or bridged anywhere.
📦 Key Features (Milestone 1)
- 🧠 Unified JSON model: All agent, tool, trigger, and role definitions follow a strongly typed Pydantic schema.
- 🔌 Multi-source parsers:
parse_openwebui(json): Import tools from OpenWebUI format.parse_langchain(tool): Extract tool metadata from LangChain definitions.parse_openapi(spec): Map OpenAPI endpoints to UAP tools.
- 📤 Export bridges:
to_a2a(agent): Generate A2A-compatible payload.to_mcp(agent): Convert to Model Context Protocol (MCP) schema.to_openapi(tool): Derive standard OpenAPI spec from UAP tool.
- 🖥️ CLI (
uap bind):- Run transformations via command-line:
uap bind --input tools.json --format mcp
- Run transformations via command-line:
- 🛠️ Development-first SDK:
- Works offline, no server required.
- Fully typed Python models (intellisense, validation).
- Optional integration with LangChain, FastAPI, and asyncio runtimes.
🧩 Core Concepts
| Concept | Description |
|---|---|
Tool |
Describes an executable unit with input/output schemas and runtime hints. |
Agent |
A logical actor using one or more tools to fulfill a task or objective. |
Trigger |
Defines when and how agents/tools should activate (event, cron, intent). |
Role |
Describes access & behavioral context (e.g., "analyst", "investigator"). |
OutputSchema |
Optional structure for results / downstream usage. |
UIConfig |
Describes how this entity is represented in GUIs (forms, widgets, prompts). |
All objects are implemented as subclasses of pydantic.BaseModel and support:
- ✅ Full JSON validation
- ✅
.dict()/.json()/.from_json()compatibility - ✅ Versioning fields
- ✅ Extension-safe typing (e.g.,
extra = "allow")
🔄 Ecosystem Bridges
| Target Protocol | Bridge | Status | Description |
|---|---|---|---|
| A2A (Agent-to-Agent) | to_a2a() |
✅ | Convert UAP agent into valid A2A descriptor |
| MCP (Model Context Protocol) | to_mcp() |
✅ | Map UAP agent/tool into MCP-compliant schema |
| OpenAPI 3 | to_openapi() |
✅ | Export UAP tool(s) as OpenAPI endpoints |
These bridges allow inter-protocol operability – for example, developers can register a LangChain tool on OpenWebUI and then expose it in an A2A runtime via UAP translation.
📚 Example Use Case
# Convert OpenWebUI tools into MCP-ready format
uap bind --input tools_openwebui.json --format mcp > mcp_payload.json
🤝 Contributing
Contributions, issues and feature requests are very welcome!
- Fork the repository
- Create your feature branch (
git checkout -b feat/awesome-feature) - Commit your changes (
git commit -m 'feat: add awesome feature') - Push to the branch (
git push origin feat/awesome-feature) - Open a pull request
For full guidelines, please read the CONTRIBUTE guide.
⚖️ License
This project is licensed under the Apache License 2.0 – see the LICENSE file for details.
📑 Changelog
All notable changes will be documented in CHANGELOG.md.
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 unified_agent_protocol-0.1.0.tar.gz.
File metadata
- Download URL: unified_agent_protocol-0.1.0.tar.gz
- Upload date:
- Size: 21.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24751d018b68212e73b4c973ce4a262626a4ef53879a8cdcd885b0ed1899937e
|
|
| MD5 |
e3d0f5dc7ef54a5bc0565c4b40df1351
|
|
| BLAKE2b-256 |
9610ef2e99dda65d7b22eb44cd6249167ac3833cc779d7bc010d93ea2603e4f3
|
File details
Details for the file unified_agent_protocol-0.1.0-py3-none-any.whl.
File metadata
- Download URL: unified_agent_protocol-0.1.0-py3-none-any.whl
- Upload date:
- Size: 25.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e17843dfbe221d20907cac8bdbc358fbb612e68b0c60b96efb29b48a8d2ed10e
|
|
| MD5 |
40bf1b26cfcda7c3a5f3b6d60236807f
|
|
| BLAKE2b-256 |
dfe59b0ab681a760b859904efaca6ed2ee8b7bac849b0435a503737566fb63d6
|