Intelligence Aeternum

数据与存储

by codex-curator

AI training dataset marketplace: 2M+ museum artworks with Golden Codex enrichment

什么是 Intelligence Aeternum

AI training dataset marketplace: 2M+ museum artworks with Golden Codex enrichment

README

Intelligence Aeternum MCP

AI training dataset marketplace exposed as MCP servers. 2M+ museum artworks across 7 world-class institutions with on-demand 111-field Golden Codex AI enrichment. AI agents pay with x402 USDC on Base L2. Human buyers pay with Stripe.

Research Dataset License


Quick Start

Connect to the MCP endpoint with any MCP-compatible client:

json
{
  "mcpServers": {
    "intelligence-aeternum": {
      "url": "https://data-portal-172867820131.us-west1.run.app/mcp",
      "transport": "streamable-http"
    }
  }
}

Or use the MonetizedMCP broker (x402 payment orchestration):

json
{
  "mcpServers": {
    "fluora-mcp": {
      "url": "https://fluora-mcp-172867820131.us-west1.run.app/mcp",
      "transport": "streamable-http"
    }
  }
}

Architecture

code
AI Agent (Claude, GPT, etc.)
    |
    +---> Fluora MCP (MonetizedMCP broker)         [TypeScript/Express]
    |     3 tools: price-listing, payment-methods, make-purchase
    |     Orchestrates x402 USDC payments via MonetizedMCP SDK
    |     Proxies to Data Portal with payment proof
    |
    +---> Data Portal MCP (FastMCP content server)  [Python/FastAPI]
          13 tools: search, metadata, oracle, enrichment, compliance...
          Serves 2M+ artworks from Firestore manifest
          On-demand VLM enrichment via Gemini

Human Buyer (Browser)
    |
    +---> Data Portal REST API / golden-codex.com
          Stripe checkout for dataset purchases and enrichment
          Same artifact delivery pipeline as x402

Services

Data Portal (13 MCP Tools)

ToolPaid?Description
search_alexandriaFreeSearch 2M+ museum artworks across 7 institutions
get_curated_metadataFree (5/day)Human_Standard metadata + image (500-1,200 tokens)
get_oracle_metadata$0.16 USDCHybrid_Premium 111-field VLM deep analysis + image
get_compliance_manifestFreeAB 2013 + EU AI Act Article 53 compliance manifests
search_datasetsFreeBrowse 7 museum dataset catalogs
preview_datasetFreeSample images from a dataset
get_pricingFreeCalculate pricing with volume discounts
get_agent_guideFreeComplete API workflow documentation
list_enrichment_tiersFreeAvailable enrichment tiers and pricing
get_enrichment_statusFreePoll enrichment job status
purchase_datasetPaidInitiate batch dataset purchase
enrich_agent_imageFrom $0.16Submit YOUR image for Golden Codex enrichment
deliver_artifactsFrom $0.04On-demand artifact delivery

Fluora MCP (MonetizedMCP Broker)

ToolDescription
price-listingBrowse 7 purchasable data products with pricing
payment-methodsGet accepted payment methods (x402 USDC for agents, Stripe for humans)
make-purchasePurchase data with x402 USDC micropayment

Pipeline Tools (Coming to MCP)

ToolDescriptionPrice
SD 3.5 Large + T5-XXLImage generation on NVIDIA L4 GPU with LoRA supportTBD
ESRGAN x4 UpscalerReal-ESRGAN super-resolution (1024px to 4096px in ~1.15s)$0.10
Nova (Metadata Creation)111-field Golden Codex VLM analysis via Gemini$0.20
Atlas (Metadata Infusion)XMP/IPTC/C2PA embedding + SHA-256 Soulmark + hash registry$0.10
Aegis (Verification)"Shazam for Art" — perceptual hash provenance lookupFree
Archivus (Arweave Storage)Permanent 200+ year storage — pay USDC, no AR neededTBD
Mintra (NFT Minting)Polygon NFT with full Golden Codex metadata on-chainTBD

Museums

