skills / tomo-align
SKILL.md ·
tomo-align
TEMSKILL.mdcommunityAligns tilt series without fiducials using patch tracking, then reconstructs a 3D volume with per-voxel confidence maps for downstream segmentation.
tool call
align_tilt_series
license
Apache-2.0
runtime
python 3.10
stars
★ 0
// emskills.config.json
"skills": ["tomo-align"]
$ npx emskills add tomo-align
Test runs are served by the registry's own sandbox, executed by a model grounded in this SKILL.md — a dry run of the procedure, not the vendor's production code.
Documentation
This skill exposes the call align_tilt_series, running on python 3.10. Install it in your agent with the config below, or exercise it from here — the test panel above sends a real request to the endpoint and prints every step.
1 — install in an agent host (Claude, Cursor, ChatGPT)
{
"mcpServers": {
"tomo-align": {
"type": "http",
"url": "https://emskills.org/api/public/mcp/tomo-align"
}
}
}2 — run it locally through the emskills CLI
{
"mcpServers": {
"tomo-align": {
"command": "npx",
"args": [
"-y",
"emskills",
"run",
"tomo-align"
]
}
}
}3 — call align_tilt_series directly with curl
curl -s https://emskills.org/api/public/mcp/tomo-align \
-H 'content-type: application/json' \
-H 'accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
"params":{"name":"align_tilt_series","arguments":{"input":"./dataset.mrc"}}}'4 — example arguments for the test panel
{
"input": "./dataset.mrc",
"pixel_size_nm": 0.86
}