Surfmeter 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., "@Surfmeter MCP Serverlist all clients"
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.
Surfmeter MCP Server
A Model Context Protocol server for the AVEQ Surfmeter management API. It exposes typed tools for clients, measurements, anomalies, groups, ISPs, users, keys, capabilities, settings, license usage, and the built-in AI assistant.
Requirements
Node.js 20 or newer
A Surfmeter management API key beginning with
client_admin-A reachable Surfmeter server
Related MCP server: ConnectWise API Gateway MCP Server
Installation
Install the MCP server globally:
pnpm add --global @aveq-research/surfmeter-mcpConfiguration
The server requires two environment variables:
API_ENDPOINT: Either the Surfmeter server origin, such ashttps://surfmeter-server.demo-analytics.aveq.info, or the complete management endpoint, such ashttps://surfmeter-server.demo-analytics.aveq.info/client_admin_api/v1.API_KEY: A Surfmeter management API key. It is sent in theX-API-KEYrequest header.API_TIMEOUT_MS: Optional request timeout in milliseconds. The default is 30000.
Do not put a real key in source control. .env is ignored, but MCP clients should normally inject the values through their server configuration.
MCP client configuration
Configure your MCP client to launch the installed surfmeter-mcp executable:
{
"mcpServers": {
"surfmeter": {
"command": "surfmeter-mcp",
"env": {
"API_ENDPOINT": "https://surfmeter-server.demo-analytics.aveq.info",
"API_KEY": "client_admin-replace-me"
}
}
}
}Tool surface
The server advertises ten tools. Five common operations are promoted directly:
surfmeter_get_clients: list clients or get one clientsurfmeter_update_client: update client labels, tags, or groupssurfmeter_search_measurements: query and aggregate measurementssurfmeter_search_anomalies: query and aggregate anomaly episodessurfmeter_get_system_status: read version, measurement options, license usage, or AI status
The complete management API remains available through a searchable internal action catalog:
surfmeter_search_actions: find operations from a natural-language intentsurfmeter_describe_action: retrieve one operation's exact parameter schemasurfmeter_execute_read_action: execute discovered read-only operationssurfmeter_execute_write_action: execute discovered non-destructive mutationssurfmeter_execute_destructive_action: execute deletes, revocations, merges, and client disabling
For example:
{
"query": "create a registration key",
"category": "write"
}The result identifies the action, its parameter names, and the correct executor. Use surfmeter_describe_action when the exact schema is needed, then pass the selected action to that executor:
{
"action_id": "surfmeter_create_registration_key",
"params": {
"comment": "Video probes",
"capability_id": 12
}
}The server validates params against the selected action's internal Zod schema. It rejects action/executor category mismatches. Read, write, and destructive executors have separate MCP annotations so compatible hosts can apply the correct confirmation behavior.
The internal catalog covers clients, groups, ISP contracts, ISPs, users, API keys, registration keys, capabilities, measurements, anomalies, tuning overrides, settings, license usage, and Surfmeter's built-in AI assistant.
Magic-link and session endpoints are intentionally not exposed. They are browser authentication mechanisms and are neither needed nor appropriate when the MCP server already authenticates with a management API key.
Elasticsearch searches
surfmeter_search_measurements and surfmeter_search_anomalies accept Elasticsearch Query DSL under body.
Use .keyword for exact matching, aggregations, and sorting on text fields:
{
"body": {
"size": 0,
"query": {
"term": {
"type.keyword": "VideoMeasurement"
}
},
"aggs": {
"by_client": {
"terms": {
"field": "client_label.keyword"
}
}
}
}
}The server parses normal JSON and Elasticsearch NDJSON scroll responses. Prefer server-side filtering and aggregation to downloading and filtering large datasets in the agent.
Agent skill
The companion Surfmeter skills repository teaches compatible coding agents how to invoke the API directly, and how to construct Elasticsearch requests. Skills are orthogonal to MCP servers. You may choose to not load an MCP server's heavy tool definition in all sessions; skills are a good, lightweight alternative to that.
Development
See DEVELOPERS.md for contributor setup, build instructions, implementation notes, and testing.
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/aveq-research/surfmeter-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server