Use when answering prosopographical questions about the Roman Republic using the DPRR MCP tools. Use when querying magistracies, priesthoods, family relationships, or status assertions from the DPRR RDF store.
DPRR aggregates modern secondary sources (principally Broughton's MRR, Rüpke's Fasti Sacerdotum, Zmeskal's Adfinitas) into a SPARQL-queryable RDF store. Every result is "according to Broughton (or Zmeskal, or Rüpke), as digitised by the DPRR team" — not "according to the ancient sources."
You have three MCP tools: get_schema, validate_sparql, execute_sparql.
Iron rule: ALWAYS validate before execute. No exceptions.
Always use these exact namespace URIs — do NOT guess or use other domains:
PREFIX vocab: <http://romanrepublic.ac.uk/rdf/ontology#>
PREFIX entity: <http://romanrepublic.ac.uk/rdf/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
The validate_sparql tool auto-repairs missing prefixes, but using wrong URIs (e.g. https://dprr.classics.ox.ac.uk/) will cause errors. When in doubt, call get_schema first.
get_schema → draft query → validate_sparql → fix errors → validate again → execute_sparql
Never call execute_sparql without a preceding successful validate_sparql on the same query. If you edit a query after validation, re-validate before executing.
Find a person:
SELECT ?person ?name ?dprrId
WHERE {
?person a vocab:Person .
?person vocab:hasPersonName ?name .
?person vocab:hasDprrID ?dprrId .
?person vocab:hasNomen "Tullius" .
FILTER(CONTAINS(?name, "Cicero"))
}
Career with uncertainty flags and sources:
SELECT ?officeLabel ?dateStart ?dateEnd ?isUncertain
?isDateStartUncertain ?isDateEndUncertain ?srcLabel
WHERE {
?person a vocab:Person .
?person vocab:hasDprrID "TULL2072" .
?pa a vocab:PostAssertion .
?pa vocab:isAboutPerson ?person .
?pa vocab:hasOffice ?office . ?office rdfs:label ?officeLabel .
?pa vocab:hasSecondarySource ?src . ?src rdfs:label ?srcLabel .
OPTIONAL { ?pa vocab:hasDateStart ?dateStart }
OPTIONAL { ?pa vocab:hasDateEnd ?dateEnd }
OPTIONAL { ?pa vocab:isUncertain ?isUncertain }
OPTIONAL { ?pa vocab:isDateStartUncertain ?isDateStartUncertain }
OPTIONAL { ?pa vocab:isDateEndUncertain ?isDateEndUncertain }
}
ORDER BY ?dateStart
ALWAYS query uncertainty flags (isUncertain, isDateStartUncertain, isDateEndUncertain) and the secondary source (hasSecondarySource) on every post assertion. Never omit these.
Relationships with sources:
SELECT ?relatedName ?relLabel ?srcLabel
WHERE {
?person vocab:hasDprrID "TULL2072" .
?ra a vocab:RelationshipAssertion .
?ra vocab:isAboutPerson ?person .
?ra vocab:hasRelatedPerson ?related .
?related vocab:hasPersonName ?relatedName .
?ra vocab:hasRelationship ?rel . ?rel rdfs:label ?relLabel .
?ra vocab:hasSecondarySource ?src . ?src rdfs:label ?srcLabel .
}
Scholarly notes on assertions:
SELECT ?noteText ?noteSrcLabel
WHERE {
?pa a vocab:PostAssertion .
?pa vocab:isAboutPerson ?person .
?person vocab:hasDprrID "CORN1746" .
?pa vocab:hasPostAssertionNote ?note .
?note vocab:hasNoteText ?noteText .
OPTIONAL { ?note vocab:hasSecondarySourceForNote ?ns .
?ns rdfs:label ?noteSrcLabel }
}
The output MUST be well-cited academic prose. Follow these requirements without exception.
Every answer must begin by establishing what DPRR is and what it can and cannot tell us. State that DPRR aggregates secondary scholarship — principally Broughton's MRR — and that results reflect modern editorial judgments, not unmediated ancient evidence.
When reporting an office, date, or relationship from DPRR, attribute it to the underlying secondary source:
Never write: "He held the consulship in 63 BC" as if this were unmediated fact. Always write: "He is recorded as consul in 63 BC (Broughton, MRR II)" or similar.
Map the hasSecondarySource labels to citations:
| DPRR Source Label | Citation |
|---|---|
| Broughton MRR I / II / III | Broughton, MRR I / II / III |
| Rüpke 2005 | Rüpke, Fasti Sacerdotum |
| Zmeskal 2009 | Zmeskal, Adfinitas |
| Ryan 1998, Brennan 2000, etc. | Use as-is |
If isUncertain, isDateStartUncertain, or isDateEndUncertain is true, you MUST flag this in prose. Do not silently present uncertain attestations as fact.
When scholarly notes accompany uncertain assertions, summarise the debate.
A query returning zero results means DPRR's sources do not record it. It does NOT mean the event never happened.
Family connections in DPRR are scholarly reconstructions based on onomastic inference (Zmeskal 2009, Salomies 1992), not documented pedigrees. Present them accordingly:
isNobilis and isNovus encode modern scholarly convention. Brunt (1982) demonstrated that no ancient definition of nobilis or novus homo exists.
When comparing across periods, explicitly note differential documentation:
Never calculate rates or percentages across periods without discussing sample bias and source survival.
DPRR documents only the political upper strata — senators, magistrates, priests, equestrians. Women appear almost exclusively through relationship assertions. State this limitation when relevant, particularly when discussing women, non-elite actors, or drawing conclusions about "Roman society."
End every response with a bibliography of works cited, including:
Where relevant, note that DPRR's relational data cannot represent ideological, economic, or cultural dimensions of political life (Hölkeskamp 2010). Clientage networks were constantly shifting rather than the fixed structures database relationships imply.
If you catch yourself writing any of these, stop and rewrite:
isUncertain / isDateStartUncertain / isDateEndUncertain from post assertion queriesBradley, John. "A Prosopography as Linked Open Data." DHQ 14.2 (2020).
Broughton, T. R. S. The Magistrates of the Roman Republic. 3 vols. (1951–1986).
Brunt, P. A. "Nobilitas and Novitas." JRS 72 (1982): 1–17.
Brunt, P. A. The Fall of the Roman Republic. Oxford (1988).
Develin, R. Patterns in Office-Holding, 366–49 B.C. Brussels (1979).
Flower, H. I. Roman Republics. Princeton (2010).
Hölkeskamp, K.-J. Reconstructing the Roman Republic. Princeton (2010).
Mouritsen, H. Plebs and Politics in the Late Roman Republic. Cambridge (2001).
Rüpke, J. Fasti Sacerdotum. Stuttgart (2005).
Salomies, O. Adoptive and Polyonymous Nomenclature. Helsinki (1992).
Zmeskal, K. Adfinitas. 2 vols. Passau (2009).