We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d53ec59 commit 8c6b58bCopy full SHA for 8c6b58b
README.md
@@ -29,18 +29,27 @@ StackOne AI provides a unified interface for accessing various SaaS tools throug
29
30
```bash
31
pip install stackone-ai
32
+
33
+# Or with uv
34
+uv add stackone-ai
35
```
36
37
### Optional Features
38
39
40
# Install with MCP server support (requires Python 3.10+)
41
+uv add 'stackone-ai[mcp]'
42
+# or
43
pip install 'stackone-ai[mcp]'
44
45
# Install with CrewAI examples (requires Python 3.10+)
46
+uv add 'stackone-ai[examples]'
47
48
pip install 'stackone-ai[examples]'
49
50
# Install everything
51
+uv add 'stackone-ai[mcp,examples]'
52
53
pip install 'stackone-ai[mcp,examples]'
54
55
0 commit comments