AT Series MCP Hub
Provides tools for interacting with Grafana, enabling monitoring and visualization through the integrated plugin.
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., "@AT Series MCP Hublist my SSH connections"
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.
AT Series MCP Hub
把 AT 系列 IDE 插件的 MCP 入口收成 一条:AT Series → ~/.at-series/mcp/hub.js。
各能力插件(AT Terminal / JumpServer / Grafana / …)在扩展宿主内跑自己的 Bridge,向 Hub 注册工具;Hub 聚合目录、按需渐进暴露、路由 tools/call、监听 registry。凭据、确认弹窗、业务逻辑仍留在插件内。
npm 包 |
|
Bridge 规范 |
|
Hub 暴露规范 |
|
系列 Skill |
|
契约类型 | |
当前阶段 | Hub V2a 已发布:渐进式 |
文档
文档 | 说明 |
Bridge 接口契约真源:registry、Bridge HTTP、聚合/路由、MCP 配置、错误体、Hub 版本选举 | |
Hub 渐进式工具暴露: | |
新插件接入 + Agent discover→select→call | |
产品范围、决策与验收 | |
架构决策 | |
本仓 Agent / 迁移约定 | |
SuperOps 系列 skill(工具附录 + 运维 runbooks) |
插件作者以实现 Bridge v1 为准;Hub 列表暴露行为以实现 v2 为准。不要靠读 Hub 源码猜接口。
Related MCP server: mcpstead
架构
IDE MCP Client (Cursor / Kiro / Continue / …)
│ stdio MCP server name: "AT Series"
▼
~/.at-series/mcp/hub.js ← @at-series/mcp-hub 打包的单文件入口
│ 读 registry + HTTP;渐进暴露 tools/list
▼
~/.at-series/bridges/<hostApp>/<bridgeId>.json
│
▼
插件 Bridge 127.0.0.1:<port>
GET /health · GET /tools · POST /invoke
│
▼
插件域服务(SSH / JumpServer / Grafana / …)+ 确认 / 凭据边界(本仓不做): 不提供通用 Bridge HTTP 框架;不实现各插件业务;不把确认 UI 搬进 Hub;不按插件写死工具清单。
Hub V2:渐进式工具暴露
目录变大时,Hub 默认不再把全部业务工具 schema 塞进每轮上下文:
at_list_providers→at_search_tools/at_get_toolat_select_tools(按pluginId或工具名;replace/add)收到
tools/list_changed后刷新 list,再以一等工具名tools/call任务结束调用
at_clear_tool_selection(另有空闲 TTL / 可选 call budget 自动 clear)
Env | 默认 | 含义 |
|
|
|
|
|
|
|
| 选中空闲自动 clear; |
|
| 业务调用次数预算; |
list ≠ ACL: 未出现在 tools/list 的赢家工具,Hub 仍可路由 tools/call(部分 IDE 客户端会自行按 list 拦截)。
Agent 用法见 SuperOps skill:skills/super-ops。
已实现能力
模块 | 职责 |
protocol | Bridge v1 / Hub v2 常量与类型;risk / autoApprove |
registry | 读/校验 |
publisher | publish / heartbeat / unpublish; |
hub runtime | stdio MCP:聚合、渐进暴露、meta-tools、路由 invoke、 |
installer | 写/修/卸 |
覆盖 IDE:Cursor、Kiro、Continue。
npm test # 协议一致性、聚合选路、渐进暴露、选举、installer …新插件怎么接入
契约: v1 Bridge + v2 Hub 暴露
步骤: plugin-integration.md
Bridge:
127.0.0.1+x-at-series-token+GET /health/GET /tools/POST /invokepublish到~/.at-series/bridges/<hostApp>/<bridgeId>.json(protocolVersion: 1,工具带risk)MCP 变体:
syncHubBundle+ensureAtSeriesMcpConfig(只写AT Series)deactivate:
unpublish(不删hub.js、不卸 MCP 配置)
依赖
npm install @at-series/mcp-hubactivate 示例
import {
FsBridgePublisher,
syncHubBundle,
ensureAtSeriesMcpConfig,
hubJsPath,
AT_SERIES_PROTOCOL_VERSION, // Bridge wire = 1
type BridgeRegistryRecord,
type ToolCatalogEntry
} from '@at-series/mcp-hub';
const bridgeId = crypto.randomUUID();
const hostApp = 'cursor';
const tools: ToolCatalogEntry[] = [
{
name: 'example_ping',
title: 'Example Ping',
description: 'Connectivity check.',
risk: 'read',
inputSchema: { type: 'object', properties: {} }
}
];
await syncHubBundle({
version: '0.2.0',
bundlePath: require.resolve('@at-series/mcp-hub/hub'),
pluginId: 'at.example',
pluginVersion: '1.2.3'
});
await ensureAtSeriesMcpConfig({
target: 'cursor',
hostApp,
hubJsAbsolutePath: hubJsPath(),
registryTools: tools
});
const publisher = new FsBridgePublisher({ bridgeId, hostApp });
const record: BridgeRegistryRecord = {
protocolVersion: AT_SERIES_PROTOCOL_VERSION,
bridgeId,
pluginId: 'at.example',
pluginDisplayName: 'AT Example',
pluginVersion: '1.2.3',
hostApp,
port: 43123,
token: '<high-entropy-secret>',
pid: process.pid,
updatedAt: Date.now(),
tools
};
await publisher.publish(record);Hub 版本选举: semver 更高 → 覆盖;同版本且 bundleSha256 不同 → 覆盖;同 hash → no-op;更低 → 禁止覆盖。
autoApprove: Hub 全部 meta-tools(at_list_providers、at_search_tools、at_get_tool、at_select_tools、at_clear_tool_selection)+ risk=read 业务工具;write/exec 须插件内确认。
不要: per-plugin mcp-server.js 作产品入口;不要用 languageModelTools 暴露同一批工具。
本仓开发
npm install
npm run build # tsc → packages/mcp-hub/dist
npm run build:hub # esbuild → dist/hub.js
npm test
npm run typecheckat-series-mcp-hub/
AGENTS.md
README.md
docs/
protocol/v1.md
protocol/v2.md
guides/plugin-integration.md
requirements.md
decisions/ADR-001-*.md
packages/mcp-hub/
skills/super-ops/ # SuperOps路线图
Phase | 内容 | 状态 |
P0a | Hub 包 + 协议测试 | 完成 |
V2a | 渐进式 tools/list + meta-tools + protocol v2 | 完成(本版) |
V2c | SuperOps 系列 skill | 完成(本版) |
P0b/c | 各插件迁 Hub(Terminal / JumpServer / …) | 进行中(插件仓) |
V2b | 结果分页/截断 | 未开始 |
P2 | 工具命名统一前缀 | 未开始 |
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.
Related MCP Servers
- Flicense-qualityBmaintenanceA unified MCP server with composable tools for GitHub operations, file management, shell execution, kanban boards, Discord messaging, and package management. Features role-based security, HTTP/stdio transports, and a web-based development UI.Last updated
- Alicense-qualityDmaintenanceMCP Gateway that aggregates multiple upstream MCP servers into a single endpoint with persistent connections, tool registry, and authentication.Last updated292MIT
- Alicense-qualityCmaintenanceMCP hub server that aggregates tools from multiple domain packages into a single globally-available interface.Last updated1MIT
- Alicense-qualityBmaintenanceAggregates multiple backend MCP servers into a single unified interface with optional web management UI for tool control and configuration.Last updated71192MIT
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.
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/xwamt/at-series-mcp-hub'
If you have feedback or need assistance with the MCP directory API, please join our Discord server