# Global Governance & Institutional Quality Data

## Links

- Product page URL: https://www.agentpmt.com/marketplace/governance-institutional-quality
- Product markdown URL: https://www.agentpmt.com/marketplace/governance-institutional-quality?format=agent-md
- Product JSON URL: https://www.agentpmt.com/marketplace/governance-institutional-quality?format=agent-json

## Overview

- Product ID: 6980db7d71cad8f61bf5b1d7
- Type: data
- Unit type: request
- Price: 1000 credits
- Categories: Data Science, Compliance & Audit, Data Processing, Academic & Scientific Research, Public Records & Government Data, Civic Data & Demographics
- Generated at: 2026-06-27T10:19:06.114Z

### Page Description

Explore governance and institutional quality data for any country in the world. Look up corruption control scores, rule of law rankings, government effectiveness, political stability, regulatory quality, and civic voice indicators. Compare how countries rank on governance, track institutional improvement over time, and benchmark against regional peers — all from a comprehensive global data set.

### Agent Description

Query governance indicators including corruption control, rule of law, government effectiveness, political stability, regulatory quality, and voice and accountability for any country or region. Get percentile rankings, historical trends, and peer group comparisons.

## Details

### Details

Explore governance and institutional quality data for any country in the world. Look up corruption control scores, rule of law rankings, government effectiveness, political stability, regulatory quality, and civic voice indicators. Compare how countries rank on governance, track institutional improvement over time, and benchmark against regional peers — all from a comprehensive global data set.

### Actions

- `query_governance_data` (10 credits): Fetch governance and institutional quality data for a country or region from the World Bank Worldwide Governance Indicators (WGI). Returns six governance dimensions with WGI scores, percentile rankings, historical trends, peer comparisons, and SDG 16 alignment.

### Use Cases

Research corruption control scores by country, Compare rule of law rankings across regions, Track government effectiveness over time, Analyze political stability indicators, Study regulatory quality benchmarks, Monitor voice and accountability metrics, Assess governance improvement or decline trends, Compare institutional quality with regional peers, Support risk profiling for investment decisions, Research progress on good governance targets

### Workflows Using This Tool

No public workflows currently reference this product.

### Related Content

No related content is currently linked to this product.

## Integration Details

### DynamicMCP

- Setup page URL: https://www.agentpmt.com/dynamic-mcp
- Claude setup guide: https://www.agentpmt.com/dynamic-mcp#platform=claude
- ChatGPT setup guide: https://www.agentpmt.com/dynamic-mcp#platform=chatgpt
- Cursor setup guide: https://www.agentpmt.com/dynamic-mcp#platform=cursor
- Windsurf setup guide: https://www.agentpmt.com/dynamic-mcp#platform=windsurf

Use the local router for command-based MCP clients. It forwards requests to `https://api.agentpmt.com/mcp` and does not execute tools locally.

```bash
npm install -g @agentpmt/mcp-router
agentpmt-setup
```

### REST API

The live page renders cURL, Python, JavaScript, and Node.js examples. Logged-in users see those examples prefilled with their own API and budget credentials.

- Purchase endpoint: https://api.agentpmt.com/products/purchase
- Authorization format: `Bearer <base64(apiKey:budgetKey)>`

```bash
curl -X POST "https://api.agentpmt.com/products/purchase" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer eW91ci1hcGkta2V5LWhlcmU6eW91ci1idWRnZXQta2V5LWhlcmU=" \
  -d '{
    "product_id": "6980db7d71cad8f61bf5b1d7",
    "parameters": {
      "action": "query_governance_data",
      "country_or_region": "example_country_or_region",
      "governance_aspect": "all",
      "include_percentile_ranks": true,
      "include_historical_trends": true,
      "time_period": "latest",
      "include_peer_comparison": true
    }
  }'
```

### Autonomous Agents

Autonomous agents can access this tool through AgentAddress credit balances or direct x402 payments. Use the Autonomous Agent API reference for endpoint shapes after choosing the access pattern below.

- Autonomous Agent API reference URL: https://www.agentpmt.com/docs/api-reference/autonomous-agents
- Autonomous Agent API reference markdown URL: https://www.agentpmt.com/docs/api-reference/autonomous-agents?format=agent-md
- Credit-Based Access Using AgentAddress: https://www.agentpmt.com/docs/autonomous-agents/credit-based-tool-usage-with-agentaddress
- AgentAddress is preferred for persistent file access, stored platform state, and maximum tool use ability across repeated calls.
- Direct x402 is for independent one-off tool calls that do not require shared files or stored platform state.
- Direct x402 public payments: USDC on Base, Arbitrum, Optimism, Polygon, and Avalanche.