InstitutionArtworksLicense
Metropolitan Museum of Art375,000CC0
Rijksmuseum709,000CC0
Smithsonian Institution185,000CC0
National Gallery of Art130,000CC0
Art Institute of Chicago120,000CC0
Cleveland Museum of Art61,000CC0
Paris Collections (Louvre, Orsay, Rodin)45,000CC0

All source images are CC0/public domain. Enrichment metadata is commercially licensed by Metavolve Labs.


Payment

Two payment paths -- one marketplace, two buyer types:

  • AI agents pay with x402 USDC micropayments on Base L2. No API keys, no subscriptions -- agents pay autonomously per request.
  • Human buyers pay with Stripe checkout. Credit/debit cards, Apple Pay, Google Pay -- standard web checkout for dataset purchases and enrichment orders.

x402 Flow (AI Agents)

  1. Call a paid tool without payment
  2. Receive HTTP 402 with x402 payment envelope
  3. Execute USDC transfer on Base L2
  4. Re-call with X-PAYMENT header containing transaction proof
  5. Receive data

Wallet: 0xFE141943a93c184606F3060103D975662327063B

Stripe Flow (Human Buyers)

  1. Select data products or enrichment services
  2. Complete Stripe checkout (cards, Apple Pay, Google Pay)
  3. Receive artifacts via the same delivery pipeline

Genesis Epoch (Launch Pricing)

20% off all prices for 90 days (started Feb 23, 2026).

Volume discounts auto-apply per wallet:

  • 100+ records: 25% off
  • 500+ records: 37% off
  • 2000+ records: 50% off

Discovery

EndpointURL
Data Portal MCPhttps://data-portal-172867820131.us-west1.run.app/mcp
Fluora MCPhttps://fluora-mcp-172867820131.us-west1.run.app/mcp
OpenAPI Docshttps://data-portal-172867820131.us-west1.run.app/docs
llms.txt (Data Portal)https://data-portal-172867820131.us-west1.run.app/llms.txt
llms.txt (Fluora)https://fluora-mcp-172867820131.us-west1.run.app/llms.txt
.well-known/mcp.jsonhttps://data-portal-172867820131.us-west1.run.app/.well-known/mcp.json
Schema (Fluora)https://fluora-mcp-172867820131.us-west1.run.app/mcp/schema
Health (Data Portal)https://data-portal-172867820131.us-west1.run.app/health
Health (Fluora)https://fluora-mcp-172867820131.us-west1.run.app/health

Research

Our peer-reviewed paper The Density Imperative demonstrates that dense metadata significantly impacts VLM capability:

  • +25.5% improvement with 111-field Golden Codex enrichment
  • -54.4% degradation with sparse 10-20 word captions
  • +160% semantic coverage vs raw captions

Paper: DOI: 10.5281/zenodo.18667735


Directory Structure

code
intelligence-aeternum-mcp/
+-- fluora-mcp/              # MonetizedMCP broker (TypeScript/Express)
|   +-- src/
|   |   +-- main.ts          # Entrypoint
|   |   +-- server/
|   |   |   +-- server.ts    # MCP server + HTTP endpoints
|   |   |   +-- purchasableItems.ts  # 7 product catalog
|   |   |   +-- paymentMethods.ts    # USDC on Base L2
|   |   +-- config/
|   |       +-- config.ts    # Environment config
|   +-- Dockerfile
|   +-- package.json
|   +-- deploy.sh
|
+-- data-portal/             # FastMCP content server (Python/FastAPI)
|   +-- main.py              # FastAPI app + MCP mount
|   +-- mcp_server.py        # 13 MCP tool definitions
|   +-- auth.py              # x402 payment verification + rate limiting
|   +-- pricing.py           # Pricing tiers + Genesis Epoch
|   +-- compliance.py        # AB 2013 + EU AI Act manifests
|   +-- volume_tracker.py    # Per-wallet volume discounts
|   +-- image_fetcher.py     # Museum API integration
|   +-- routes/
|   |   +-- agent.py         # Agent API endpoints
|   |   +-- reader.py        # Verilian Reader (decode XMP metadata)
|   |   +-- catalog.py       # Dataset catalog
|   |   +-- orders.py        # Stripe + x402 orders
|   |   +-- enrich.py        # Enrichment-as-a-Service
|   |   +-- deliver.py       # On-demand delivery
|   |   +-- admin.py         # Admin utilities
|   +-- Dockerfile
|   +-- requirements.txt
|   +-- deploy.sh
|
+-- glama.json               # Glama.ai MCP directory manifest
+-- README.md                # This file

