@starwind-ui/mcp
Version:
The Starwind UI MCP Server
24 lines • 531 B
JavaScript
/**
* Configuration settings for the MCP server
*/
import dotenv from "dotenv";
dotenv.config();
const 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;
//# sourceMappingURL=settings.js.map