Set up OpenAI
Connect the OpenAI Agents SDK to ScienceToStartup using the remote MCP endpoint. Your agents can discover papers, search signals, and execute workspace actions.
Remote MCP transport
Get your API key
Create a developer key at /developers/keys. You will use this key as a Bearer token for all MCP requests.
Configure OpenAI
Add ScienceToStartup as a remote MCP server in your OpenAI agent configuration. Pass the endpoint URL and your key in the Authorization header.
{
"mcpServers": {
"sciencetostartup": {
"url": "https://sciencetostartup.com/api/mcp",
"headers": {
"Authorization": "Bearer s2s_YOUR_KEY"
}
}
}
}Verify the connection
Run initialize, then tools/list to confirm the server responds. Call whoami to verify your authenticated identity and visible workspaces.
# Test with curl
curl -X POST https://sciencetostartup.com/api/mcp \
-H "Authorization: Bearer s2s_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"initialize","id":1}'Try it
Search for a paper or query the Signal Canvas to confirm end-to-end connectivity. From here you can build agent workflows that discover research, run workspace actions, and generate launch packs.
# Search papers
curl -X POST https://sciencetostartup.com/api/mcp \
-H "Authorization: Bearer s2s_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"search_papers","arguments":{"query":"transformer efficiency"}},"id":2}'