Skip to content

Commit 481f905

Browse files
committed
updates structure
1 parent 7e045c2 commit 481f905

File tree

4 files changed

+25
-12
lines changed

4 files changed

+25
-12
lines changed

README.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,28 @@ You can easily configure uvx to run the Camel toolkits server like this:
5151
}
5252
```
5353

54+
### Local Development Configuration
55+
56+
If you're developing this package locally, you can configure UVX to use your development version:
57+
58+
```json
59+
{
60+
"mcpServers": {
61+
"camel_toolkits_mcp": {
62+
"command": "/path/to/python",
63+
"args": [
64+
"/path/to/camel_toolkits_mcp/server.py"
65+
],
66+
"env": {
67+
"OPENAI_API_KEY": "your-openai-key",
68+
"NOTION_TOKEN": "your-notion-token",
69+
"..." : "..."
70+
}
71+
}
72+
}
73+
}
74+
```
75+
5476
## Available Tools
5577

5678
The server exposes the following MCP-compatible tools:
@@ -84,7 +106,7 @@ The router works by:
84106
1. Scanning the Camel framework's toolkit directory
85107
2. Analyzing each toolkit class to detect its tools and API requirements
86108
3. Creating proper MCP-compatible wrappers for each tool function
87-
4. Registering these wrappers with the FastMCP server
109+
4. Exposing these functions through the FastMCP server
88110

89111
## Supported Toolkits
90112

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.1"
5+
__version__ = "0.1.2"

camel_toolkits_mcp/__main__.py

Lines changed: 0 additions & 9 deletions
This file was deleted.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "camel-toolkits-mcp"
7-
version = "0.1.1"
7+
version = "0.1.2"
88
description = "A server that exports Camel toolkits as MCP-compatible tools"
99
authors = [
1010
{name = "Xiaotian Jin", email = "[email protected]"}

0 commit comments

Comments
 (0)