#### Product Skill Package

This product has a published Agent Skill package for product-specific operating instructions.

- Skill slug: global-governance-institutional-quality-data
- Version: 1.0.0
- Download SKILL.md: https://raw.githubusercontent.com/AgentPMT/agent-skills/main/skills/global-governance-institutional-quality-data/SKILL.md
- Package source: https://github.com/AgentPMT/agent-skills/tree/main/skills/global-governance-institutional-quality-data
- OpenClaw listing: https://clawhub.ai/agentpmt/global-governance-institutional-quality-data
- OpenClaw install: `openclaw skills install global-governance-institutional-quality-data`
- skills.sh install: `npx skills add AgentPMT/agent-skills --skill global-governance-institutional-quality-data`
- Last published: 2026-06-24T05:25:58.206Z

### Schema

#### Parameters

- Schema type: actions

```json
{
  "actions": {
    "query_governance_data": {
      "description": "Fetch governance and institutional quality data for a country or region from the World Bank Worldwide Governance Indicators (WGI). Returns six governance dimensions with WGI scores, percentile rankings, historical trends, peer comparisons, and SDG 16 alignment.",
      "properties": {
        "country_or_region": {
          "type": "string",
          "description": "Country or region name in plain language (e.g., 'United States', 'India', 'Sub-Saharan Africa'). Accepts partial matches and 3-letter ISO codes.",
          "required": true
        },
        "governance_aspect": {
          "type": "string",
          "description": "Governance dimension to query. Options: corruption, rule_of_law, effectiveness, stability, regulatory, voice, or all.",
          "required": false,
          "default": "all",
          "enum": [
            "corruption",
            "rule_of_law",
            "effectiveness",
            "stability",
            "regulatory",
            "voice",
            "all"
          ]
        },
        "include_percentile_ranks": {
          "type": "boolean",
          "description": "Include percentile rankings (0-100 scale) for international comparison.",
          "required": false,
          "default": true
        },
        "include_historical_trends": {
          "type": "boolean",
          "description": "Include historical trends showing improvement or deterioration over time.",
          "required": false,
          "default": true
        },
        "time_period": {
          "type": "string",
          "description": "Time period: 'latest' (most recent), 'last_5_years', 'last_10_years', a single year 'YYYY', or a range 'YYYY:YYYY'.",
          "required": false,
          "default": "latest"
        },
        "include_peer_comparison": {
          "type": "boolean",
          "description": "Include comparison with regional and income group peers (World, High Income, Upper Middle Income, Lower Middle Income, Low Income).",
          "required": false,
          "default": true
        }
      }
    }
  },
  "properties": {
    "action": {
      "type": "string",
      "description": "Action to perform: 'get_instructions' for documentation, 'query_governance_data' to fetch data",
      "required": true,
      "enum": [
        "get_instructions",
        "query_governance_data"
      ]
    },
    "country_or_region": {
      "type": "string",
      "description": "Country or region name in plain language (e.g., 'United States', 'India', 'Sub-Saharan Africa')",
      "required": false
    },
    "governance_aspect": {
      "type": "string",
      "description": "Governance aspect: 'corruption', 'rule_of_law', 'effectiveness', 'stability', 'regulatory', 'voice', or 'all'",
      "required": false,
      "default": "all",
      "enum": [
        "corruption",
        "rule_of_law",
        "effectiveness",
        "stability",
        "regulatory",
        "voice",
        "all"
      ]
    },
    "include_percentile_ranks": {
      "type": "boolean",
      "description": "Include percentile rankings (0-100 scale) for international comparison",
      "required": false,
      "default": true
    },
    "include_historical_trends": {
      "type": "boolean",
      "description": "Include historical trends showing improvement or deterioration over time",
      "required": false,
      "default": true
    },
    "time_period": {
      "type": "string",
      "description": "Time period: 'latest' (most recent), 'last_10_years', or specific range 'YYYY:YYYY' (e.g., '2015:2020')",
      "required": false,
      "default": "latest"
    },
    "include_peer_comparison": {
      "type": "boolean",
      "description": "Include comparison with regional and income group peers",
      "required": false,
      "default": true
    }
  }
}
```

### Usage Instructions

# Governance & Institutional Quality Data

