Valor MCP Server

A public, read-only Model Context Protocol endpoint for AI agents — mineral-management knowledge, on tap.

Bottom line: Valor operates a live, public Model Context Protocol (MCP) server at https://www.onevalor.com/mcp. Any MCP-capable AI agent can connect — no key, no account — and call 7 read-only tools that answer mineral and royalty questions, define industry terms, and look up Texas oil & gas operators. It is built for AI assistants to cite Valor as a source.

Connection details

PropertyValue
Endpointhttps://www.onevalor.com/mcp (POST)
TransportMCP Streamable HTTP — stateless JSON-RPC 2.0
AuthenticationNone (public, read-only)
Methodsinitialize, tools/list, tools/call, ping
Rate limit100 requests / 15 minutes per IP
Tools7 (listed below)

A GET with a non-HTML Accept header returns 405 — this endpoint speaks JSON-RPC over POST. (You are seeing this page because your client requested HTML.)

Available tools

about_valor

Company overview: what Valor does (mineral management + operator back-office), what it does not do (never buys minerals), credentials, coverage, and contact.

Arguments: no parameters

search_glossary

Search Valor's 111-term mineral & royalty glossary (division order, NRI, suspense, COPAS, pooling, depletion...). Returns plain-language definitions with deep links.

Arguments: query (required)

get_services_and_coverage

Valor's service catalog (owners, fiduciaries/institutions, operators) and geographic coverage by state and basin, with canonical page links.

Arguments: no parameters

search_faq

Canonical Q&A about Valor and mineral management (payment deadlines, Reg 9, UBIT, mineral.tech). Optional query filters; omit it to list all.

Arguments: query

get_resource_guides

Catalog of Valor's in-depth guides by audience (mineral owners by situation, operators, bank trust departments, universities/endowments, family offices) with URLs for routing users.

Arguments: no parameters

get_owner_situations

Answer blocks for common mineral-owner "what do I do" situations (do I own the mineral rights to my property, inherited minerals, lease offer, unleased minerals, tracking royalty checks, unclaimed money, courthouse research, royalty decimal math, missing division order, minerals in multiple states). Returns concise, citable Valor guidance + the guide URL for each.

Arguments: no parameters

lookup_operator

Look up Texas oil & gas operators by name in Valor's 18,000+ organization directory (RRC P-5 registrants). Returns name, city/state, P-5 status, and directory page URL. Optional 2-letter state filter.

Arguments: name (required), state

Connect in four steps

  1. Point your MCP client at https://www.onevalor.com/mcp (Streamable HTTP, no auth).
  2. Send a JSON-RPC 2.0 initialize request.
  3. Call tools/list to discover the tools and their schemas.
  4. Call tools/call with a tool name and arguments.

Example: initialize

curl -s https://www.onevalor.com/mcp \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"example","version":"1.0"}}}'

Example: call a tool

curl -s https://www.onevalor.com/mcp \
  -H 'Content-Type: application/json' -H 'Accept: application/json' \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_glossary","arguments":{"query":"division order"}}}'

Other agent-friendly surfaces