Skip to content

Commit 97a00f4

Browse files
committed
update format
1 parent 9965a6f commit 97a00f4

File tree

7 files changed

+215
-172
lines changed

7 files changed

+215
-172
lines changed

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,29 @@ This will start an MCP server that exposes the following tools:
4242
- `register_toolkit()`: Registers a toolkit by name
4343
- `get_toolkit_info()`: Gets information about a toolkit's parameters
4444

45+
### Using with UVX
46+
47+
You can easily configure UVX to run the Camel toolkits server in your `.uvx.json` file:
48+
49+
```json
50+
{
51+
"mcpServers": {
52+
"camel-toolkits": {
53+
"command": "uvx",
54+
"args": [
55+
"camel-toolkits-mcp"
56+
],
57+
"env": {
58+
"OPENAI_API_KEY": "your-openai-key",
59+
"NOTION_TOKEN": "your-notion-token"
60+
}
61+
}
62+
}
63+
}
64+
```
65+
66+
This configuration will automatically launch the Camel toolkits server when starting UVX.
67+
4568
### Example: Using Notion Toolkit
4669

4770
```python

camel_toolkits_mcp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Camel Toolkits MCP - A server that exports Camel toolkits as MCP-compatible tools.
33
"""
44

5-
__version__ = "0.1.0"
5+
__version__ = "0.1.0"

camel_toolkits_mcp/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
from camel_toolkits_mcp.server import main
77

88
if __name__ == "__main__":
9-
sys.exit(main())
9+
sys.exit(main())

0 commit comments

Comments
 (0)