Comparison
Use ScienceToStartup from Claude through remote MCP for proof retrieval, paper triage, and execution handoffs.
This page is the Claude-specific packaging of the same hosted MCP surface. It is useful when your main workflow is answer generation, planning, and stepwise tool use over proof surfaces.
Workflow
Proof Surface Example
Durable research-area page with paper counts, trend direction, authors, and top questions.
Open proof surfacecurl
curl -X POST "https://sciencetostartup.com/api/mcp" \
-H "Authorization: Bearer s2s_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "search_papers",
"arguments": {"query":"commercializable multimodal planning","limit":5}
}
}'Python
import requests
payload = {
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "search_papers",
"arguments": {"query":"commercializable multimodal planning","limit":5},
},
}
response = requests.post(
"https://sciencetostartup.com/api/mcp",
headers={
"Authorization": "Bearer s2s_YOUR_KEY",
"Content-Type": "application/json",
},
json=payload,
timeout=30,
)TypeScript
const response = await fetch("https://sciencetostartup.com/api/mcp", {
method: "POST",
headers: {
Authorization: "Bearer s2s_YOUR_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify({
jsonrpc: "2.0",
id: 1,
method: "tools/call",
params: {
name: "search_papers",
arguments: {"query":"commercializable multimodal planning","limit":5},
},
}),
});