Integrations
Read this portal from your editor
An MCP server over the compiled model: search the catalogue, read an operation, list a capability, look up a term, fetch a specification. Six read-only tools.
Nothing to install, and no access request. Everything the server reads is already downloadable from the tools page without a gate — the specifications, the collections, the capability map, the glossary. Putting a token on this door while that one stands open would buy nothing. It is rate limited instead, and it is read-only: no tool here calls a sandbox, changes a limit or reaches production.
https://everest-mcp.dgpays.com/mcp
Six tools
- search_portal
- Full text over every operation, guide and platform page
- get_operation
- One operation's purpose and its request and response fields
- list_capabilities
- The whole capability map, with counts and coverage state
- list_capability
- Every published operation in one capability
- lookup_term
- A platform term, identifier or abbreviation
- get_specification
- A published API's sanitised OpenAPI document
Hand a page to an assistant
Every page here has a markdown twin at its own address, and /llms.txt indexes them — including what this platform does not expose, so a model cannot infer a capability from a silence. The Copy page control at the top of a page hands that markdown to an assistant with a question already written.
- Claude
- ChatGPT
- Perplexity
- MS Copilot
- Gemini
Claude Code
One command. Run it in the project you are integrating from.
claude mcp add --transport http everest-card https://everest-mcp.dgpays.com/mcp
Claude Desktop
Add to claude_desktop_config.json, then restart the app. On macOS it is in ~/Library/Application Support/Claude/.
{
"mcpServers": {
"everest-card": {
"type": "http",
"url": "https://everest-mcp.dgpays.com/mcp"
}
}
}Cursor
Add to .cursor/mcp.json in the project, or ~/.cursor/mcp.json for every project.
{
"mcpServers": {
"everest-card": {
"type": "http",
"url": "https://everest-mcp.dgpays.com/mcp"
}
}
}VS Code
Add to .vscode/mcp.json, then start the server from the chat panel.
{
"servers": {
"everest-card": {
"type": "http",
"url": "https://everest-mcp.dgpays.com/mcp"
}
}
}