IIITH Mess MCP
IIIT海德拉巴信息系统的MCP服务器。让LLM检查注册、查看菜单、管理膳食和跟踪账单——所有这些都是对话式的。
需要IIIT VPN或内联网访问。
你可以问的例子
- “我今天吃什么?”
- “取消我周五的所有午餐”
- “明天在Kadamba为我注册晚餐”
- “今晚的菜单上有什么?”
- “每周,登记我本周最喜欢的饭菜”
- “估计今晚晚餐的营养”
- “我这个月的账单是多少?”
先决条件
- 来自的身份验证密钥 mess.iiit.ac.in (设置>身份验证密钥),或会话cookie
- 紫外线
添加到克劳德代码
通过紫外线(推荐)
claude mcp add iiith-mess -e MESS_AUTH_KEY=your-auth-key -- uvx iiith-mess-mcp通过本地克隆
git clone https://github.com/Kallind/IIITH-Mess-MCP
claude mcp add iiith-mess -e MESS_AUTH_KEY=your-auth-key -- uv run --directory IIITH-Mess-MCP python iiith_mess_mcp/server.py验证它是否已连接:
claude mcp list添加到GitHub副本(VS代码)
最简单的方法:只需让Copilot通过提供此存储库URL进行设置。
通过uvx
创建或编辑 .vscode/mcp.json 在您的工作空间中:
{
"servers": {
"iiith-mess": {
"type": "stdio",
"command": "uvx",
"args": ["iiith-mess-mcp"],
"env": {
"MESS_AUTH_KEY": "your-auth-key-here"
}
}
}
}通过本地克隆
{
"servers": {
"iiith-mess": {
"type": "stdio",
"command": "uv",
"args": ["run", "--directory", "/path/to/IIITH-Mess-MCP", "python", "iiith_mess_mcp/server.py"],
"env": {
"MESS_AUTH_KEY": "your-auth-key-here"
}
}
}
}______________________________________________________________________
