mcp-server-ai-bot
An MCP server integrating Google Gemini LLM for intelligent customer service, providing chat, analytics, and tools for customer data interaction.
README
🤖 AI Assistant Platform
A Model Context Protocol (MCP) server integrated with Google Gemini LLM for intelligent customer service assistance. This platform provides natural language chat capabilities and AI-powered customer data analysis and summarization.
🌟 Features
- 🔧 MCP Tool Integration: Standardized tool interface following Model Context Protocol
- 🤖 AI-Powered Chat: Natural language interaction using Google Gemini 1.5 Flash
- 📊 Smart Analytics: AI-generated customer insights and summaries
- 🔒 Secure API: Bearer token authentication for external API calls
- 🌐 Professional Web Interface: Modern UI for customer service operations
- 📖 Auto-Generated Docs: FastAPI automatic API documentation
📁 Project Structure
ai-assistant-platform/
├── app/
│ ├── __init__.py
│ ├── main.py # FastAPI application entry point
│ ├── server.py # MCP server setup
│ ├── llm_agent.py # Gemini LLM integration
│ ├── core/
│ │ ├── __init__.py
│ │ └── config.py # Configuration management
│ ├── tools/
│ │ ├── __init__.py
│ │ └── user_tools.py # MCP tools implementation
│ └── static/
│ └── index.html # Web interface
├── .env # Environment variables (not in git)
├── .env.example # Environment template
├── .gitignore # Git ignore rules
├── requirements.txt # Python dependencies
├── LICENSE # MIT License
└── README.md # This file
🚀 Quick Start
Prerequisites
- Python 3.10 or higher
- pip package manager
- Google Gemini API key (Get one here)
- External API credentials (for customer data integration)
Installation
-
Clone the repository
git clone https://github.com/yourusername/ai-assistant-platform.git cd ai-assistant-platform -
Create and activate virtual environment
Windows:
python -m venv venv venv\Scripts\activateLinux/Mac:
python -m venv venv source venv/bin/activate -
Install dependencies
pip install -r requirements.txt -
Configure environment variables
# Copy the example file cp .env.example .env # Edit .env with your actual credentials # On Windows: notepad .env # On Linux/Mac: nano .envRequired environment variables:
API_KEY=your_api_key_here API_URL=https://your-api-url.com GEMINI_API_KEY=your_gemini_api_key_here -
Run the server
# Using uvicorn directly uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload # OR using Python module python -m app.main -
Access the application
- 🏠 Home/Health Check: http://localhost:8000/
- 📖 API Documentation: http://localhost:8000/docs
- 🌐 Web Interface: http://localhost:8000/ui
- 🔧 List Tools: http://localhost:8000/tools
📚 API Endpoints
Core Endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET | / |
Health check |
| GET | /ui |
Web interface |
| GET | /tools |
List available MCP tools |
| GET | /config |
View current configuration |
| GET | /docs |
Interactive API documentation |
MCP Tool Endpoints
| Method | Endpoint | Description |
|---|---|---|
| POST | /test/get_user_details |
Test MCP tool with file number |
Request Body:
{
"file_number": "ABC123"
}
LLM Endpoints
Chat with LLM
POST /llm/chat
Natural language chat with optional customer context.
Request Body:
{
"message": "What's my current balance?",
"file_number": "ABC123" // Optional
}
Response:
{
"success": true,
"response": "Based on your account, your current balance is $1,500.00..."
}
AI Summary
POST /llm/summarize
Generate AI-powered summary of customer account.
Request Body:
{
"file_number": "ABC123"
}
Response:
{
"success": true,
"summary": "Account Summary for John Doe:\n\nCurrent Balance: $1,500.00..."
}
🔧 Configuration
All configuration is managed through environment variables in the .env file:
# API Configuration
API_KEY=your_api_key_here
API_URL=https://api.example.com
API_TIMEOUT=30
# LLM Configuration
GEMINI_API_KEY=your_gemini_key_here
# Server Configuration
SERVER_HOST=0.0.0.0
SERVER_PORT=8000
DEBUG=false
# MCP Configuration
MCP_SERVER_NAME=company-mcp-server
MCP_SERVER_VERSION=1.0.0
🏗️ Architecture
Data Flow
User Request → FastAPI → LLM Agent → MCP Tools → External API
↓
Gemini AI Processing
↓
AI-Enhanced Response
Components
- FastAPI Server (
main.py): Handles HTTP requests and routing - LLM Agent (
llm_agent.py): Manages Gemini AI interactions - MCP Server (
server.py): Implements Model Context Protocol - User Tools (
user_tools.py): External API integration - Configuration (
config.py): Environment management
💡 Usage Examples
Example 1: Get Customer Details
import requests
response = requests.post(
"http://localhost:8000/test/get_user_details",
json={"file_number": "CUST123"}
)
print(response.json())
Example 2: Chat with Context
import requests
response = requests.post(
"http://localhost:8000/llm/chat",
json={
"message": "What payment options are available?",
"file_number": "CUST123"
}
)
print(response.json()["response"])
Example 3: Get AI Summary
import requests
response = requests.post(
"http://localhost:8000/llm/summarize",
json={"file_number": "CUST123"}
)
print(response.json()["summary"])
🔌 MCP Client Integration
To use this server with an MCP client (like Claude Desktop):
{
"mcpServers": {
"company-mcp-server": {
"command": "python",
"args": [
"/path/to/mcp-llm-server/app/main.py"
],
"env": {
"API_KEY": "your_api_key_here",
"GEMINI_API_KEY": "your_gemini_key_here",
"API_URL": "https://api.example.com"
}
}
}
}
🧪 Testing
Using the Web Interface
- Open http://localhost:8000/ui
- Enter a file number (default: 14226904)
- Test different features:
- MCP Tool Testing
- LLM Chat
- AI Summary
Using curl
# Test health check
curl http://localhost:8000/
# Test MCP tool
curl -X POST http://localhost:8000/test/get_user_details \
-H "Content-Type: application/json" \
-d '{"file_number": "14226904"}'
# Test LLM chat
curl -X POST http://localhost:8000/llm/chat \
-H "Content-Type: application/json" \
-d '{"message": "What is the current balance?", "file_number": "14226904"}'
🛠️ Development
Adding New MCP Tools
-
Define the tool in
app/tools/user_tools.py:async def new_tool(self, param: str) -> Dict[str, Any]: """Your tool implementation""" pass -
Register in
app/server.py:@mcp_server.list_tools() async def list_tools() -> list[Tool]: return [ Tool(name="new_tool", description="...", inputSchema={...}) ] -
Add handler in
app/server.py:@mcp_server.call_tool() async def call_tool(name: str, arguments: dict): if name == "new_tool": result = await user_tools.new_tool(arguments["param"])
Running in Development Mode
# Enable debug mode in .env
DEBUG=true
# Run with auto-reload
uvicorn app.main:app --reload --log-level debug
📦 Dependencies
- FastAPI: Modern web framework for building APIs
- uvicorn: ASGI server for FastAPI
- google-generativeai: Google Gemini AI SDK
- httpx: Async HTTP client for external APIs
- python-dotenv: Environment variable management
- mcp: Model Context Protocol SDK
See requirements.txt for complete list with versions.
🔒 Security Best Practices
- Never commit
.envfile - Already in.gitignore - Use environment variables for all secrets
- Rotate API keys regularly
- Use HTTPS in production
- Implement rate limiting for production use
- Validate all inputs before processing
- Log security events for monitoring
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
🤝 Contributing
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature) - Commit your changes (
git commit -m 'Add some AmazingFeature') - Push to the branch (
git push origin feature/AmazingFeature) - Open a Pull Request
🐛 Troubleshooting
Common Issues
Problem: Could not import module "main"
- Solution: Use
uvicorn app.main:appinstead ofuvicorn main:app
Problem: Server not accessible at http://0.0.0.0:8000
- Solution: Use
http://localhost:8000orhttp://127.0.0.1:8000in browser
Problem: API_KEY must be set in environment variables
- Solution: Create
.envfile from.env.exampleand fill in your keys
Problem: Gemini API errors
- Solution: Verify your
GEMINI_API_KEYis valid and has sufficient quota
📞 Support
For issues, questions, or contributions:
- 🐛 Report bugs via GitHub Issues
- 💬 Discussions via GitHub Discussions
- 📧 Email: your.email@example.com
🙏 Acknowledgments
- FastAPI for the excellent web framework
- Google Gemini for LLM capabilities
- Model Context Protocol for standardized tool interfaces
Made with ❤️ for intelligent debt collection assistance
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。