Metadata-Version: 2.4
Name: sciencetostartup-sdk
Version: 0.1.0
Summary: Official Python client for ScienceToStartup proof discovery, MCP, and workspace flows.
Author: ScienceToStartup
License: MIT
Project-URL: Homepage, https://github.com/musa8026/science-to-startup-sdk
Project-URL: Repository, https://github.com/musa8026/science-to-startup-sdk
Project-URL: Issues, https://github.com/musa8026/science-to-startup-sdk/issues
Keywords: science,startup,mcp,api,research,commercialization
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.31.0

# sciencetostartup-sdk

Official Python client for ScienceToStartup proof discovery, remote MCP, and
workspace execution flows.

## Install

```bash
pip install sciencetostartup-sdk
```

## Quickstart

```python
from sciencetostartup_sdk import ScienceToStartupClient

client = ScienceToStartupClient(api_key="s2s_YOUR_KEY")
papers = client.search_papers(query="voice agents", limit=5)
```
