We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/IBM/mcp-context-forge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# {{ cookiecutter.project_name }}
{{ cookiecutter.description }}
## Quick Start
```bash
# Build & run over stdio
make run
```
## Install
```bash
go install {{ cookiecutter.module_path }}@latest
```
## MCP Client Configuration (stdio)
```json
{
"mcpServers": {
"{{ cookiecutter.bin_name }}": {
"command": "{{ cookiecutter.bin_name }}",
"args": []
}
}
}
```
## Docker
```bash
# Build
podman build -t {{ cookiecutter.bin_name }}:{{ cookiecutter.version }} .
# Run (stdio mode in container)
podman run --rm -it {{ cookiecutter.bin_name }}:{{ cookiecutter.version }}
```
License: {{ cookiecutter.license }}