Support Engineer MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Support Engineer MCP Serversearch knowledge base for 'VPN timeout issue'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Support Engineer MCP Server
A vendor-agnostic MCP server for technical support engineers, providing knowledge search, ticket analysis, and resolution suggestions.
Features
Search Knowledge Base: Find relevant articles, tickets, and guides by keyword.
Analyze Tickets: Load ticket CSVs to get statistics and sample data.
List Knowledge Files: Browse all available files in the knowledge base.
Suggest Resolutions: Get recommendations based on issue descriptions (placeholder, extendable with ML).
Installation
Prerequisites
Python 3.10 or later
pip (usually included with Python)
1. Clone the repository
git clone https://github.com/tsabra76/support-engineer-mcp.git
cd support-engineer-mcp2. Install dependencies
pip install -r requirements.txt3. (Optional) Customize the knowledge base
Replace the sample files in the knowledge/ folder with your own data. The server automatically reads all .csv and .md files from that directory. You can also set the KNOWLEDGE_ROOT environment variable to point to a different location.
4. Configure your MCP client
Below are instructions for connecting the server to Claude Code (Anthropic) and OpenAI Codex CLI.
Claude Code
Edit your Claude Desktop configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Add the following entry under mcpServers:
{
"mcpServers": {
"support-engineer": {
"command": "python",
"args": ["C:/path/to/support-engineer-mcp/support_mcp_server.py"],
"env": {
"KNOWLEDGE_ROOT": "C:/path/to/support-engineer-mcp/knowledge"
}
}
}
}Replace C:/path/to/ with the actual absolute path to your cloned repository. The KNOWLEDGE_ROOT variable is optional; if omitted, the server defaults to the knowledge/ folder inside the repository.
Restart Claude Desktop after saving the configuration.
OpenAI Codex CLI
Add an MCP server to your Codex configuration file (~/.codex/config.yaml or %USERPROFILE%\.codex\config.yaml on Windows):
mcp_servers:
- name: support-engineer
command: python
args:
- "C:/path/to/support-engineer-mcp/support_mcp_server.py"
env:
KNOWLEDGE_ROOT: "C:/path/to/support-engineer-mcp/knowledge"Again, replace the paths with the actual location of your repository. After editing the file, restart your Codex session or IDE integration.
5. Verify the connection
Once connected, you should see the server's tools (search_knowledge, analyze_tickets, list_knowledge_files, suggest_resolution) available in your MCP client's tool list.
Customization
Replace
knowledge/tickets_sample.csvwith your own ticket data.Replace
knowledge/articles_sample.csvwith your own knowledge articles.Edit
knowledge/troubleshooting_guide.mdto add your own troubleshooting steps.Override the knowledge root path with the
KNOWLEDGE_ROOTenvironment variable.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tsabra76/support-engineer-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server