FieldMCP
PricingDocsChangelog
Sign inGet Started
FieldMCP

Connect your AI to farm data in minutes

Product

  • Pricing
  • Documentation
  • Changelog
  • Integrations

Company

  • About
  • Customers
  • Security
  • Contact
  • Support

Legal

  • Terms of Service
  • Privacy Policy
  • DPA
  • SLA

© 2026 FieldMCP. All rights reserved.

Status

Search Documentation

Search for a documentation page...

Getting Started

IntroductionQuickstart

Authentication

API KeysOAuth

Tools Reference

Overview
  1. Docs
  2. API Keys

API Keys

Every request to FieldMCP requires an API key. Keys authenticate your application and determine your rate limits and billing tier.

Key Format

API keys follow this format:

field_live_<32 random hex characters>

Example: field_live_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6

Creating a Key

  1. Go to Dashboard > API Keys
  2. Click Create API Key
  3. Give it a descriptive name (e.g., "Production", "Development")
  4. Copy the key immediately — it's shown only once

Using Your Key

Pass the API key in the Authorization header:

Authorization: Bearer field_live_YOUR_API_KEY

For MCP clients, this is configured in the server connection settings. See the Quickstart for examples.

Security

  • Keys are stored as SHA-256 hashes — we never store the plaintext key
  • If a key is compromised, delete it from the dashboard and create a new one
  • Use separate keys for development and production
  • Never commit keys to version control

Rate Limits

Your API key's rate limits depend on your billing tier:

TierRequests/MinuteMonthly Requests
Free6010,000
Developer100100,000
Startup5001,000,000
Enterprise1,000Custom

When you exceed your rate limit, requests return a RATE_LIMIT_USER error with a retryAfter value in seconds.

QuickstartOAuth