We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3309b58 commit 376fbbaCopy full SHA for 376fbba
common/toolcall/mcp_stdio_transport.cpp
@@ -1,17 +1,21 @@
1
2
#include "mcp_stdio_transport.hpp"
3
4
+#include <stdexcept>
5
+
6
toolcall::mcp_stdio_transport::mcp_stdio_transport(std::vector<std::string> argv)
7
: argv_(std::move(argv))
8
{
9
}
10
11
void toolcall::mcp_stdio_transport::start() {
12
+ throw std::logic_error(std::string("Function not implemented: ") + __func__);
13
14
15
void toolcall::mcp_stdio_transport::stop() {
16
17
18
19
bool toolcall::mcp_stdio_transport::send(const mcp::message_variant & /*request*/) {
- return false;
20
21
0 commit comments