The Adfin MCP Server is a Model Context Protocol Server designed to connect with Adfin APIs, enabling seamless integration with Claude Desktop. This server enhances Claude's capabilities by providing access to Adfin's tools and services directly within the AI assistant interface.
uv
bash
curl -LsSf https://astral.sh/uv/install.sh | sh
powershell
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
claude_desktop_config.json
with the following configuration:json
{
"mcpServers": {
"Adfin": {
"command": "<home_path>/.local/bin/uv",
"args": [
"--directory",
"<absolute_path_to_adfin_mcp_folder>",
"run",
"main_adfin_mcp.py"
],
"env": {
"ADFIN_EMAIL": "<email>",
"ADFIN_PASSWORD": "<password>"
}
},
"filesystem": {
"command": "<home_path>/.local/bin/uv",
"args": [
"--directory",
"<absolute_path_to_adfin_mcp_folder>",
"run",
"filesystem.py"
]
}
}
}
Note: The first launch may take 10-20 seconds as the required packages are installed and the latest Adfin API documentation is downloaded.
Once configured, Claude Desktop will automatically make the most recent Adfin API tools available to your AI assistant.
plaintext
Give me a credit control status check.
plaintext
Create a new invoice for 60 GBP for Abc Def that is due in a week. His email is [email protected].
plaintext
Upload all pdf invoices from the invoices folder from my Desktop.
The Adfin MCP Server is a Python-based implementation designed to facilitate interaction between Claude Desktop and Adfin APIs. It ensures that users have access to the latest Adfin tools and services directly within their AI assistant.