UserAd/didlogic_mcp
Platform-specific configuration:
{
"mcpServers": {
"didlogic_mcp": {
"command": "npx",
"args": [
"-y",
"didlogic_mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
[](https://archestra.ai/mcp-catalog/userad__didlogic_mcp) A Model Context Protocol (MCP) server implementation for the Didlogic API. This server allows Large Language Models (LLMs) to interact with Didlogic services through a standardized interface.
When using `uv` no specific installation is needed. We will use `uvx` to directly run *didlogic_mcp*.
Alternatively you can install didlogic_mcp via pip:
pip install didlogic_mcpAfter installation, you can run it as a script using:
DIDLOGIC_API_KEY=YOUR_DIDLOGIC_KEY python -m didlogic_mcpThe server supports three transport modes:
For local integration with Claude Desktop or similar tools. Uses the DIDLOGIC_API_KEY environment variable for authentication.
# Using uvx (recommended)
DIDLOGIC_API_KEY=your_key uvx didlogic_mcp
# Using uv run
DIDLOGIC_API_KEY=your_key uv run didlogic_mcp
# As Python module
DIDLOGIC_API_KEY=your_key python -m didlogic_mcp --transport stdioFor remote access and web clients. Requires Bearer token in Authorization header for each request.
# Using default port (8000)
python -m didlogic_mcp --transport http
# Custom port via environment variable
PORT=9000 python -m didlogic_mcp --transport http
# Custom host and port
python -m didlogic_mcp --transport http --host 0.0.0.0 --port 9000
# With debug logging
python -m didlogic_mcp --transport http --log-level DEBUG**E
Loading reviews...