We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Hmbown/aleph'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
openai.md•1.03 kB
# OpenAI Codex and ChatGPT setup
Use this checklist to connect Aleph's MCP server to OpenAI clients that can launch local MCP servers.
## Codex CLI
Preferred path (auto-install):
```bash
pip install aleph-rlm[mcp]
aleph-rlm install codex
```
Manual config (TOML) in `~/.codex/config.toml`:
```toml
[mcp_servers.aleph]
command = "aleph"
args = ["--enable-actions"]
```
Restart Codex CLI after changes.
## Codex Skills
Codex skills live in `~/.codex/skills`. To install the `/aleph` skill from this repo:
```bash
mkdir -p ~/.codex/skills/aleph
cp /path/to/aleph/ALEPH.md ~/.codex/skills/aleph/SKILL.md
```
Restart Codex CLI after changes.
## ChatGPT / OpenAI desktop clients
If your client exposes MCP server settings, add a server with:
- Name: `aleph`
- Command: `aleph`
- Args: `["--enable-actions"]`
Notes:
- The client must run on the same machine where `aleph` is installed.
- Verify installation with `aleph-rlm doctor`.
## Troubleshooting
- If `aleph` is not found, reinstall: `pip install aleph-rlm[mcp]`.