We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BetterThanTomorrow/calva-backseat-driver'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
(ns calva-backseat-driver.integrations.vscode.axs
(:require [clojure.core.match :refer [match]]))
(defn handle-action [_state _context action]
(match action
[:vscode/ax.show-information-message & args]
{:ex/fxs [(into [:vscode/fx.show-information-message] args)]}
[:vscode/ax.show-text-document document]
{:ex/fxs [[:vscode/fx.show-text-document document]]}
:else
{:ex/fxs [[:node/fx.log-error "Unknown action:" (pr-str action)]]}))