Example
API and MCP Platform for Turning Research Papers into Buildable Product Signals.
This path assumes you already have a workspace seed and want to turn it into a buildable artifact. The same source lineage remains visible from the public paper page through the final launch-pack output.
curl
curl -X POST https://sciencetostartup.com/api/mcp \
-H "Authorization: Bearer s2s_YOUR_KEY" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"workspace_run_action","arguments":{"workspace_id":"YOUR_WORKSPACE_ID","run_kind":"launch_pack"}}}'Python
import requests
response = requests.post(
"https://sciencetostartup.com/api/mcp",
headers={
"Authorization": "Bearer s2s_YOUR_KEY",
"Content-Type": "application/json",
"Accept": "application/json, text/event-stream",
},
json={
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "workspace_run_action",
"arguments": {
"workspace_id": "YOUR_WORKSPACE_ID",
"run_kind": "launch_pack",
},
},
},
timeout=30,
)TypeScript
const response = await fetch("https://sciencetostartup.com/api/mcp", {
method: "POST",
headers: {
Authorization: "Bearer s2s_YOUR_KEY",
"Content-Type": "application/json",
Accept: "application/json, text/event-stream",
},
body: JSON.stringify({
jsonrpc: "2.0",
id: 1,
method: "tools/call",
params: {
name: "workspace_run_action",
arguments: {
workspace_id: "YOUR_WORKSPACE_ID",
run_kind: "launch_pack",
},
},
}),
});