mcp_socket_server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_targetsB | 列出已注册的靶机(占位实现,后续接靶机注册表)。 |
| version_queryA | 查询多台靶机的 socket_server 版本号(datatype 14,只读)。 Args: targets: 靶机 IP 列表 port: socket_server 端口,默认 9000 Returns: {ok: N, failed: [{target, reason}], results: [{target, version}]} |
| isfileC | 检查多台靶机上文件是否存在(datatype 7,只读)。 |
| routeinfoC | 查询多台靶机的路由信息(datatype 4,只读)。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool targets a distinct query (file existence, target listing, route info, version) with no overlap in purpose.
All tools follow a consistent verb_noun pattern (isfile, list_targets, routeinfo, version_query), making them predictable.
4 tools is well-scoped for a read-only query server; each tool earns its place without redundancy.
One tool (list_targets) is a placeholder, and the set covers only read operations, missing write or control capabilities expected for a socket server.