@sgs/oa-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PORT | No | HTTP server port (only used in HTTP mode) | 3000 |
| OA_COOKIE | No | Session cookie for authentication | |
| OA_BASE_URL | No | OA system base URL | https://oatest.sgscf.cn/oamgr |
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": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_officeA | 查询山钢资本数智办公平台的办公场所列表。可按名称、地址筛选。返回场所ID、名称、地址、所属机构等信息。 |
| search_roomA | 查询会议室列表。可按名称、容纳人数、楼宇筛选。 |
| get_office_detailB | 根据场所ID获取详细信息 |
| get_room_detailB | 根据会议室ID获取详细信息 |
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 resource and action: search and detail for offices, search and detail for meeting rooms. There is no overlap between office and room tools, so an agent can easily select the correct tool.
All tool names follow a consistent verb_noun pattern: search_office, search_room, get_office_detail, get_room_detail. The pattern is uniform and predictable, making it easy to infer functionality from names.
With only 4 tools, the set is well-scoped for a read-only query service focused on offices and meeting rooms. Each tool serves a clear purpose and the count is appropriate for the narrow domain.
The tool surface covers the full lifecycle for this domain: search both resource types and retrieve detailed information for each. No obvious missing operations are apparent given the presumably read-only nature of the server.