We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/apimatic/apimatic-validator-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.md•646 B
# Server
The user can specify multiple servers within an environment. A server comprises of a name and a URL. The names of the hosts remain consistent over different environments but their values may vary. The URL values can contain any number of parameters defined.
## Structure
`Server`
## Fields
| Name | Type | Tags | Description |
| --- | --- | --- | --- |
| `id` | `string` | Required | Unique Server identifier |
| `name` | `string` | Required | Server Name |
| `url` | `string` | Required | Server URL |
## Example (as JSON)
```json
{
"id": "5be0a21a83b41d0d8cdcd831",
"name": "default",
"url": "{defaultServerUrl}"
}
```