Ask HN: Thinking to add in open-source lib a support of any model and MCP
Hey,
I have a platform to test and improve prompts, with observability. It has its own SDK.
I'm thinking to add in the context of the model rules, like:
You have next skills:
``` - web_call({'query': '...query'})
- make_plan({"step1": {"expected_results": "", actions: "", "where_we_are": }})
- update_plan("step_name": {"expected_results": "", actions: "", "where_we_are": })
If you wish to make a call you need to make a call:
<tool_call>
{
"tool_name": "",
"parameters": { // parameters of the tool },
}
</tool_call> ```
----
It's a prompting technique which i use for models like deepseek. But, I wonder if ppl here are interested to have a python lib which will support MCP in the same similar way with all other models, not just Claude, and it will help to choose easily which model performs best for your task. w/o marriage to Claude models.