@sassoftware/mcp-serverjs
Version:
A mcp server for SAS Viya
18 lines (15 loc) • 517 B
JavaScript
/*
* Copyright © 2025, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
import createMcpServer from './createMcpServer.js';
import tools from './tools.js'; // Adjust the import path as needed
createMcpServer('stdio')
.then(({ mcpServer, transport }) => {
console.log('MCP Server is running...')
})
.catch(err => {
console.error('Error starting MCP Server:', err);
process.exit(1);
});