Datasets
Available Datasets

Available Datasets

The Mflo x402 MCP server provides access to a comprehensive data marketplace with datasets across multiple categories and formats. Use the list_datasets tool to discover available datasets with filtering and pagination.

Data Categories

The marketplace currently offers datasets across the following categories:

FINANCIAL

Financial markets, trading, investments

  • Stock prices and market data
  • Trading volumes and analytics
  • Investment portfolios and performance metrics
  • Financial indicators and ratios

BUSINESS

Business metrics, company data

  • Company financial statements
  • Business performance indicators
  • Market analysis and competitive intelligence
  • Corporate governance data

Future Updates

Additional dataset categories will be available in upcoming releases:

SOCIAL

Social media, news, sentiment

  • Social media posts and engagement metrics
  • News articles and sentiment analysis
  • Public opinion and trend data
  • Community discussions and forums

WEATHER

Weather data, climate information

  • Current weather conditions
  • Historical climate data
  • Weather forecasts and predictions
  • Environmental monitoring data

ECONOMIC

Economic indicators, GDP, inflation

  • GDP and economic growth metrics
  • Inflation rates and price indices
  • Employment and labor statistics
  • Trade and commerce data

SCIENTIFIC

Research data, academic datasets

  • Research publications and citations
  • Experimental data and results
  • Academic performance metrics
  • Scientific measurements and observations

GOVERNMENT

Public sector data, regulations

  • Government statistics and reports
  • Regulatory filings and compliance data
  • Public policy documents
  • Census and demographic data

HEALTH

Healthcare, medical data

  • Medical research and clinical trials
  • Health statistics and epidemiology
  • Healthcare facility data
  • Patient outcomes and treatment effectiveness

TRANSPORT

Transportation, logistics data

  • Traffic patterns and congestion data
  • Public transportation schedules and usage
  • Shipping and logistics information
  • Vehicle registration and safety data

ENERGY

Energy consumption, renewable data

  • Energy production and consumption metrics
  • Renewable energy generation data
  • Grid performance and efficiency
  • Carbon emissions and environmental impact

REAL_ESTATE

Property, housing market data

  • Property prices and market trends
  • Real estate transactions and listings
  • Housing market analytics
  • Property valuations and assessments

EDUCATION

Educational data, student metrics

  • Student performance and achievement data
  • Educational institution rankings
  • Curriculum and course information
  • Learning outcomes and assessments

ENTERTAINMENT

Media, gaming, streaming data

  • Entertainment industry metrics
  • Gaming statistics and player behavior
  • Streaming platform data and viewership
  • Content performance and engagement

TECHNOLOGY

Tech industry, software metrics

  • Software development and deployment data
  • Technology adoption and usage statistics
  • IT infrastructure and performance metrics
  • Innovation and patent data

OTHER

Miscellaneous datasets

  • Specialized and niche datasets
  • Custom data collections
  • Experimental and research datasets
  • Community-contributed data

Supported Data Formats

The marketplace currently supports the following data formats:

  • CSV: Comma-separated values
  • JSON: JavaScript Object Notation

Future Format Support

Additional data formats will be supported in upcoming releases:

  • XML: Extensible Markup Language
  • PARQUET: Columnar storage format
  • AVRO: Apache Avro format
  • PROTOBUF: Protocol Buffers
  • EXCEL: Microsoft Excel format
  • SQLITE: SQLite database
  • POSTGRES: PostgreSQL dump
  • MYSQL: MySQL dump
  • STREAM: Real-time streaming data
  • API: REST API endpoint
  • GRAPHQL: GraphQL endpoint
  • OTHER: Other formats

Dataset Discovery

Use the MCP server tools to discover and access datasets:

// List all financial datasets
const datasets = await mcp.list_datasets({
  category: "FINANCIAL",
  limit: 10
});
 
// Get details of a specific dataset
const details = await mcp.get_dataset_details({
  datasetId: "finance-stocks-2024"
});

Example Dataset Structure

{
  "id": "finance-stocks-2024",
  "name": "Stock Market Data 2024",
  "description": "Comprehensive stock market data including prices, volumes, and analytics",
  "category": "FINANCIAL",
  "format": "CSV",
  "price": 100,
  "provider": "Financial Data Corp",
  "size": 15728640,
  "tags": ["stocks", "market-data", "2024", "financial"],
  "lastUpdated": "2024-12-03T10:00:00Z",
  "schema": {
    "type": "text/csv",
    "columns": [
      { "name": "symbol", "type": "string" },
      { "name": "price", "type": "number" },
      { "name": "volume", "type": "number" },
      { "name": "timestamp", "type": "string" }
    ]
  }
}