Access comprehensive governance data from the World Bank's Worldwide Governance Indicators (WGI) database covering 200+ countries. Query six core governance dimensions with WGI scores, percentile rankings, historical trends, and peer comparisons using natural language country names.

## Actions

### query_governance_data

Fetch governance indicator data for a country or region.

**Required Parameters:**
- `action` (string): Must be `"query_governance_data"`
- `country_or_region` (string): Country or region name in plain language (e.g., `"United States"`, `"India"`, `"Sub-Saharan Africa"`)

**Optional Parameters:**
- `governance_aspect` (string, default: `"all"`): Governance dimension to query. One of:
  - `"corruption"` - Control of corruption indicators
  - `"rule_of_law"` - Rule of law and legal institutions
  - `"effectiveness"` - Government effectiveness and service delivery
  - `"stability"` - Political stability and absence of violence
  - `"regulatory"` - Regulatory quality and business environment
  - `"voice"` - Voice and accountability, democratic participation
  - `"all"` - All 6 WGI dimensions
- `include_percentile_ranks` (boolean, default: `true`): Include percentile rankings (0-100 scale) for international comparison
- `include_historical_trends` (boolean, default: `true`): Include historical trends showing improvement or deterioration over time
- `time_period` (string, default: `"latest"`): Time period for data. Options:
  - `"latest"` - Most recent available data
  - `"last_5_years"` - Last 5 years of data
  - `"last_10_years"` - Last 10 years of data
  - `"YYYY:YYYY"` - Specific year range (e.g., `"2015:2020"`). Years must be between 1960 and current year.
  - `"YYYY"` - A single year (e.g., `"2020"`)
- `include_peer_comparison` (boolean, default: `true`): Include comparison with regional and income group peers (World, High Income, Upper Middle Income, Lower Middle Income, Low Income)

**Example - Latest governance for a country:**
```json
{
  "action": "query_governance_data",
  "country_or_region": "United States",
  "governance_aspect": "all",
  "time_period": "latest"
}
```

**Example - Corruption trends over time:**
```json
{
  "action": "query_governance_data",
  "country_or_region": "India",
  "governance_aspect": "corruption",
  "time_period": "last_10_years",
  "include_historical_trends": true
}
```

**Example - Rule of law with peer comparison:**
```json
{
  "action": "query_governance_data",
  "country_or_region": "Kenya",
  "governance_aspect": "rule_of_law",
  "time_period": "latest",
  "include_peer_comparison": true
}
```

**Example - Political stability for a specific range:**
```json
{
  "action": "query_governance_data",
  "country_or_region": "Brazil",
  "governance_aspect": "stability",
  "time_period": "2015:2020",
  "include_percentile_ranks": true
}
```

**Example - Regional aggregate data:**
```json
{
  "action": "query_governance_data",
  "country_or_region": "Sub-Saharan Africa",
  "governance_aspect": "effectiveness",
  "time_period": "latest"
}
```

## Supported Countries and Regions

Accepts plain-language names. Examples of supported inputs:

- **Countries**: `"United States"`, `"USA"`, `"India"`, `"Germany"`, `"Nigeria"`, `"Brazil"`, `"Japan"`, `"Kenya"`, `"Singapore"`, `"South Africa"`, etc. (200+ countries)
- **Regions**: `"Sub-Saharan Africa"`, `"Latin America"`, `"Middle East"`, `"South Asia"`, `"East Asia"`, `"Europe"`
- **Income groups**: `"Low Income"`, `"Lower Middle Income"`, `"Upper Middle Income"`, `"High Income"`, `"OECD"`
- **Global**: `"World"` or `"Global"`
- **ISO3 codes**: 3-letter codes like `"USA"`, `"IND"`, `"GBR"` are also accepted

Country names support partial matching, so `"UK"` maps to United Kingdom and `"America"` maps to USA.

## Six Governance Dimensions (WGI)

1. **Voice and Accountability** (`"voice"`): Citizen participation, freedom of expression, media independence
2. **Political Stability** (`"stability"`): Likelihood of political instability and violence/terrorism
3. **Government Effectiveness** (`"effectiveness"`): Quality of public services, civil service, policy formulation and implementation
4. **Regulatory Quality** (`"regulatory"`): Government ability to formulate and implement sound policies promoting private sector development
5. **Rule of Law** (`"rule_of_law"`): Confidence in rules of society, contract enforcement, property rights, courts, likelihood of crime/violence
6. **Control of Corruption** (`"corruption"`): Extent to which public power is exercised for private gain

## Response Structure

