qiscrm-mcp
Version:
MCP server for QISCRM
15 lines (14 loc) • 346 B
JavaScript
const BASE_URL = process.env.BASE_URL;
if (!BASE_URL) {
throw new Error("BASE_URL is not set");
}
const API_KEY = process.env.ApiKey;
if (!API_KEY) {
throw new Error("ApiKey is not set");
}
const ORG_ID = process.env.orgId;
if (!ORG_ID) {
throw new Error("orgId is not set");
}
// Export API key
export { API_KEY, BASE_URL, ORG_ID };