Log Insight MCP Server
A server that bridges MCP-compatible clients to VMware Log Insight, enabling natural-language log querying and analysis.
README
Log Insight MCP Server
A Model Context Protocol (MCP) server that connects AI assistants like Claude to VMware Log Insight, enabling natural-language log querying and analysis.
Overview
This server acts as a bridge between MCP-compatible clients (such as Claude Code or Claude Desktop) and a VMware Log Insight instance. It exposes two tools that allow an AI assistant to query and analyze logs on your behalf:
query_logs— Query logs between a start and end time, with an optional keyword filter.search_logs_for_errors— Search for error patterns (e.g.error,critical,exception,fatal,fail) within a time range.
The server manages authentication with Log Insight automatically, including session renewal and retry on expiry.
Architecture
MCP Client (Claude) ──HTTP POST──▶ MCP Server (:3000) ──HTTPS──▶ Log Insight API (:9543)
│
├─ /mcp (MCP protocol endpoint)
└─ /health (health check)
Key components:
| File | Role |
|---|---|
src/index.ts |
HTTP server, MCP session management |
src/loginsight-client.ts |
Log Insight REST API client with auth handling |
src/tools/query-logs.ts |
MCP tool definitions and handlers |
Prerequisites
- Node.js v18 or later
- npm
- A running VMware Log Insight instance accessible over the network
Local Setup
1. Clone the repository
git clone <repo-url>
cd log-insight-mcp-server
2. Install dependencies
npm install
3. Configure environment variables
Create a .env file in the project root (or copy and edit the existing one):
LOGINSIGHT_URL=https://your-loginsight-host
LOGINSIGHT_USERNAME=admin
LOGINSIGHT_PASSWORD=your-password
| Variable | Required | Description |
|---|---|---|
LOGINSIGHT_URL |
Yes | Base URL of your Log Insight instance (e.g. https://10.10.10.119) |
LOGINSIGHT_USERNAME |
Yes | Log Insight user with API access |
LOGINSIGHT_PASSWORD |
Yes | Password for the above user |
PORT |
No | Server port (defaults to 3000) |
The server will exit with an error if any required variable is missing.
4. Build
npm run build
This compiles TypeScript from src/ into dist/.
5. Run
Production:
npm start
Development (watch mode):
npm run dev
The server starts on http://localhost:3000. Verify it is running:
curl http://localhost:3000/health
Connecting an MCP Client
Claude Code
Add the server to your Claude Code MCP configuration:
{
"mcpServers": {
"log-insight": {
"type": "http",
"url": "http://localhost:3000/mcp"
}
}
}
Claude Desktop
Add to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"log-insight": {
"type": "http",
"url": "http://localhost:3000/mcp"
}
}
}
Once connected, you can ask Claude questions like:
- "Show me all logs from the last hour"
- "Search for errors between 2025-01-01T00:00:00Z and 2025-01-01T12:00:00Z"
- "Find any fatal or critical log entries from yesterday"
Available Tools
query_logs
Query logs within a time range.
| Parameter | Type | Required | Description |
|---|---|---|---|
startTime |
string (ISO 8601) | Yes | Start of the time range |
endTime |
string (ISO 8601) | Yes | End of the time range |
keyword |
string | No | Text to search for in log messages |
limit |
number (1–20000) | No | Max results to return (default: 200) |
search_logs_for_errors
Search for error-pattern logs within a time range.
| Parameter | Type | Required | Description |
|---|---|---|---|
startTime |
string (ISO 8601) | Yes | Start of the time range |
endTime |
string (ISO 8601) | Yes | End of the time range |
errorPattern |
string | No | Error keyword to match (default: "error") |
limit |
number (1–20000) | No | Max results to return (default: 500) |
Cloud Foundry Deployment
Prerequisites
- CF CLI installed and logged in (
cf login) - Your Log Insight instance must be reachable from the CF environment
Push with inline variables
The Node.js buildpack automatically runs npm run build during staging, so no local pre-build is needed. Supply credentials at deploy time so they never appear in committed files:
cf push \
--var loginsight-url=https://your-loginsight-host \
--var loginsight-username=admin \
--var loginsight-password=your-password
Push with a vars file
Alternatively, create a vars.yml file (already gitignored):
loginsight-url: https://your-loginsight-host
loginsight-username: admin
loginsight-password: your-password
Then deploy:
cf push --vars-file vars.yml
Verify
cf app log-insight-mcp
curl https://<your-app-route>/health
Scripts
| Command | Description |
|---|---|
npm start |
Run the server |
npm run dev |
Run in watch mode (auto-restart on changes) |
npm run build |
Compile TypeScript to dist/ |
License
ISC
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。