Responses include:
- **WGI scores** on a -2.5 (weak) to +2.5 (strong) scale with score category and interpretation
- **Percentile ranks** from 0 (lowest) to 100 (highest) for global positioning
- **Overall governance score** (average of the 6 dimensions)
- **Historical trends** with direction (improving/deteriorating/stable), magnitude, and absolute change
- **Peer comparisons** against World, High Income, Upper Middle Income, Lower Middle Income, and Low Income group averages
- **Insights** including strongest/weakest dimensions, corruption analysis, political stability assessment, trajectory assessment
- **SDG 16 alignment** (Peace, Justice and Strong Institutions)

### WGI Score Interpretation
| Score Range | Category | Meaning |
|---|---|---|
| +1.5 to +2.5 | Very Strong | Excellent governance performance |
| +0.5 to +1.5 | Strong | Good governance performance |
| -0.5 to +0.5 | Moderate | Average governance performance |
| -1.5 to -0.5 | Weak | Below-average governance performance |
| -2.5 to -1.5 | Very Weak | Poor governance performance |

### Percentile Rank Interpretation
| Rank Range | Meaning |
|---|---|
| 90-100 | Top 10% globally |
| 75-89 | Top quartile globally |
| 50-74 | Above median globally |
| 25-49 | Below median globally |
| 10-24 | Bottom quartile globally |
| 0-9 | Bottom 10% globally |

## Workflows

1. **Country Risk Assessment**: Query all governance indicators for a country, review overall score and weakest dimensions, compare against peer income group
2. **Anti-Corruption Analysis**: Use `governance_aspect: "corruption"` with `time_period: "last_10_years"` to track corruption control trends
3. **Regional Comparison**: Query the same aspect for multiple countries or regions to compare governance performance
4. **Democratic Governance Monitoring**: Focus on `"voice"` aspect with historical trends to track democratic participation over time
5. **Investment Due Diligence**: Query `"all"` aspects with peer comparison enabled to benchmark a country against its income group

## Notes

- Data sourced from the World Bank Worldwide Governance Indicators (WGI), based on 30+ underlying data sources from diverse institutions
- Indicators reflect perceptions from citizen surveys, businesses, and experts -- they are not objective measurements
- Data updated annually with approximately a 1-year lag
- Standard error indicators are available internally for confidence intervals
- When `include_percentile_ranks` is set to `false`, rank indicators are filtered out from the response
- If an unrecognized country name is provided, the tool returns an error with guidance on valid inputs
- Data coverage varies by country; some may have limited historical data
- When querying with `time_period: "latest"`, only the single most recent data point is returned per indicator
- Trend analysis requires at least 2 valid data points; trends are classified by magnitude (Significant >= 1.0, Moderate >= 0.5, Slight < 0.5)
- Peer comparison fetches data for World, High Income, Upper Middle Income, Lower Middle Income, and Low Income groups for the core (non-rank, non-standard-error) indicators

### Frequently Asked Questions

#### How do I connect this tool to an external agent?

- Page URL: https://www.agentpmt.com/faq
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md

You can install the local MCP server by opening a terminal and running:

```
npm install -g @agentpmt/mcp-router
agentpmt-setup
```

This will connect you to local agents like Claude Code, Windsurf, Grok Build, Cursor, etc.

Alternatively you can connect to the hosted version with this config block, no installation required:

```
{
  "mcpServers": {
    "agentpmt": {
      "type": "streamable-http",
      "url": "https://api.agentpmt.com/mcp",
      "headers": {
        "Authorization": "Bearer <AGENTPMT_BEARER_TOKEN>",
        "x-instance-metadata": "{\"client\":\"generic-mcp\",\"platform\":\"remote\"}"
      }
    }
  }
}
```

[View MCP Connection Instructions](/docs/mcp-reference/connection) for more details.

#### How does an external agent use this tool?

- Page URL: https://www.agentpmt.com/faq
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md

After the external agent is connected to an Agent Group that can use this tool, paste this prompt into the agent:

> Use the AgentPMT-Tool-Search-and-Execution tool. First call action 'get\_instructions' so you know how to use the tool search interface. Then call action 'get\_schema' with tool\_id 6980db7d71cad8f61bf5b1d7 ("Global Governance & Institutional Quality Data"). After reading the schema and any returned instructions, tell me what this tool can do, we are going to be using it

The agent should fetch the tool schema first, collect the required parameters for your request, and then call the tool through AgentPMT.

### Dependencies

This product has no public dependency products.