You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Find the UTCP readme at https://github.com/universal-tool-calling-protocol/python-utcp.
1
+
2
+
UTCP GraphQL Communication Protocol Plugin
3
+
4
+
This plugin integrates GraphQL as a UTCP 1.0 communication protocol and call template. It supports discovery via schema introspection, authenticated calls, and header handling.
5
+
6
+
Getting Started
7
+
8
+
Installation
9
+
10
+
```bash
11
+
pip install gql
12
+
```
13
+
14
+
Registration
15
+
16
+
```python
17
+
import utcp_gql
18
+
utcp_gql.register()
19
+
```
20
+
21
+
How To Use
22
+
23
+
- Ensure the plugin is imported and registered: `import utcp_gql; utcp_gql.register()`.
0 commit comments