mcp.tsā¢826 B
// MCP Server configuration
export const mcpConfig = {
server: {
name: "resume-chat-mcp-server",
version: "1.0.0",
description: "MCP server for resume/CV chat and email notifications",
},
tools: {
resumeChat: {
name: "resume_chat",
description:
"Chat about resume/CV information and answer questions about work experience, skills, and education",
},
sendEmail: {
name: "send_email",
description: "Send email notifications with recipient, subject, and body",
},
},
// OpenAI configuration for resume chat
openai: {
apiKey: process.env.OPENAI_API_KEY || "",
model: "gpt-3.5-turbo",
maxTokens: 1000,
temperature: 0.7,
},
// Resume data configuration
resume: {
dataPath: "./data/resume.json",
maxContextLength: 4000,
},
};