-
Pre-submission Checklist
Discussion TopicTOON can significantly reduce token usage compared to JSON. I’m curious whether the Model Context Protocol (MCP) will evolve to support this format. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Just tried JSON→TOON conversion using the new mcpproxy My prompt:
Code execution output: {
"ok": true,
"value": "conditions: Partly cloudy\nhumidity: 65\ntemperature: 22.5\n"
}Worked out of the box! The ability to call MCP tools from within code execution and transform their output is incredibly powerful. This makes it trivial to implement format converters and data transformations without needing dedicated servers. |
Beta Was this translation helpful? Give feedback.
Just tried JSON→TOON conversion using the new mcpproxy
code_executionfeature (#627) 🎉My prompt:
Code execution output:
{ "ok": true, "value": "conditions: Partly cloudy\nhumidity: 65\ntemperature: 22.5\n" }Worked out of the box! The ability to call MCP tools from within code execution and transform their output is incredibly powerful. This makes it trivial to implement format converters and data transformations wit…