We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jezweb/openai-vector-assistant-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
openai-vector-store-mcp.js•1013 B
#!/usr/bin/env node
/**
* OpenAI Vector Store MCP Server CLI
*
* This is the executable entry point for the OpenAI Vector Store MCP Server.
* It can be run directly or via npx without requiring environment variables.
* The API key will be provided by the MCP client configuration.
*/
const path = require('path');
// Import and run the main server
async function main() {
try {
// Import the main server module
const serverPath = path.join(__dirname, '../universal-mcp-server.cjs');
require(serverPath);
} catch (error) {
console.error('Failed to start OpenAI Vector Store MCP Server:', error);
process.exit(1);
}
}
// Start the server without API key validation
// The API key will be provided by the MCP client via environment variables
console.error('[INFO] Starting OpenAI Vector Store MCP Server...');
console.error('[INFO] API key will be validated when tools are called');
console.error('[INFO] Configure OPENAI_API_KEY in your MCP client configuration');
main();