Standalone HTTP ToolServer for OmniBioAI (REST-backed bioinformatics tools like Enrichr)
Project description
omnibioai-toolserver
A standalone HTTP ToolServer for the OmniBioAI ecosystem.
This service implements the REST contract expected by
omnibioai-tool-exec’s HttpToolServerAdapter, enabling secure, validated, and reproducible execution of REST-backed bioinformatics tools (e.g. Enrichr, annotation services, external APIs).
It is designed to run independently and be registered as a remote execution server in OmniBioAI TES.
Implemented API Contract
The ToolServer exposes the following endpoints:
-
GET /capabilitiesAdvertise supported tools, engines, resources, and runtime policies. -
POST /validateValidate tool inputs and resource requests. -
POST /runsSubmit a tool execution request. -
GET /runs/{id}Retrieve run state (QUEUED,RUNNING,COMPLETED,FAILED). -
GET /runs/{id}/logsRetrieve execution logs. -
GET /runs/{id}/resultsRetrieve structured tool results once the run is completed.
This contract matches the expectations of
omnibioai-tool-exec → HttpToolServerAdapter.
Current Capabilities
-
Engine:
http_toolserver -
Tools:
enrichr_pathway— Pathway enrichment via Enrichr (REST, multipart-safe)
-
Execution model:
- Stateless REST calls
- Structured validation
- Run lifecycle tracking
-
Designed for:
- OmniBioAI agents
- TES-controlled execution
- Future multi-tool expansion (OMIM, GO, UniProt, etc.)
Running the ToolServer
Requirements
- Python ≥ 3.11
Install
pip install -r requirements.txt
Run
uvicorn toolserver_app:create_app --factory --host 0.0.0.0 --port 9090
Verify
curl http://127.0.0.1:9090/capabilities | python -m json.tool
Integration with OmniBioAI TES
Register this service as a server in omnibioai-tool-exec:
- server_id: enrichment_remote
display_name: Enrichment ToolServer
adapter_type: http_toolserver
config:
base_url: "http://127.0.0.1:9090"
Then submit runs through TES:
POST /api/runs/submit
The ToolServer is never called directly by the browser or LLM—all execution is mediated by TES.
Adding a New REST-Backed Tool
- Create a new handler:
toolserver/tools/<new_tool>.py
Implement:
def _validate(inputs, resources) -> {
"ok": bool,
"errors": [],
"warnings": []
}
def _run(inputs, resources, log) -> Dict[str, Any]
- Register the tool in:
toolserver/tools/__init__.py
registry.register(ToolHandler(...))
- Restart the server.
The tool will be automatically advertised via /capabilities.
No changes are required in TES beyond refreshing server capabilities.
Design Principles
-
LLMs never execute tools directly
-
All execution is validated and audited
-
Strict separation between:
- intent (agents / UI)
- orchestration (TES)
- execution (ToolServer)
-
REST-first, container-friendly, and infrastructure-agnostic
Status
- Frozen initial release
- Enrichr pathway enrichment working end-to-end with TES
- Stable API contract
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 omnibioai_toolserver-0.1.2.tar.gz.
File metadata
- Download URL: omnibioai_toolserver-0.1.2.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42aefdc74e0df27503634334bc7debeb0c5b38a4284e9e5921da47fdda6b6723
|
|
| MD5 |
3d673a09a296e501b9f7d6d6bd9f03ec
|
|
| BLAKE2b-256 |
d74d0ccc3d53a775f3896de7cc048bead008e83f9d58af40ee4342d0fa6feffd
|
File details
Details for the file omnibioai_toolserver-0.1.2-py3-none-any.whl.
File metadata
- Download URL: omnibioai_toolserver-0.1.2-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fab4cc71f9f0a8be8dd0fb14fa732dbbe41712a592fd35e2818934004b7baba
|
|
| MD5 |
956e5101a4a5ea008431b02325ab10bf
|
|
| BLAKE2b-256 |
50317a92dbed179204d139ab2284ee41e700fd4d2f938ee29f4a1826817fe9fc
|