Clone the MCP server to your machine
Download the MCP server
To download the MCP server to your machine and access the project folder:
Clone the repository:
git clone <repository url>Navigate to the API documentation MCP folder:
cd pdp-mcp/mcp-for-api-documentation
Create a Python environment
To create a Python environment:
Install uv:
pip install uvCreate a Python virtual environment using uv:
uv venv# creates a .venvActivate the environment:
source .venv/bin/activateConfirm Python is using the virtual environment:
which python
Install dependencies
To install dependencies, run the following commands from pdp-mcp/mcp-for-api-documentation folder:
Install MCP SDK, HTTP client dependencies and J.P. Morgan MCP package:
uv syncThis usespyproject.tomlanduv.lockVerify installation:
uv pip list | grep -E 'mcp|httpx'Expected output includeshttpx,httpx-sse,mcp,jpmc-mcp-for-api-documentation