com.devexpress/docs
Official2 toolsDevExpress Documentation
Streamable HTTP MCP server for DevExpress documentation search and retrieval.
Search and retrieve DevExpress documentation via HTTP streaming.
Captured live from the server via tools/list.
devexpress_docs_search
Search DevExpress documentation for a given technology and a question. If you want to search for multiple technologies, pass them as a list. This tool returns only snippets/excerpts; full content requires a follow-up `devexpress_docs_get_content` call on a chosen URL. ALWAYS call `devexpress_docs_search` before ANY `devexpress_docs_get_content` call in a user request chain.
Parameters (2)
- technologiesarrayrequired
List of DevExpress technologies to search within. Use specific technology names like 'WindowsForms', 'XtraReports', 'OfficeFileAPI' etc. You must choose from the allowed set.
- questionstringrequired
Your specific question or search query. Be descriptive and include relevant keywords about what you're trying to accomplish.
devexpress_docs_get_content
Get full document content by URL from DevExpress documentation. Use this tool to retrieve the complete markdown content of a specific documentation page. PREREQUISITE: ALWAYS call `devexpress_docs_search` before using this tool to get valid URLs. The URL parameter must be obtained from the results of the `devexpress_docs_search` tool.
Parameters (1)
- urlstringrequired
Full URL of a DevExpress documentation article. REQUIRED: This URL must be obtained from a previous call to `devexpress_docs_search` tool. Do not construct URLs using your general knowledge. Example: https://docs.devexpress.com/CoreLibraries/405204
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"docs": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://api.devexpress.com/mcp/docs"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.