Skip to main content

Python library for intangible asset valuation implementing cost, market, and income approaches. 124+ functions for patents, brands, goodwill, PPA, and more.

Project description

Intangible Asset Valuation Engine

Complete intangible asset valuation library implementing 124+ functions from the Intangible Asset Valuation textbook. Python library + MCP server + AI-Agent Skills.

PyPI CI License: MIT Python 3.11+ Docs

Overview

A production-grade Python library for intangible asset valuation, implementing every formula from the Intangible Asset Valuation textbook by Simon Mak, William Yuen, Paul Wu, and Wayne Hu (Valuation in Practice Series, Ascent Partners). Designed for developers, financial analysts, accountants, and AI agents who need auditable, structured valuation computations for ASC 805 / IFRS 3 compliant workflows.

Three-layer architecture:

  1. Python Library — 22 modules, 124+ typed functions, all returning ValuationResult (value + assumptions + sensitivity)
  2. MCP Server — 54 tools for AI agents (Claude, OpenCode, etc.) via stdio/SSE
  3. AI-Agent Skills — 3 skill definitions with workflow guidance for valuation domains

Installation

pip install intangible-valuation          # library only
pip install intangible-valuation[mcp]     # + MCP server
pip install intangible-valuation[dev]     # + pytest, ruff, mypy

Quick Start

Python Library

from intangible_valuation.core.time_value import present_value
from intangible_valuation.core.discount_rates import build_up_discount_rate
from intangible_valuation.income_methods.relief_from_royalty import relief_from_royalty

# Present Value
result = present_value(future_value=500_000, discount_rate=0.10, periods=8)
print(f"PV: ${result.value:,.2f}")  # $233,253.69

# Build-Up Discount Rate
rate = build_up_discount_rate(
    risk_free_rate=0.04, equity_risk_premium=0.06,
    size_premium=0.02, industry_risk_premium=0.01, specific_risk_premium=0.03,
)
print(f"Discount rate: {rate.value:.2%}")  # 16.00%

# Relief from Royalty — Patent Valuation
value = relief_from_royalty(
    revenue_projections=[1_000_000, 1_100_000, 1_200_000, 1_300_000, 1_400_000],
    royalty_rate=0.05, discount_rate=0.12, tax_rate=0.25, useful_life=5,
)
print(f"Patent value: ${value.value:,.2f}")

MCP Server (for AI Agents)

cd mcp_server && python server.py

Connect with any MCP-compatible AI agent. All 54 valuation tools available.

AI-Agent Skills

Copy the skills/ directory to your agent's skills folder:

  • asset-valuation — Patents, trademarks, technology, customer relationships, human capital
  • discount-rate-construction — Build-up, CAPM, WACC, risk premiums, adjustments
  • purchase-price-allocation — ASC 805 / IFRS 3 PPA workflow, goodwill calculation, impairment testing

Valuation Methods by Category

Category Methods Chapter
Time Value PV, FV, annuity, perpetuity, growing annuity, terminal value 2
Discount Rates Build-up, CAPM, WACC, TAB, control premium, DLOM, currency adjustment 2
Statistics Monte Carlo, decision trees, regression 2
Cost Approach Reproduction cost, replacement cost 3
Market Approach Comparable transactions, royalty capitalization 3
Income Methods Relief from Royalty, MPEEM, incremental cash flow 4
Intellectual Property Patent, trademark, copyright, trade secret 5
Royalty Analysis Benchmarking, 25% rule, adjustment 6
Technology Developed technology, software, data assets, platforms 7
Customer-Related Customer relationships, distribution network, non-compete 8
Human Capital Assembled workforce, key person 9
Goodwill & PPA Goodwill calculation, PPA waterfall 10
Impairment Goodwill & intangible impairment (ASC 350 / IAS 36) 11
Monte Carlo Simulation, sensitivity analysis 15
Decision Trees Backward induction 16
Litigation Lost profits, pre-judgment interest 17
Transfer Pricing CUP method, OECD guidelines 18

Why This Library?

  • Auditable — Every function returns ValuationResult with value, method, inputs, assumptions, and step-by-step calculation breakdown
  • Textbook-accurate — All 124+ formulas verified against book example values with 698 unit tests
  • AI-ready — MCP server and Skills for seamless AI agent integration
  • Complete coverage — All three valuation approaches (cost, market, income) across 19 chapters
  • Open source — MIT license, extensible, well-documented

Development

# Install dev dependencies
pip install -e ".[dev]"

# Run tests
pytest

# Run with coverage
pytest --cov=src --cov-report=term-missing

# Lint
ruff check .

# Type check
mypy src/

Documentation

Companion Textbook

Intangible Asset Valuation: A Comprehensive Guide to Valuing Brands, IP, Technology, and Human Capital
Theory, Methods, Regulation, and Practice — Valuation in Practice Series by Ascent Partners
By Simon Mak, William Yuen, Paul Wu, Wayne Hu · 176 pages · 19 chapters · 3 appendices

Citing This Project

@software{intangible_valuation_engine,
  author = {Mak, Simon and Yuen, William and Wu, Paul and Hu, Wayne},
  title = {Intangible Asset Valuation Engine},
  year = {2026},
  url = {https://github.com/simonplmak-cloud/intangible-valuation},
  license = {MIT},
}

Based on formulas from the Intangible Asset Valuation textbook.

License

MIT — see LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

intangible_valuation-1.0.1.tar.gz (84.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

intangible_valuation-1.0.1-py3-none-any.whl (101.5 kB view details)

Uploaded Python 3

File details

Details for the file intangible_valuation-1.0.1.tar.gz.

File metadata

  • Download URL: intangible_valuation-1.0.1.tar.gz
  • Upload date:
  • Size: 84.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for intangible_valuation-1.0.1.tar.gz
Algorithm Hash digest
SHA256 5c14410a5fa17b4d56964c1a66ad2dc7d53b4e6b6165594b8340ce5b2f237edb
MD5 8b6a71f50fc41933627dfb56702e7d21
BLAKE2b-256 81088f3bbff9d9cab27ec0f5b59fceecb1b0115c3416220c2ec74eace4c5af56

See more details on using hashes here.

Provenance

The following attestation bundles were made for intangible_valuation-1.0.1.tar.gz:

Publisher: publish.yml on simonplmak-cloud/intangible-valuation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file intangible_valuation-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for intangible_valuation-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ac9b571f986f2c5834e0f64defaef82ce0f6acd53e45185df0ec735a6e04b96a
MD5 281b8a847ab2217d591ef8e6ffb88d58
BLAKE2b-256 f4eebd59d5b543c3dff7cfda995e2708a06dfe389e3986f09c34ede15f61ceff

See more details on using hashes here.

Provenance

The following attestation bundles were made for intangible_valuation-1.0.1-py3-none-any.whl:

Publisher: publish.yml on simonplmak-cloud/intangible-valuation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page