- Home
- MCP servers
- Zaifer
Zaifer
- python
0
GitHub Stars
python
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"curio184-zaifer-mcp": {
"command": "python",
"args": [
"/path/to/zaifer-mcp/zaifer_mcp/__main__.py"
],
"env": {
"ZAIF_API_KEY": "YOUR_API_KEY",
"ZAIF_API_SECRET": "YOUR_API_SECRET"
}
}
}
}You can access Zaif’s API capabilities via an MCP server implemented in Python, enabling natural language interfaces through LLMs like Claude or ChatGPT. This MCP server bridges market data, trading operations, and account management, so you can perform actions and retrieve information using plain language.
How to use
Connect to the MCP server from your MCP client (for example Claude Desktop) to query market data, view ticker information, and perform trading or account actions once you provide your API credentials.
How to install
Prerequisites: you need Python installed on your system.
Clone the project repository and install the package in editable mode to keep changes discoverable locally.
Run the following commands in sequence:
Install steps
# Clone the repository
git clone https://github.com/curio184/zaifer-mcp.git
cd zaifer-mcp
# Install in editable mode
pip install -e .
Configure the MCP for Claude Desktop (local/stdio)
Prepare a local stdio configuration to start the MCP server with Python and its main entry point. You can supply API credentials via environment variables to enable full functionality.
{
"mcpServers": {
"zaifer_mcp": {
"command": "python",
"args": ["/path/to/zaifer-mcp/zaifer_mcp/__main__.py"],
"env": {
"ZAIF_API_KEY": "your_api_key_here",
"ZAIF_API_SECRET": "your_api_secret_here"
}
}
}
}
Usage note for API information only
If you only need market data with no API credentials, you can omit the env section. Once Claude Desktop is started, you can begin asking for market information, ticker data, and other supported features.
Examples of typical interactions
Ask for the current price of BTC/JPY or other supported pairs, and Claude will use the get_ticker tool to fetch real-time market data.
Security considerations
Only operations requiring authentication will use your API key and secret. Public market data remains accessible without credentials.
Available tools
get_ticker
Fetches real-time market ticker data for a given trading pair such as BTC/JPY or ETH/JPY.