File tree Expand file tree Collapse file tree 4 files changed +25
-12
lines changed
Expand file tree Collapse file tree 4 files changed +25
-12
lines changed Original file line number Diff line number Diff 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
5678The server exposes the following MCP-compatible tools:
@@ -84,7 +106,7 @@ The router works by:
841061 . Scanning the Camel framework's toolkit directory
851072 . Analyzing each toolkit class to detect its tools and API requirements
861083 . 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
Original file line number Diff line number Diff line change 22Camel Toolkits MCP - A server that exports Camel toolkits as MCP-compatible tools.
33"""
44
5- __version__ = "0.1.1 "
5+ __version__ = "0.1.2 "
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " camel-toolkits-mcp"
7- version = " 0.1.1 "
7+ version = " 0.1.2 "
88description = " A server that exports Camel toolkits as MCP-compatible tools"
99authors = [
1010 {
name =
" Xiaotian Jin" ,
email =
" [email protected] " }
You can’t perform that action at this time.
0 commit comments