executable-science
Read-only access to this research pilot's task templates, resource catalogue and capability status.
Should I use this
Quality & Safety
Findings (1)
- LOWin platform_status
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"executable-science": {
"url": "https://executable.science/api/mcp"
}
}
}Remote endpoints
https://executable.science/api/mcpstreamable-httpWhat it can do
Tool inventory
Tools (5)
🟢get_resource(resource_id)
Read one catalogued public resource by its identifier, including its recorded rights and provenance.
Input Schema
{
"type": "object",
"properties": {
"resource_id": {
"type": "string",
"description": "Catalogue identifier."
}
},
"required": [
"resource_id"
],
"additionalProperties": false
}🟢get_task_template(task_id)
Read one frozen task template in full: its question, inputs, assumptions, comparison basis, stated limitations and revision digest. The digest pins the exact revision an attempt was prepared against.
Input Schema
{
"type": "object",
"properties": {
"task_id": {
"type": "string",
"description": "Task template identifier."
}
},
"required": [
"task_id"
],
"additionalProperties": false
}🟢list_task_templates
List the bounded, frozen questions this platform publishes for attempt. Each carries a revision digest and its own stated limitations.
Input Schema
{
"type": "object",
"additionalProperties": false
}⚪platform_status
Report the current stage and, for every capability, whether it is available and the stated reason. Several capabilities are gated; this tool is the authoritative answer on which.
Input Schema
{
"type": "object",
"additionalProperties": false
}🟢search_resources(query, kind, limit)
Search the public catalogue of datasets, software packages, published articles, method references and original experiments by title.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Words matched against titles."
},
"kind": {
"type": "string",
"enum": [
"dataset",
"software_package",
"published_article",
"method_reference",
"original_experiment"
]
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 20
}
},
"additionalProperties": false
}Community
Evidence