forked from apache/apisix
-
Notifications
You must be signed in to change notification settings - Fork 0
feat: mb #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
feat: mb #6
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,240 @@ | ||
| -- | ||
| -- Licensed to the Apache Software Foundation (ASF) under one or more | ||
| -- contributor license agreements. See the NOTICE file distributed with | ||
| -- this work for additional information regarding copyright ownership. | ||
| -- The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| -- (the "License"); you may not use this file except in compliance with | ||
| -- the License. You may obtain a copy of the License at | ||
| -- | ||
| -- http://www.apache.org/licenses/LICENSE-2.0 | ||
| -- | ||
| -- Unless required by applicable law or agreed to in writing, software | ||
| -- distributed under the License is distributed on an "AS IS" BASIS, | ||
| -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| -- See the License for the specific language governing permissions and | ||
| -- limitations under the License. | ||
| -- | ||
| local table_remove = table.remove | ||
| local ngx = ngx | ||
| local resty_signal = require("resty.signal") | ||
| local core = require("apisix.core") | ||
| local plugin = require("apisix.plugin") | ||
| local upstream = require("apisix.upstream") | ||
| local pipe = require("ngx.pipe") | ||
| local mcp_session_manager = require("apisix.plugins.mcp.session") | ||
|
|
||
| local V241105_ENDPOINT_SSE = "sse" | ||
| local V241105_ENDPOINT_MESSAGE = "message" | ||
|
|
||
| local schema = { | ||
| type = "object", | ||
| properties = { | ||
| command = { | ||
| type = "string", | ||
| minLength = 1, | ||
| }, | ||
| args = { | ||
| type = "array", | ||
| items = { | ||
| type = "string", | ||
| }, | ||
| minItems = 0, | ||
| }, | ||
| ping_interval = { | ||
| type = "integer", | ||
| minimum = 1, | ||
| default = 30000, | ||
| }, | ||
| session_inactive_timeout = { | ||
| type = "integer", | ||
| minimum = 1, | ||
| default = 60000, | ||
| }, | ||
| }, | ||
| required = { | ||
| "command" | ||
| }, | ||
| } | ||
|
|
||
| local plugin_name = "mcp-bridge" | ||
|
|
||
| local _M = { | ||
| version = 0.1, | ||
| priority = 0, | ||
| name = plugin_name, | ||
| schema = schema, | ||
| } | ||
|
|
||
|
|
||
| function _M.check_schema(conf, schema_type) | ||
| return core.schema.check(schema, conf) | ||
| end | ||
|
|
||
|
|
||
| local function sse_send(id, event, data) | ||
| if id then | ||
| ngx.say("id: " .. id) | ||
| end | ||
| if event then | ||
| ngx.say("event: " .. event) | ||
| end | ||
| local ok, err = ngx.print("data: " .. data .. "\n\n") | ||
| if not ok then | ||
| ngx.log(ngx.ERR, "failed to send SSE data to buffer: ", err) | ||
| return nil, err | ||
| end | ||
| return ngx.flush(true) | ||
| end | ||
|
|
||
|
|
||
| local function sse_handler(conf, ctx) | ||
| -- TODO: recover by Last-Event-ID | ||
| local session = mcp_session_manager.new() | ||
|
|
||
| core.response.set_header("Content-Type", "text/event-stream") | ||
| core.response.set_header("Cache-Control", "no-cache") | ||
|
|
||
| -- spawn subprocess | ||
| local proc, err = pipe.spawn({conf.command, unpack(conf.args or {})}) | ||
| if not proc then | ||
| ngx.log(ngx.ERR, "failed to spawn mcp process: ", err) | ||
| return 500 | ||
| end | ||
|
|
||
| -- send endpoint event to advertise the message endpoint | ||
| sse_send(nil, "endpoint", "/mcp/message?sessionId=" .. session.id .. "") | ||
|
|
||
| -- enter loop | ||
| while true do | ||
| session = mcp_session_manager.recover(session.id) | ||
| if not session then | ||
| ngx.log(ngx.ERR, "failed to recover session in loop: ", err) | ||
| return 500 --TODO throw error by SSE | ||
| end | ||
|
|
||
| local queue_item_str, queue_item | ||
| local skip_response | ||
| local result | ||
|
|
||
| if session.last_active_at + 30 < ngx.time() then | ||
| session.ping_id = session.ping_id + 1 | ||
| local ok, err = sse_send(nil, "message", '{"jsonrpc": "2.0","method": "ping","id":"ping:'..session.ping_id..'"}') | ||
| if not ok then | ||
| core.log.info("session ", session.id, " exit, failed to send ping message: ", err) | ||
| break | ||
| end | ||
| end | ||
| if session.last_active_at + 60 < ngx.time() then | ||
| core.log.info("session ", session.id, " exit, inactive timeout") | ||
| break | ||
| end | ||
|
|
||
| queue_item_str, err = session:pop_message_queue() | ||
| if not queue_item_str then | ||
| if err then | ||
| core.log.error("session ", session.id, " exit, failed to pop message from queue: ", err) | ||
| break | ||
| end | ||
| goto CONTINUE | ||
| end | ||
| queue_item = core.json.decode(queue_item_str) | ||
|
|
||
| -- According to the JSON-RPC specification, if the message does not contain an id, | ||
| -- it means that it is a notification message from peer and the server does not | ||
| -- need to respond to it | ||
| skip_response = queue_item.id == nil | ||
|
|
||
| -- write task to stdio and read result | ||
| proc:write(queue_item_str .. "\n") | ||
| if not skip_response then | ||
| result = proc:stdout_read_line() --TODO: read all | ||
| core.log.error("session ", session.id, " message from stdout, ", result) | ||
| end | ||
|
|
||
| -- flush queue modification to storage | ||
| session:flush_to_storage() | ||
|
|
||
| if result and not skip_response then | ||
| local ok = sse_send(nil, "message", result) | ||
| if not ok then | ||
| core.log.info("session ", session.id, " exit, failed to send response message: ", err) | ||
| break | ||
| end | ||
| end | ||
|
|
||
| ::CONTINUE:: | ||
| queue_item_str = nil | ||
| queue_item = nil | ||
| skip_response = false | ||
| result = nil | ||
| ngx.sleep(1) | ||
| end | ||
|
|
||
| session:destroy() | ||
|
|
||
| -- close the subprocess | ||
| proc:shutdown("stdin") | ||
| proc:wait() | ||
| local _, err = proc:wait() -- check if process not exited then kill it | ||
| if err ~= "exited" then | ||
| proc:kill(resty_signal.signum("KILL")) | ||
| end | ||
| end | ||
|
|
||
|
|
||
| local function message_handler(conf, ctx) | ||
| local session_id = ctx.var.arg_sessionId | ||
| --ngx.log(ngx.ERR, 'sessionId: ', session_id) | ||
| local session = mcp_session_manager.recover(session_id) | ||
|
|
||
| if not session then | ||
| return 404 | ||
| end | ||
|
|
||
| local body = core.request.get_body(nil, ctx) | ||
| if not body then | ||
| return 400 | ||
| end | ||
|
|
||
| local body_json = core.json.decode(body) | ||
| if not body_json then | ||
| return 400 | ||
| end | ||
| if core.string.has_prefix(tostring(body_json.id), "ping") then --TODO check client pong | ||
| session:session_pong() | ||
| return 202 | ||
| end | ||
|
|
||
| local ok, err = session:push_message_queue(body) | ||
| if not ok then | ||
| ngx.log(ngx.ERR, "failed to add task to queue: ", err) | ||
| return 500 | ||
| end | ||
|
|
||
| return 202 | ||
| end | ||
|
|
||
|
|
||
| function _M.access(conf, ctx) | ||
| local action = ctx.var.uri_param_action | ||
| if not action then | ||
| return 404 | ||
| end | ||
|
|
||
| if core.request.get_method() == "OPTIONS" then | ||
| return 200 | ||
| end | ||
|
|
||
| if action == V241105_ENDPOINT_SSE and core.request.get_method() == "GET" then | ||
| return sse_handler(conf, ctx) | ||
| end | ||
|
|
||
| if action == V241105_ENDPOINT_MESSAGE and core.request.get_method() == "POST" then | ||
| return message_handler(conf, ctx) | ||
| end | ||
|
|
||
| return 200 | ||
| end | ||
|
|
||
|
|
||
| return _M |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| local _M = {} | ||
|
|
||
| function _M.initialize_response(id, result) | ||
| return { | ||
| jsonrpc = "2.0", | ||
| id = id, | ||
| result = result, | ||
| } | ||
| end | ||
|
|
||
| return _M | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,76 @@ | ||||||||||||||||||||||||||||||||||||||||
| local table_insert = table.insert | ||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||
| local shared_dict = ngx.shared["mcp-session"] | ||||||||||||||||||||||||||||||||||||||||
| local core = require("apisix.core") | ||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
| local _M = {} | ||||||||||||||||||||||||||||||||||||||||
| local mt = { __index = _M } | ||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
| _M.STATE_UNINITIALIZED = "uninitialized" | ||||||||||||||||||||||||||||||||||||||||
| _M.STATE_INITIALIZED = "initialized" | ||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
| local function gen_session_id() | ||||||||||||||||||||||||||||||||||||||||
| return core.id.gen_uuid_v4() | ||||||||||||||||||||||||||||||||||||||||
| end | ||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
| function _M.new() | ||||||||||||||||||||||||||||||||||||||||
| local session = setmetatable({ | ||||||||||||||||||||||||||||||||||||||||
| id = gen_session_id(), | ||||||||||||||||||||||||||||||||||||||||
| requests = {}, | ||||||||||||||||||||||||||||||||||||||||
| responses = {}, | ||||||||||||||||||||||||||||||||||||||||
| queue = {}, | ||||||||||||||||||||||||||||||||||||||||
| state = _M.STATE_UNINITIALIZED, | ||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
| ping_id = 0, | ||||||||||||||||||||||||||||||||||||||||
| last_active_at = ngx.time(), | ||||||||||||||||||||||||||||||||||||||||
| }, mt) | ||||||||||||||||||||||||||||||||||||||||
| session:flush_to_storage() | ||||||||||||||||||||||||||||||||||||||||
| return session | ||||||||||||||||||||||||||||||||||||||||
| end | ||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
| -- for state machine | ||||||||||||||||||||||||||||||||||||||||
| function _M.session_initialize(self, params) | ||||||||||||||||||||||||||||||||||||||||
| self.protocol_version = params.protocolVersion | ||||||||||||||||||||||||||||||||||||||||
| self.client_info = params.clientInfo | ||||||||||||||||||||||||||||||||||||||||
| self.capabilities = params.capabilities | ||||||||||||||||||||||||||||||||||||||||
| self.state = _M.STATE_INITIALIZED | ||||||||||||||||||||||||||||||||||||||||
| return self:flush_to_storage() | ||||||||||||||||||||||||||||||||||||||||
| end | ||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
| function _M.session_pong(self) | ||||||||||||||||||||||||||||||||||||||||
| self.last_active_at = ngx.time() | ||||||||||||||||||||||||||||||||||||||||
| return self:flush_to_storage() | ||||||||||||||||||||||||||||||||||||||||
| end | ||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
| function _M.push_message_queue(self, task) | ||||||||||||||||||||||||||||||||||||||||
| return shared_dict:rpush(self.id..":queue", task) | ||||||||||||||||||||||||||||||||||||||||
| end | ||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
| function _M.pop_message_queue(self) | ||||||||||||||||||||||||||||||||||||||||
| return shared_dict:lpop(self.id..":queue") | ||||||||||||||||||||||||||||||||||||||||
| end | ||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
| function _M.flush_to_storage(self) | ||||||||||||||||||||||||||||||||||||||||
| return shared_dict:set(self.id, core.json.encode(self)) | ||||||||||||||||||||||||||||||||||||||||
| end | ||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
| function _M.destroy(self) | ||||||||||||||||||||||||||||||||||||||||
| return shared_dict:delete(self.id) | ||||||||||||||||||||||||||||||||||||||||
| end | ||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
| function _M.recover(session_id) | ||||||||||||||||||||||||||||||||||||||||
| local session, err = shared_dict:get(session_id) | ||||||||||||||||||||||||||||||||||||||||
| if not session then | ||||||||||||||||||||||||||||||||||||||||
| return nil, err | ||||||||||||||||||||||||||||||||||||||||
| end | ||||||||||||||||||||||||||||||||||||||||
| return setmetatable(core.json.decode(session), mt) | ||||||||||||||||||||||||||||||||||||||||
| end | ||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||
| return _M | ||||||||||||||||||||||||||||||||||||||||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.