Skip to main content
Glama

Vextra MCP Server

by kcaitech
AGPL 3.0
3
rollup.config.mjs1.16 kB
import typescript from '@rollup/plugin-typescript'; import {babel} from '@rollup/plugin-babel'; import json from '@rollup/plugin-json'; import terser from '@rollup/plugin-terser'; import clear from 'rollup-plugin-clear'; const external = [ 'express', '@kcaitech/vextra-core', 'zod', 'skia-canvas', '@modelcontextprotocol/sdk', '@modelcontextprotocol/sdk/server/sse.js', '@modelcontextprotocol/sdk/server/stdio.js', '@modelcontextprotocol/sdk/server/mcp.js', 'js-yaml', 'yargs', 'fs', 'path', ]; const commonPlugins = [ clear({ targets: ['dist'] }), json(), typescript(), babel({ babelHelpers: 'bundled' }), terser(), ]; export default [ { input: 'src/server.ts', output: { dir: 'dist', format: 'cjs', entryFileNames: 'server.js' }, plugins: commonPlugins, external }, { input: 'src/server_local.ts', output: { dir: 'dist', format: 'cjs', entryFileNames: 'server_local.js' }, plugins: commonPlugins, external } ];

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