gta7-lab-city
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": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_entitiesA | Lista as entidades registradas na cidade. |
| get_entityB | Devolve o registro completo de uma entidade. |
| register_entityA | Adiciona uma entidade à cidade. As 'tags' definem quando o orquestrador aciona a entidade; as tools com kind 'search' são as que ele pode chamar sozinho. |
| update_entityA | Atualiza campos de uma entidade já registrada (merge raso). |
| remove_entityB | Remove uma entidade do registro. |
| list_city_toolsA | Conecta nos servidores MCP das entidades e devolve as tools que elas realmente expõem agora. Útil para conferir se o registro está de acordo com a realidade. |
| call_entity_toolD | Proxy direto para uma MCP tool de uma entidade registrada. |
| plan_requestA | Mostra, sem executar nada, o que o Core entendeu do pedido: tags detectadas, restrições extraídas e quais tools de quais entidades seriam chamadas, com os argumentos já traduzidos. |
| orchestrateA | Recebe um pedido em linguagem natural, escolhe as entidades pelas tags, chama as MCP tools delas em paralelo, aplica as restrições (pessoas, orçamento por pessoa) e devolve os resultados por entidade mais combinações entre entidades. |
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 9 tools
Every tool has a clearly distinct role: entity CRUD, tool discovery, direct proxying, planning, and full orchestration. The descriptions explicitly separate non-executing plan_request from executing orchestrate, and list_entities from list_city_tools.
All tools use a consistent snake_case verb_noun pattern: list_entities, get_entity, update_entity, remove_entity, register_entity, list_city_tools, call_entity_tool. The verb-first convention is predictable and matches the registry/orchestration domain.
Nine tools is well-scoped for a server that manages entity lifecycles and orchestration. Each tool earns its place and there is no redundant clutter.
The tool set covers the full entity lifecycle (register, get, list, update, remove), live tool discovery, direct invocation, plan preview, and final orchestration execution. Agents can complete the main workflows without hitting dead ends.