Set up ChatGPT
Connect ChatGPT to ScienceToStartup using the remote MCP endpoint. ChatGPT can discover research, query signals, and execute workspace actions through the same API surface used by all integrations.
Remote MCP in ChatGPT
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 ChatGPT
Add ScienceToStartup as a remote MCP server in ChatGPT settings. Enter the endpoint URL and provide your developer key in the Authorization header.
{
"mcpServers": {
"sciencetostartup": {
"url": "https://sciencetostartup.com/api/mcp",
"headers": {
"Authorization": "Bearer s2s_YOUR_KEY"
}
}
}
}Verify the connection
ChatGPT will show the ScienceToStartup tools once the MCP server is configured. Ask ChatGPT to list available tools or run whoami to confirm the connection.
# Test the endpoint directly:
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
Ask ChatGPT to search for papers or explore research topics. ChatGPT will call the MCP tools and return structured results inline.
# In ChatGPT, ask:
"Search ScienceToStartup for papers on drug discovery with AI"
# ChatGPT will use the search_papers tool via MCP
# and present results in the conversation.