Compliance

Every purchase auto-generates provenance manifests at no additional cost:

  • AB 2013 (California AI Training Data Transparency Act)
  • EU AI Act Article 53 (Training data documentation requirements)

Enterprise

Full dataset access with compliance manifests starting at $8,000.

Contact: enterprise@iaeternum.ai


Important: What You're Paying For

Pricing applies to structured AI training metadata only -- not the source images. All 2M+ source artworks are CC0/public domain from partner museums and freely available from their original APIs. What Intelligence Aeternum provides is:

  • Golden Codex enrichment: 111-field NEST metadata generated by multi-model VLM analysis (Gemini + Claude + GPT-4o)
  • Compliance manifests: Auto-generated AB 2013 + EU AI Act Article 53 documentation
  • Pipeline services: Upscaling, metadata infusion, C2PA signing, hash registration, permanent storage
  • Structured datasets: Pre-enriched collections optimized for AI training workflows

License

Source code in this repository is provided for reference and transparency. The enrichment metadata, Golden Codex schema, and pipeline services are proprietary to Metavolve Labs, Inc. Source images from museums are CC0/public domain.


Links


Metavolve Labs, Inc. | San Francisco, California "Synthetic Data is not the problem. Synthetic Garbage is."

常见问题

Intelligence Aeternum 是什么?

AI training dataset marketplace: 2M+ museum artworks with Golden Codex enrichment

相关 Skills

技术栈评估

by alirezarezvani

Universal
热门

对比框架、数据库和云服务,结合 5 年 TCO、安全风险、生态活力与迁移复杂度做量化评估,适合技术选型、栈升级和替换路线决策。

帮你系统比较技术栈优劣,不只看功能,还把TCO、安全性和生态健康度一起量化,选型和迁移决策更稳。

数据与存储
未扫描18.5k

资深数据科学家

by alirezarezvani

Universal
热门

覆盖实验设计、特征工程、预测建模、因果推断与模型评估,适合用 Python/R/SQL 做 A/B 测试、时序分析和生产级 ML 落地,支撑数据驱动决策。

从 A/B 测试、因果分析到预测建模一条龙搞定,既有硬核统计方法也懂业务沟通,特别适合把数据结论真正落地。

数据与存储
未扫描18.5k

资深架构师

by alirezarezvani

Universal
热门

适合系统设计评审、ADR记录和扩展性规划,分析依赖与耦合,权衡单体或微服务、数据库与技术栈选型,并输出Mermaid、PlantUML、ASCII架构图。

搞系统设计、技术选型和扩展规划时,用它能更快理清架构决策与依赖关系,还能直接产出 Mermaid/PlantUML 图,方案讨论效率很高。

数据与存储
未扫描18.5k

相关 MCP Server

SQLite 数据库

编辑精选

by Anthropic

热门

SQLite 是让 AI 直接查询本地数据库进行数据分析的 MCP 服务器。

这个服务器解决了 AI 无法直接访问 SQLite 数据库的问题,适合需要快速分析本地数据集的开发者。不过,作为参考实现,它可能缺乏生产级的安全特性,建议在受控环境中使用。

数据与存储
87.4k

by Anthropic

热门

PostgreSQL 是让 Claude 直接查询和管理你的数据库的 MCP 服务器。

这个服务器解决了开发者需要手动编写 SQL 查询的痛点,特别适合数据分析师或后端开发者快速探索数据库结构。不过,由于是参考实现,生产环境使用前务必评估安全风险,别指望它能处理复杂事务。

数据与存储
87.4k

by Firecrawl

热门

Firecrawl 是让 AI 直接抓取网页并提取结构化数据的 MCP 服务器。

它解决了手动写爬虫的麻烦,让 Claude 能直接访问动态网页内容。最适合需要实时数据的研究者或开发者,比如监控竞品价格或抓取新闻。但要注意,它依赖第三方 API,可能涉及隐私和成本问题。

数据与存储
6.6k

评论