Skip to main content
Glama

Vextra MCP Server

by kcaitech
AGPL 3.0
3
vite.config.ts•958 B
import { defineConfig, loadEnv } from 'vite' import vue from '@vitejs/plugin-vue' import { resolve } from 'path' import { createHtmlPlugin } from 'vite-plugin-html'; export default defineConfig(({ mode }) => { const env = loadEnv(mode, process.cwd(), '') return { base: env.VITE_BASE_URL, plugins: [ vue(), createHtmlPlugin({ minify: true, template: 'public/index.html', entry: '/src/main.ts', }),], resolve: { alias: { '@': resolve(__dirname, 'src'), }, }, build: { outDir: 'dist', assetsDir: 'assets', rollupOptions: { // input: { // main: resolve(__dirname, 'index.html'), // }, }, }, server: { port: 3000, open: true, }, } })

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kcaitech/vextra-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server