JACTUS MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@JACTUS MCP ServerSimulate a $100,000 PAM loan at 5% interest maturing in 1 year"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
JACTUS MCP Server
Standalone MCP server for JACTUS — Enables AI assistants like Claude Code to directly access JACTUS financial contract simulation capabilities.
What is this?
Model Context Protocol (MCP) is a protocol that allows AI assistants to interact with external tools. This package gives Claude (and other MCP-compatible assistants) the ability to discover, validate, and simulate all 18 ACTUS financial contract types powered by JACTUS.
Installation
pip install jactus-mcpThis installs the MCP server and pulls jactus as a dependency automatically.
Download Docs & Examples
After installing, optionally download JACTUS documentation and examples from GitHub:
jactus-mcp setupThis downloads the matching version's docs/ and examples/ into ~/.jactus-mcp/data/. You can also specify a tag:
jactus-mcp setup --tag v0.2.0 # specific version
jactus-mcp setup --force # re-download
jactus-mcp status # check what's downloaded
jactus-mcp clean # remove downloaded dataFrom GitHub
pip install git+https://github.com/pedronahum/JACTUS-MCP.gitFor Development
git clone https://github.com/pedronahum/JACTUS-MCP.git
cd JACTUS-MCP
pip install -e ".[dev]"Configuration
Claude Code
Add to your Claude Code MCP settings (.mcp.json or settings):
{
"mcpServers": {
"jactus": {
"command": "jactus-mcp"
}
}
}Or using Python module:
{
"mcpServers": {
"jactus": {
"command": "python",
"args": ["-m", "jactus_mcp"]
}
}
}Claude Desktop
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"jactus": {
"command": "jactus-mcp"
}
}
}Transport Options
# Default: stdio transport (for local clients)
jactus-mcp
# or
python -m jactus_mcp
# Streamable HTTP transport (for remote clients)
python -m jactus_mcp --transport streamable-httpFeatures
Core Tools (always available)
These tools work with just pip install jactus-mcp — no source tree needed:
Tool | Description |
| List all 18 contract types by category |
| Get detailed info about a contract type |
| Get required/optional parameters for all 18 types |
| List all ACTUS event types |
| List all risk factor observer types |
| Simulate a contract and get structured cash flows |
| Validate contract attributes before simulation |
| Compute DV01, delta, gamma, PV01 risk metrics |
| Simulate a portfolio with aggregation |
| Structured guides on 7 topics |
| Built-in PAM quick start example |
| Verify installation and JACTUS availability |
| Version information |
Docs & Example Tools (requires setup)
These tools require JACTUS docs/examples. Enable them with jactus-mcp setup:
Tool | Description |
| Search across JACTUS documentation |
| Browse documentation files and headers |
| List Python scripts and notebooks |
| Retrieve example source code |
| Execute an example |
Alternatively, point to a local JACTUS checkout:
export JACTUS_ROOT=/path/to/JACTUSMCP Resources
Resource URI | Description |
| System architecture guide |
| PAM contract walkthrough |
| Derivative contracts guide |
| Project overview |
| Dynamic contract info + schema |
MCP Prompts
Prompt | Description |
| Guide to create a new contract |
| Help troubleshoot errors |
| Explain a contract type |
| Compare two contract types |
Quick Example
With the MCP server running, ask Claude:
"Simulate a $100k PAM loan at 5% interest maturing in 1 year"
Claude will:
Call
jactus_get_contract_schema("PAM")to get required fieldsCall
jactus_simulate_contractwith the attributesReturn structured cash flow events (IED, IP, MD) with payoff amounts
Contract Types
JACTUS implements all 18 ACTUS contract types:
Principal: PAM, LAM, LAX, NAM, ANN, CLM
Non-Principal: UMP, CSH, STK
Exotic: COM
Derivatives: FXOUT, OPTNS, FUTUR, SWPPV, SWAPS, CAPFL, CEG, CEC
Development
Running Tests
# Unit tests
pytest tests/ -v --ignore=tests/test_mcp_integration.py
# Integration tests (requires MCP stdio client)
pytest tests/test_mcp_integration.py -v
# All tests
pytest tests/ -vArchitecture
JACTUS-MCP/
├── src/jactus_mcp/
│ ├── __init__.py # Package version
│ ├── __main__.py # python -m jactus_mcp entry point
│ ├── server.py # FastMCP server (tools, resources, prompts)
│ ├── models.py # Pydantic response models
│ └── tools/
│ ├── _utils.py # Shared utilities (get_jactus_root, type conversion)
│ ├── contracts.py # Contract discovery & schema (18 types)
│ ├── simulate.py # Contract simulation
│ ├── examples.py # Example retrieval & execution
│ ├── validation.py # Attribute validation
│ ├── documentation.py # Documentation search & topic guides
│ ├── risk.py # Risk analytics (DV01, delta, gamma)
│ └── system.py # Health checks & version info
├── tests/ # Comprehensive test suite
├── pyproject.toml # Package configuration
└── README.mdLicense
Apache License 2.0
Links
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pedronahum/JACTUS-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server