{"name":"org.virtualflybrain/vfb3-mcp","slug":"virtualflybrain-vfb3-mcp","title":"VirtualFlyBrain","description":"MCP server for Drosophila neuroscience data from VirtualFlyBrain","url":"https://mcp.market/server/virtualflybrain-vfb3-mcp","rating":null,"grade":"B","score":77,"certified":false,"status":"active","category":"other","tags":[],"presence":{"score":32,"stars":8,"forks":2,"downloads_week":null,"last_push_at":"2026-09-10T15:55:16.000Z","license":"MIT"},"uptime":{"percent":100,"checks":6,"ok":6,"last_checked_at":"2026-09-21T00:40:54.838Z","last_ok_at":"2026-09-21T00:40:54.838Z","latency_ms":90},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/VirtualFlyBrain/VFB3-MCP","website":"https://virtualflybrain.org","version":"1.11.2","remotes":[{"type":"streamable-http","url":"https://vfb3-mcp.virtualflybrain.org"}],"packages":[],"tools":[{"name":"get_hierarchy","description":"Build a hierarchy tree for a VFB term, showing ancestors (parents) and/or descendants (children). Use relationship \"part_of\" for brain region structure (e.g. \"what are the parts of the mushroom body?\") and \"subclass_of\" for cell type hierarchies (e.g. \"what types of Kenyon cell are there?\"). Descendants are returned as a nested tree for both relationship types. Ancestors are returned as a nested chain, filtered to nervous system terms for part_of. Start with max_depth=1 for direct parents/children, and offer to go deeper if the user wants more detail.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"id":{"type":"string","description":"VFB term ID (e.g. FBbt_00005801 for mushroom body, FBbt_00003686 for Kenyon cell)"},"relationship":{"type":"string","enum":["part_of","subclass_of"],"description":"Type of hierarchy: \"part_of\" for brain region structure, \"subclass_of\" for cell type taxonomies"},"direction":{"type":"string","enum":["descendants","ancestors","both"],"description":"Which direction to explore (default: \"both\")","default":"both"},"max_depth":{"type":"number","description":"Number of levels to expand. 1 = direct children/parents only. Higher values go deeper. -1 = full tree (use with caution on broad terms). Default: 1.","default":1}},"required":["id","relationship"]}},{"name":"get_known_neurotransmitters","description":"Get the KNOWN (curated) neurotransmitter(s) for a Drosophila neuron class and its subclasses, from the ontology's classification rather than per-instance predictions — so there is no confidence. Use this for \"what neurotransmitter is <cell type> known to use?\" when you want the curated/established answer. Returns one row per (cell type, neurotransmitter): {cell_type_id, cell_type, nt_id, nt_label}, where the neurotransmitter is a GO secretion term (same id space as get_predicted_neurotransmitters). Empty when the ontology asserts none — in that case try get_predicted_neurotransmitters for the data-driven prediction. CONSTRAINTS: neuron class terms only (FBbt id or label); use search_terms with filter_types [\"neuron\",\"class\"] to canonicalize.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"neuron_type":{"type":"string","description":"Neuron class — OWL ID (e.g. \"FBbt_00003797\") or label (e.g. \"Tm9\"). Means the class and all of its subclasses."}},"required":["neuron_type"]}},{"name":"get_predicted_neurotransmitters","description":"Get the PREDICTED neurotransmitter(s) for a Drosophila neuron class — itself or any subclass — from per-instance connectome predictions (each reconstructed neuron carries a predicted transmitter with a confidence). Use this for \"what neurotransmitter does <cell type> use?\" when you want the data-driven prediction and its confidence. By default results are aggregated to flat per-class rows (one per cell type × neurotransmitter) with instance counts, percent_of_class and mean_confidence; set aggregate=false for one row per individual neuron. Set split_by_dataset=true to get one row per (cell type, neurotransmitter, dataset) so you can see agreement across connectomes. The neurotransmitter is reported as a GO secretion term (nt_id/nt_label), the same id space as get_known_neurotransmitters. This is distinct from get_known_neurotransmitters, which returns the ontology-curated classification without confidence. CONSTRAINTS: neuron class terms only (FBbt id or label); use search_terms with filter_types [\"neuron\",\"class\"] to canonicalize. RECOMMENDED: exclude_dbs defaults to [\"hb\",\"fafb\"]; pass [] for all datasets.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"neuron_type":{"type":"string","description":"Neuron class — OWL ID (e.g. \"FBbt_00003797\") or label (e.g. \"Tm9\"). Means the class and all of its subclasses."},"aggregate":{"type":"boolean","description":"If true (default), aggregate to flat per-class rows {cell_type_id, cell_type, nt_id, nt_label, instances, percent_of_class, mean_confidence}. If false, return one row per individual neuron {..., neuron_id, neuron_name, confidence, references, dataset}.","default":true},"split_by_dataset":{"type":"boolean","description":"If true (aggregate only), emit one row per (cell type, neurotransmitter, dataset) with a dataset column, so cross-connectome agreement is visible. Default false aggregates over all included datasets.","default":false},"exclude_dbs":{"type":"array","items":{"type":"string"},"description":"Dataset symbols to exclude (default [\"hb\",\"fafb\"]). Pass [] to include all datasets. Same symbols as query_connectivity / list_connectome_datasets."},"min_confidence":{"type":"number","description":"Drop predictions below this confidence (0..1). Default 0 (keep all).","default":0}},"required":["neuron_type"]}},{"name":"get_term_info","description":"Get term info for a VFB or anatomy ontology entity (VFB_*, FBbt_*, etc.). THIS IS THE QUERY DISCOVERY TOOL: the response's \"Queries\" array lists the valid query_type values that run_query accepts for this entity. ALWAYS call get_term_info before run_query unless you already obtained the query_type from a previous get_term_info call in this conversation. Returns: SuperTypes (classification), Tags (data flags like has_image, has_neuron_connectivity), Queries (valid query_types for run_query), RelatedTools (other MCP tools applicable to this entity, with default_args ready to copy — e.g. get_hierarchy with subclass_of for cell types or part_of for nervous-system regions), Images (keyed by template brain ID), Publications, Synonyms. Supports batch — pass an array of IDs to fetch in parallel; batch results are returned as a JSON object keyed by ID. To build VFB browser URLs from the Images field: https://v2.virtualflybrain.org/org.geppetto.frontend/geppetto?id=<VFB_ID>&i=<TEMPLATE_ID>,<IMAGE_ID1>,<IMAGE_ID2> — id= sets the focus term and i= lists images for the 3D viewer (template ID must be first in i= to set the coordinate space).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"id":{"oneOf":[{"type":"string","description":"A single VFB ID (e.g., VFB_jrcv0i43)"},{"type":"array","items":{"type":"string"},"description":"An array of VFB IDs to fetch in batch (e.g., [\"VFB_jrcv0i43\", \"VFB_00101567\"])"}],"description":"One or more VFB IDs to look up"},"force_refresh":{"type":"boolean","description":"Bypass the response cache and recompute this result. Expensive — leave it unset on a first call. Set it ONLY to re-try a call that, earlier in this same conversation, returned a result that was clearly wrong, stale, or reported as failed. Never set it on more than one retry of the same call."}},"required":["id"]}},{"name":"list_connectome_datasets","description":"List available connectome datasets with their labels and symbols. Use the returned symbols when constructing exclude_dbs arguments for query_connectivity. Common datasets include Hemibrain (hb), FAFB (fafb), MANC, and others. Call this tool if unsure which dataset symbols are valid.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{}}},{"name":"list_search_facets","description":"List the type names search_terms can filter, exclude, boost or demote by, with the number of terms carrying each one. Call this instead of guessing: there are over 200 names, they are the index's own annotations rather than a curated list, and they change as data is added. Use contains to narrow (e.g. contains=\"lineage\" for the ~120 lineage clones, contains=\"connectivity\" to find the connectome facets). The counts tell you whether a name is broad or niche — \"entity\" covers everything, a single lineage covers a handful.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"contains":{"type":"string","description":"Only return type names containing this text. Matched case- and separator-insensitively, so \"nervous system\" finds \"Nervous_system\"."}}}},{"name":"query_connectivity","description":"Query synaptic connectivity between Drosophila neuron classes across ALL connectome datasets simultaneously for comparative connectomics. This is NOT pre-cached — it runs live queries, so expect slow responses (up to several minutes). Set both upstream_type AND downstream_type to filter connections between two specific neuron classes (e.g., \"What Tm1→T3 connections exist across all datasets?\"). At least one of upstream_type or downstream_type is required. CONSTRAINTS: Only accepts neuron class terms (OWL IDs like FBbt_00003789 or labels like \"transmedullary neuron Tm1\") — anatomical regions or neuropils (e.g., \"lobula\", \"medulla\") are NOT accepted. NOT suitable for individual neuron-to-neuron connections — for pre-computed connections of a single individual neuron, use run_query with NeuronNeuronConnectivityQuery instead. NOT for muscle/sense organ connections. RECOMMENDED DEFAULTS: weight=5, exclude_dbs=[\"hb\",\"fafb\"] unless user specifies otherwise. For both-ends queries, start with weight≥50 to avoid timeouts. RESULT SIZE: a broad query is enormous (a single class at weight=5 can be over 50,000 connections), so results are ranked strongest-first and paged — you get limit rows (default 50) plus a summary computed over ALL of them: totals, per-dataset counts, distinct neuron counts, and the top class pairs. Answer from the summary and quote a handful of rows; only page with offset if the user asks for specific further rows. WORKFLOW: Confirm parameters with user before querying. Use search_terms with filter_types [\"neuron\",\"class\"] to validate/canonicalize neuron type labels. If zero results, try relaxation: lower weight to 1, then remove exclude_dbs filter, then try group_by_class=true — report what worked and let user decide. group_by_class=true is usually the better first call on a broad query: it rolls the connections up over the subclass hierarchy — a row per (upstream level, downstream level) with data, up to the queried term(s) — instead of returning every neuron pair. Because a connection counts toward every ancestor pair in scope, per-row pairwise_connections and total_weight do NOT sum to the raw connection counts, and a row appears for the queried class itself as well as each subclass with data.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"upstream_type":{"type":"string","description":"Upstream (presynaptic) neuron class — OWL ID (e.g., \"FBbt_00003789\") or full label (e.g., \"transmedullary neuron Tm1\"). Must be a neuron type/class, NOT an anatomical region. Use search_terms with filter_types [\"neuron\",\"class\"] to validate/canonicalize labels before querying."},"downstream_type":{"type":"string","description":"Downstream (postsynaptic) neuron class — OWL ID or full label. Must be a neuron type/class, NOT an anatomical region. If user asks about connectivity to a brain region, first find neuron classes in that region using search_terms, then query for those classes."},"weight":{"type":"number","description":"Minimum synapse count threshold (recommended default: 5). Lower to 1 if initial query returns zero results as first relaxation step."},"group_by_class":{"type":"boolean","description":"If true, aggregate by class rolled up over the subclass hierarchy: a row appears for the queried class AND each subclass with data (a connection counts toward every ancestor pair up to the queried term(s), so per-row pairwise_connections / total_weight do not sum to the raw counts). Returns total_weight, average_weight, percent_connected and pairwise_connections per class pair, ranked by pairwise_connections. If false (default), returns individual neuron-to-neuron rows."},"exclude_dbs":{"type":"array","items":{"type":"string"},"description":"Dataset symbols to exclude (recommended default: [\"hb\", \"fafb\"] to focus on newer datasets). Pass empty array [] to include all datasets. Must be the exact `symbol` field from list_connectome_datasets — currently BANC, fw, ol, mv, hb, mc, fafb, l1em. An unrecognised symbol is silently ignored by the server rather than reported, so a dataset name (\"hemibrain\", \"male-cns\", \"flywire\") excludes nothing and gives no warning. Call list_connectome_datasets rather than guessing."},"limit":{"type":"number","description":"How many connection rows to return, strongest first (default 50). The summary always covers every connection found, not just the returned rows. Pass 0 for all rows — only do this on a query you already know is small, as broad queries return tens of thousands.","default":50},"offset":{"type":"number","description":"Row to start from within the strongest-first ranking (default 0). Re-running with the same limit and the next offset walks down the list.","default":0}}}},{"name":"resolve_combination","description":"Resolve an unresolved split-GAL4 combination name or synonym into its FBco ID and component hemidrivers. Pass the raw combination text exactly as the user wrote it (for example \"MB002B\" or \"SS04495\"). Do NOT pass an FBco ID; if you already have one, use the downstream tool directly. Uses tiered resolution: exact name → synonym → broad pattern match. Returns FBco ID, combination name, matched synonym (if applicable), and component allele IDs/names. IMPORTANT: When match is via synonym, confirm the resolved combination with the user before proceeding (e.g., \"Your search for 'MB002B' matched [formal name] (FBco...) via synonym. Shall I proceed?\"). If multiple matches, show disambiguation list and ask user to choose.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"name":{"type":"string","description":"Unresolved split-GAL4 combination name or synonym exactly as written by the user (e.g., \"MB002B\", \"SS04495\"). Do NOT pass an FBco ID here."}},"required":["name"]}},{"name":"resolve_entity","description":"Resolve an unresolved FlyBase-related query string into VFB/FlyBase IDs and metadata. Pass the raw text exactly as the user wrote it (for example \"P{VT054895-GAL4.DBD}\", \"Hb9-GAL4\", \"SS04495\", \"MB002B\", \"PAM cluster\", or \"dpp\"). Do NOT pass resolved IDs such as FBgn/FBal/FBti/FBco/FBst or VFB IDs; if you already have an ID, use the downstream tool directly. Uses tiered resolution: exact name → synonym → broad pattern match. Returns match_type (EXACT/SYNONYM/BROAD), feature ID, name, type, and synonyms. IMPORTANT: When match_type is SYNONYM or BROAD, always confirm the resolved entity with the user before proceeding to further queries. If multiple matches are returned, show a disambiguation list and ask the user to choose. This tool queries FlyBase Chado — for VFB ontology lookups (anatomical terms, neuron class IDs) use search_terms instead.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"name":{"type":"string","description":"Unresolved FlyBase-related query string from the user. Pass the raw name/synonym exactly as written (e.g., \"P{VT054895-GAL4.DBD}\", \"Hb9-GAL4\", \"SS04495\", \"MB002B\", \"PAM cluster\", \"dpp\"). Do NOT pass an already resolved FlyBase or VFB ID."}},"required":["name"]}},{"name":"run_query","description":"Run a pre-computed query on a VFB entity. REQUIRED WORKFLOW: (1) call get_term_info on the ID first; (2) read the response's \"Queries\" array; (3) pass one of those values as query_type. Calling run_query with a guessed query_type will return an error. If a query returns empty rows or an error, the entity does not support that query_type or has no data for it — try a different query_type from the Queries array, or try a related entity (e.g. its parent class via get_hierarchy). Empty results do NOT mean the answer is unknown — only that this call did not return it. NEVER fabricate results from training data when a query is empty; tell the user clearly what was tried. NEVER pass tool names like \"get_term_info\" or \"search_terms\" as query_type — those are separate tools. Common query_types by entity kind: PaintedDomains, AllAlignedImages, AlignedDatasets, AllDatasets (templates); SimilarMorphologyTo, NeuronInputsTo, NeuronNeuronConnectivityQuery, NeuronRegionConnectivityQuery (individual neurons); ListAllAvailableImages, SubclassesOf, PartsOf, NeuronsPartHere, NeuronsSynaptic, ExpressionOverlapsHere, DownstreamClassConnectivity, UpstreamClassConnectivity (classes). Supports batch — pass an array of IDs (same query_type) or a \"queries\" array of {id, query_type} pairs; batch results are keyed by \"ID::query_type\". Results are PAGED: the first 25 rows by default (change with limit/offset) plus the true total as \"count\". ALWAYS read \"count_status\" before quoting \"count\": \"exact\" means count is the true total; \"unavailable\" means the query FAILED upstream and count is -1, which is NOT zero and must never be reported as \"no results\" — read \"_note\" and tell the user the query could not be run. Image/thumbnail columns are excluded by default to save space - pass include_images=true to include them. FlyBase integration is via query_types too: FindStocks (fly stocks for a FlyBase feature ID - FBgn/FBal/FBti/FBtp/FBco/FBst) and FindComboPublications (publications for an FBco split-GAL4 combination). Get those IDs from resolve_entity / resolve_combination first, then run_query with the ID and the query_type. Include FlyBase links in output: https://flybase.org/reports/{ID}.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"id":{"oneOf":[{"type":"string","description":"A single VFB ID (e.g., VFB_00101567)"},{"type":"array","items":{"type":"string"},"description":"An array of VFB IDs — all will use the same query_type"}],"description":"One or more VFB IDs to query"},"query_type":{"type":"string","description":"A valid query type from the Queries array returned by get_term_info. Used for single id or array of ids."},"queries":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"VFB ID"},"query_type":{"type":"string","description":"Query type for this ID"}},"required":["id","query_type"]},"description":"Array of {id, query_type} pairs for mixed batch queries. When provided, id and query_type params are ignored."},"limit":{"type":"number","description":"Max rows returned per call (default 25). The true total is always returned as \"count\"; broad queries (e.g. ListAllAvailableImages, or NeuronsSynaptic on a whole region) can have thousands to hundreds of thousands of rows. Use 0 for all rows (still capped server-side ~25000 - avoid for broad queries)."},"offset":{"type":"number","description":"Row offset for paging (default 0). To get the next page, re-run with offset increased by limit; \"count\" gives the total."},"include_images":{"type":"boolean","description":"Include the image/thumbnail column in result rows. Default false: the thumbnail is a long markdown image string that is rarely useful to reason over and greatly inflates every row, so it is stripped and the response says so in _note. Set true to include it (e.g. to build image URLs)."},"force_refresh":{"type":"boolean","description":"Bypass the response cache and recompute this result. Expensive — leave it unset on a first call. Set it ONLY to re-try a call that, earlier in this same conversation, returned a result that was clearly wrong, stale, or reported as failed. Never set it on more than one retry of the same call. A failed query (count -1) is already retried once automatically, so you do not need this for that case."}}}},{"name":"search_terms","description":"Search VFB terms. This is the search virtualflybrain.org itself runs — the same Solr query, the same ranking — so what comes back first here is what a user would see first on the site.\n\nUSE filter_types BY DEFAULT. Unfiltered searches mix scRNAseq artifacts and developmental stages in with the entity the user wants.\n\nCommon filter_types recipes:\n- Neuron classes: [\"neuron\", \"class\"]\n- Individual neurons with images: [\"neuron\", \"has_image\"]\n- Neurons with connectome data: [\"neuron\", \"has_neuron_connectivity\"]\n- Brain regions / neuropils: [\"anatomy\"]\n- Genes: [\"gene\"]\n- Driver lines / expression patterns: [\"expression_pattern\"]\n- Datasets: [\"dataset\"]\n\nThere are over 200 type names and they change as data is added, so do NOT guess them: call list_search_facets to see the current vocabulary (optionally filtered, e.g. contains=\"lineage\"). Names are matched case- and separator-insensitively, and a name that does not exist is an error with suggestions rather than a silently empty result.\n\nDeprecated terms are excluded by the search itself — you do not need exclude_types: [\"deprecated\"], and adding it is harmless but pointless.\n\nStage filtering: VFB covers adult, larval, and embryonic data, and many anatomical FBbt classes are stage-agnostic. Do NOT add \"adult\" or \"larva\" to filter_types by default — only add them when the user is explicit about a stage (e.g. \"adult Kenyon cells\", \"larval mushroom body\"). Default searches should leave stage out so stage-agnostic classes and all life stages are visible.\n\nUseful flags:\n- unique=true (the default) → one row per term. Turn it OFF only when you need to see WHICH synonym matched; with unique=false a term appears once per matching synonym, so \"Kenyon cell\" can return the same ID several times.\n- minimize_results=true → top 10, essential fields only, for exploratory searches.\n- auto_fetch_term_info=true → if an exact label match is found, returns get_term_info in the same response.\n- boost_types=[\"has_image\", \"has_neuron_connectivity\"] → float data-rich entities to the top of the list without excluding anything else.\n- demote_types=[\"expression_pattern_fragment\"] → sink noisy types to the bottom of the list instead of removing them.\n\nIf the search returns no good matches, do NOT fall back to training-data answers — try alternative spellings, synonyms, broader terms, or different filter_types.\n\nMultiple filter_types are ANDed (results must match ALL). Multiple exclude_types are ORed (any match excludes). boost_types and demote_types re-order without excluding; boost wins if a term matches both.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"query":{"type":"string","description":"Search query (e.g., medulla)"},"filter_types":{"type":"array","items":{"type":"string"},"description":"Filter results to only include items matching ALL of these facets_annotation types (AND logic). Use list_search_facets for valid names."},"exclude_types":{"type":"array","items":{"type":"string"},"description":"Exclude results matching ANY of these facets_annotation types (OR logic). Deprecated terms are already excluded."},"boost_types":{"type":"array","items":{"type":"string"},"description":"Float results matching these facets_annotation types to the top of the ranked list without excluding others"},"demote_types":{"type":"array","items":{"type":"string"},"description":"Sink results matching these facets_annotation types to the bottom of the ranked list without excluding them. Ignored for a type that also appears in boost_types."},"unique":{"type":"boolean","description":"One row per term (default true). Set false to get a row per matching synonym, which shows WHICH name matched at the cost of repeating IDs.","default":true},"start":{"type":"number","description":"Pagination start index (default 0) - use to get results beyond the first page","default":0},"rows":{"type":"number","description":"Number of results to return (default 150, max 1000) - use smaller numbers for focused searches","default":150,"maximum":1000},"minimize_results":{"type":"boolean","description":"When true, return at most 10 results with only the essential fields. For exact matches, return only the matching result.","default":false},"auto_fetch_term_info":{"type":"boolean","description":"When true and an exact label match is found, automatically fetch and include term info in the response.","default":false}},"required":["query"]}}],"scan":{"score":77,"grade":"B","scanned_at":"2026-09-19T20:28:36.729Z","report":{"scannerVersion":"0.1.5","scannedAt":"2026-09-19T20:28:36.608Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":17,"max":20,"notes":["remote reachable in 2470ms"]},"poisoning":{"score":13,"max":15,"notes":["11 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 1 write-action tools with no auth"]},"maintenance":{"score":15,"max":15,"notes":["last push 9 days ago"]},"identity":{"score":10,"max":10,"notes":["registry namespace matches repository owner","GitHub account older than a year","website matches verified namespace"]}},"findings":[{"id":"auth.open-write","severity":"high","component":"auth","title":"Write-action tools reachable without authentication"},{"id":"poison.long-description","severity":"low","component":"poisoning","title":"Unusually long tool description (over 2,000 characters)","evidence":"tool run_query: …Run a pre-computed query on a VFB entity. REQUIRED WORKFLOW: (1) call get_term_info on the ID first; (2) read the response's \"Queries\" array; (3) pass one of those values as query_type. Calling run_query with a guessed query_type will return an error. If a query returns empty rows or an error, the entity does not support that query_type or has no data for it — try a different query_type from the Queries array, or try a related entity (e.g. its parent class via get_hierarchy). Empty results do NOT mean the answer is unknown — only that this call did not return it. NEVER fabricate results from training data when a query is empty; tell the user clearly what was tried. NEVER pass tool names like \"get_term_info\" or \"search_terms\" as query_type — those are separate tools. Common query_types by entity kind: PaintedDomains, AllAlignedImages, AlignedDatasets, AllDatasets (templates); SimilarMorphologyTo, NeuronInputsTo, NeuronNeuronConnectivityQuery, NeuronRegionConnectivityQuery (individual neurons); ListAllAvailableImages, SubclassesOf, PartsOf, NeuronsPartHere, NeuronsSynaptic, ExpressionOverlapsHere, DownstreamClassConnectivity, UpstreamClassConnectivity (classes). Supports batch — pass an array of IDs (same query_type) or a \"queries\" array of {id, query_type} pairs; batch results are keyed by \"ID::query_type\". Results are PAGED: the first 25 rows by default (change with limit/offset) plus the true total as \"count\". ALWAYS read \"count_status\" before quoting \"count\": \"exact\" means count is the true total; \"unavailable\" means the query FAILED upstream and count is -1, which is NOT zero and must never be reported as \"no results\" — read \"_note\" and tell the user the query could not be run. Image/thumbnail columns are excluded by default to save space - pass include_images=true to include them. FlyBase integration is via query_types too: FindStocks (fly stocks for a FlyBase feature ID - FBgn/FBal/FBti/FBtp/FBco/FBst) and FindComboPublications (publications for an FBco split-GAL4 combination). Get those IDs from resolve_entity / resolve_combination first, then run_query with the ID and the query_type. Include FlyBase links in output: https://flybase.org/reports/{ID}.…"}],"inputs":{"probes":[{"url":"https://vfb3-mcp.virtualflybrain.org","reachable":true,"authRequired":false,"latencyMs":2470,"serverInfo":{"name":"vfb3-mcp-server","version":"1.11.2"}}],"packages":[],"repo":{"found":true,"owner":"VirtualFlyBrain","repo":"VFB3-MCP","archived":false,"pushedAt":"2026-09-10T15:55:16Z","stars":8,"forks":2,"openIssues":1,"ownerType":"Organization","ownerAvatarUrl":"https://avatars.githubusercontent.com/u/6074093?v=4","ownerCreatedAt":"2013-11-30T17:34:36Z","license":"MIT"},"icon":{"url":"https://virtualflybrain.org/favicons/favicon.ico","source":"registry","width":256,"height":256},"presence":{"stars":8,"forks":2,"downloadsWeek":null,"license":"MIT","lastPushAt":"2026-09-10T15:55:16.000Z","score":32}}}},"grade_history":[],"reviews":[]}