gsoc-borgy: implemented core mcp app workbench with active (requests …#1711
Open
AbdelrahmanELBORGY wants to merge 1 commit into
Open
gsoc-borgy: implemented core mcp app workbench with active (requests …#1711AbdelrahmanELBORGY wants to merge 1 commit into
AbdelrahmanELBORGY wants to merge 1 commit into
Conversation
…and history) tabs.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
API Dash MCP App & Studio Workbench
This PR introduces API Dash MCP Server and Interactive Studio Workbench SPA.
It allows AI assistants inside editors execute requests against the API Dash core engine and instantly launching a fully interactive, stateful webview workbench directly within the editor.
Highlights of this PR
agent_history), enabling seamless historical auditing and instant run re-hydration.Visual preview
VS Code MCP Server Setup -- only with windows for now
this is the same setup as the previous PR.
Prerequisites
flutter build windows --releasein the root directory to generate the required native build artifacts before starting the server.Workspace Configuration
To connect this engine to your VS Code AI assistant, create a
.vscodefolder in the root of your workspace containing anmcp.jsonfile.Add the following configuration, replacing
<PATH_TO_APIDASH_REPO>with the absolute path to your cloned repository:{ "servers": { "apidash-mcp": { "command": "node", "args": [ "<PATH_TO_APIDASH_REPO>/scripts/apidash-mcp.js" ] } } }Example of a valid path:
"C:/Users/Username/Documents/apidash/scripts/apidash-mcp.js"Non changed files -- from previous PR
apidash-mcp.jsmcp_engine.dartmcp_service.dartmain.dartNewly Modified files
html_templates.darttool_handler.dartresource_handler.dart