Skip to main content
Glama

Starwind UI MCP Server

by starwind-ui
settings.ts666 B
/** * Configuration settings for the MCP server */ import dotenv from "dotenv"; dotenv.config(); interface ServerConfig { name: string; version: string; } interface ToolsConfig { baseDir: string; enabled: string[]; } export interface Config { server: ServerConfig; secret?: string; tools: ToolsConfig; } const config: Config = { server: { name: "Starwind MCP Server", version: "0.0.1", }, tools: { baseDir: "./tools", enabled: [ "get_package_manager", "fetch_llm_data", "get_documentation", "init_project", "install_component", "update_component", ], }, }; export default config;

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/starwind-ui/starwind-ui-mcp'

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