skills / fib-mill-seg
SKILL.md ·
fib-mill-seg
FIBMCP servercommunitySegments the mill volume from live FIB imagery and plans a lift-out path for serial-sectioning workflows, including lamella thickness targets and redeposition avoidance.
tool call
plan_liftout
license
MIT
runtime
python 3.11
stars
★ 0
// emskills.config.json
"skills": ["fib-mill-seg"]
$ npx emskills add fib-mill-seg
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 plan_liftout, running on python 3.11. 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": {
"fib-mill-seg": {
"type": "http",
"url": "https://emskills.org/api/public/mcp/fib-mill-seg"
}
}
}2 — run it locally through the emskills CLI
{
"mcpServers": {
"fib-mill-seg": {
"command": "npx",
"args": [
"-y",
"emskills",
"run",
"fib-mill-seg"
]
}
}
}3 — call plan_liftout directly with curl
curl -s https://emskills.org/api/public/mcp/fib-mill-seg \
-H 'content-type: application/json' \
-H 'accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
"params":{"name":"plan_liftout","arguments":{"input":"./dataset.mrc"}}}'4 — example arguments for the test panel
{
"input": "./dataset.mrc",
"pixel_size_nm": 0.86
}