Skip to content

MN Insights (MNTEST)

MN Insights is the free assessment layer of the Multiple Natures framework. It administers 76 items and returns a full alignment profile: scores across 9 Natures and 10 Intelligences, a top nature, and per-dimension breakdowns.

Base path: /assessments

Endpoints

Get assessment items

Retrieve the full set of 76 MNTEST items. No authentication required.

GET /assessments/items

Response

[
{
"id": 1,
"text": "I find it easy to adapt my approach to fit the people I'm working with.",
"dimension": "nature",
"nature": "Adapting"
}
]

Items are returned in a fixed, randomisation-safe order. Present them to the user in this order or shuffle client-side.

Response fields

FieldTypeDescription
idintegerStable item identifier
textstringItem statement (rated 1–5 by the user)
dimensionstring"nature" or "intelligence"
nature / intelligencestringWhich nature or intelligence this item loads on

Submit responses

Submit the user’s responses. Requires an active session.

POST /assessments/submit
Cookie: mn_session=...
Content-Type: application/json

Request body

{
"responses": [
{ "item_id": 1, "value": 4 },
{ "item_id": 2, "value": 2 }
]
}

All 76 items must be included. value is an integer from 1 to 5.

Response

{
"ok": true,
"assessment_id": 1847
}

Get latest results

Retrieve the most recent scored assessment for the current user. Requires an active session.

GET /assessments/latest
Cookie: mn_session=...

Response

{
"assessment_id": 1847,
"completed_at": "2026-04-29T18:00:00Z",
"top_nature": "Creating",
"natures": {
"Creating": 82,
"Adapting": 71,
"Providing": 68,
"Performing": 65,
"Analyzing": 60,
"Organizing": 55,
"Advising": 52,
"Leading": 48,
"Innovating": 44
},
"intelligences": {
"Linguistic": 79,
"Logical": 73,
"Spatial": 68,
"Musical": 65,
"Bodily": 60,
"Naturalist": 57,
"Interpersonal": 54,
"Intrapersonal": 51,
"Existential": 48,
"Spiritual": 43
}
}

Scores are normalised to 0–100.

Nature order

The 9 Natures in canonical order:

  1. Creating
  2. Innovating
  3. Performing
  4. Advising
  5. Organizing
  6. Providing
  7. Adapting
  8. Analyzing
  9. Leading