We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sandraschi/robotics-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import path from "path";
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
server: {
port: 10706,
host: "127.0.0.1",
proxy: {
"/api": {
target: "http://127.0.0.1:10707",
changeOrigin: true,
},
"/mcp": {
target: "http://127.0.0.1:10707",
changeOrigin: true,
},
}
}
});