opencontextprotocol-sdk 0.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ # Meta-package — imports are provided by ocp-server, ocp-client, and ocp-router.
@@ -0,0 +1,57 @@
1
+ Metadata-Version: 2.4
2
+ Name: opencontextprotocol-sdk
3
+ Version: 0.2.0
4
+ Summary: Open Context Protocol — one-line install for server, client, and hybrid routing
5
+ Project-URL: Homepage, https://opencontextprotocol.ai
6
+ Project-URL: Repository, https://github.com/Rajesh1213/OCP
7
+ Project-URL: Documentation, https://opencontextprotocol.ai/routing
8
+ Project-URL: Bug Tracker, https://github.com/Rajesh1213/OCP/issues
9
+ License: Apache-2.0
10
+ Requires-Python: >=3.11
11
+ Requires-Dist: ocp-client>=0.2.0
12
+ Requires-Dist: ocp-server>=0.2.0
13
+ Provides-Extra: anthropic
14
+ Requires-Dist: ocp-router[anthropic]>=0.2.0; extra == 'anthropic'
15
+ Provides-Extra: full
16
+ Requires-Dist: ocp-router[anthropic,openai]>=0.2.0; extra == 'full'
17
+ Provides-Extra: openai
18
+ Requires-Dist: ocp-router[openai]>=0.2.0; extra == 'openai'
19
+ Provides-Extra: router
20
+ Requires-Dist: ocp-router>=0.2.0; extra == 'router'
21
+ Description-Content-Type: text/markdown
22
+
23
+ # opencontextprotocol-sdk
24
+
25
+ One-line install for [Open Context Protocol](https://opencontextprotocol.ai).
26
+
27
+ ```bash
28
+ pip install opencontextprotocol-sdk # server + client
29
+ pip install opencontextprotocol-sdk[router] # + hybrid local/cloud routing (Ollama)
30
+ pip install opencontextprotocol-sdk[anthropic] # + Anthropic Claude paid backend
31
+ pip install opencontextprotocol-sdk[openai] # + OpenAI paid backend
32
+ pip install opencontextprotocol-sdk[full] # everything
33
+ ```
34
+
35
+ This is a meta-package. It installs and keeps in sync:
36
+
37
+ | Package | What it provides |
38
+ |---|---|
39
+ | `ocp-server` | MCP server — runs in your IDE via `.mcp.json` |
40
+ | `ocp-client` | Python async client SDK |
41
+ | `ocp-router` | Hybrid routing layer (optional) |
42
+
43
+ ## Quick start
44
+
45
+ ```bash
46
+ # IDE integration (Claude Code, Cursor, Windsurf)
47
+ pip install opencontextprotocol-sdk
48
+ uvx ocp-server # or configure via .mcp.json
49
+ ```
50
+
51
+ ```bash
52
+ # With hybrid routing (local model handles simple tasks)
53
+ pip install opencontextprotocol-sdk[router]
54
+ ollama pull llama3.2
55
+ ```
56
+
57
+ See [opencontextprotocol.ai](https://opencontextprotocol.ai) for full documentation.
@@ -0,0 +1,4 @@
1
+ opencontextprotocol_sdk/__init__.py,sha256=k4rtExeTaUSoEX2hqiv4nFkK_x89BOXe4HXzb2SPsGI,83
2
+ opencontextprotocol_sdk-0.2.0.dist-info/METADATA,sha256=_JfAbVWAeTbKn_Nx-PCJh0M2jGTfBnWYyKd_KEeDXi8,2028
3
+ opencontextprotocol_sdk-0.2.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
4
+ opencontextprotocol_sdk-0.2.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any