Pointer Minerals — Texas Oil & Gas Data
Server Details
Read-only Texas oil & gas data: operator directory, county production, and dataset catalog.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.4/5 across 6 of 6 tools scored.
Each tool targets a distinct resource/action: datasets (list/download), counties (list), production (get by county), operators (exact lookup vs search). While get_operator and search_operators both deal with operators, the former is for exact/fuzzy single lookup while the latter is ranked FTS, making them distinguishable.
Tools follow a consistent verb_noun pattern (download_, get_, list_, search_) with clear prefixes. Although get_ and list_ both indicate retrieval, they apply to different resources and the verbs match the operation type (specific retrieval vs enumeration).
Six tools is well-scoped for a domain-specific data server, covering datasets, counties, production, and operators without redundancy.
The surface covers dataset discovery/download, county listing, production retrieval, and operator lookup/search—comprehensive for a data access API. No obvious missing CRUD operations since this is a read-only data source.
Available Tools
6 toolsdownload_datasetAInspect
Get the bulk-download URL and DOI for a named dataset.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It clearly states the tool returns a URL and DOI, implying a read-only operation, but does not disclose whether the URL requires authentication, rate limits, or what happens if the dataset name is invalid. The description is honest but lacks detail.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is direct and free of unnecessary words. It front-loads the action and output clearly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with one parameter and no output schema, the description sufficiently explains the primary return value (URL and DOI). However, it does not mention related tools like list_datasets, which would help complete the usage context. Minor gap but overall adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has a single 'name' parameter with no description, and the description adds that it is the name of a dataset. This provides some meaning beyond the schema, but it does not clarify the source of valid names or format expectations. With 0% schema coverage, more explicit parameter guidance would be beneficial.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific verb ('Get') and the exact resource ('bulk-download URL and DOI for a named dataset'). It distinguishes itself from sibling tools like list_datasets (which lists datasets) and get_county_production (which gets production data) by specifying the exact output.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not provide any guidance on when to use this tool versus alternatives. It does not mention that the dataset name should come from list_datasets, nor any exclusions or prerequisites. The agent must infer usage from context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_county_productionBInspect
Monthly oil (bbl) and gas (Mcf) production for a Texas county. Optional YYYY-MM from/to window.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | ||
| from | No | ||
| limit | No | ||
| state | No | TX | |
| county | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It mentions the data grain (monthly), units (bbl, Mcf), and optional date window, but does not disclose behavior around the limit parameter, default state, return format, or edge cases such as invalid dates. This is minimal behavioral information beyond what the tool name implies.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences, front-loaded with the core purpose and then the optional date window. Every word is purposeful, with no fluff or redundancy. It is appropriately concise for the tool's simplicity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 5 parameters, no output schema, and no annotations, the description is too sparse. It does not mention the limit parameter, the state default, the required county field (beyond the tool name), or the expected return structure. An agent would not have enough context to invoke the tool correctly without additional assumptions.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It does explain that from/to are optional and expect YYYY-MM format, but it does not explain the required county parameter or the limit and state parameters. The description adds value for only two of the five parameters, leaving the others undocumented.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool's purpose: retrieving monthly oil (bbl) and gas (Mcf) production for a Texas county. It specifies the resource (county production), the units, and the temporal granularity, which distinguishes it from sibling tools like get_operator or list_datasets.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context: it is for getting county-level production data, with an optional from/to date window. However, it does not explicitly mention when to use this tool versus alternatives, nor does it provide exclusion criteria. The usage guidance is primarily about parameter filtering, not tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_operatorBInspect
Look up a Texas operator by RRC org number (exact) or name (fuzzy). One of org_no or name is required.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | ||
| state | No | TX | |
| org_no | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavior. It does mention the exact/fuzzy matching semantics and the required-parameter condition, which is useful. However, it omits critical behavioral details: what the response looks like, behavior when no match is found, handling of the state parameter, and the nature of the fuzzy matching. The agent is left without knowledge of return structure or error cases.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description consists of two concise sentences that are front-loaded with the core action and required condition. Every word serves a purpose, with no fluff or repetition. It is appropriately sized for the tool's simplicity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is a lookup with 3 parameters, no annotations, and no output schema. The description covers the lookup mechanism but fails to state the return type, error behavior, or the role of the state parameter. This is a significant gap because the agent cannot predict what the tool will return or how failures are signaled, making the description incomplete for reliable invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It clarifies that org_no is the RRC org number and that name uses fuzzy matching, and it specifies the OR requirement. However, the state parameter is entirely unmentioned, and its default value and purpose are not explained. The description adds value for two of three parameters but ignores the third.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Look up a Texas operator by RRC org number (exact) or name (fuzzy)'. It specifies a concrete verb ('look up'), resource ('Texas operator'), and the lookup methods (exact/fuzzy). This distinguishes it from siblings like search_operators by highlighting the exact-match capability and the specific identifier.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description includes a usage constraint ('One of org_no or name is required') but offers no guidance on when to choose this tool over alternatives like search_operators. There is no mention of suitable scenarios, exclusions, or comparative context, leaving the agent to infer the tool's role from its name and siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_countiesCInspect
List Texas counties Pointer covers, with production tier and score.
| Name | Required | Description | Default |
|---|---|---|---|
| state | No | TX |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral transparency. It discloses the output contents (counties with production tier and score) but does not mention read-only status, rate limits, auth requirements, or any side effects. This is adequate for a simple list tool but lacks depth.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is front-loaded with the action and resource, using concise language with no wasted words. It is appropriately sized for a simple tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has a simple schema and no output schema, but the description still omits details like the state parameter, return format specifics, and any limitations. It is minimally adequate for understanding the core function but incomplete for an agent to know all invocation context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has one parameter 'state' with default 'TX' and no description, and the description does not mention any parameter. With a schema description coverage of 0%, the description fails to clarify whether other states are supported or how the parameter affects results, providing zero added meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'List' and identifies the resource as 'Texas counties Pointer covers', which clearly states what the tool does. It also mentions the output includes production tier and score, but it does not explicitly contrast it with sibling tools like list_datasets or search_operators.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives such as get_county_production or list_datasets. There is no mention of context, exclusions, or prerequisites, leaving the agent without clear selection criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_datasetsAInspect
List Pointer Minerals datasets with license, DOI, grain, coverage, and bulk-download URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must disclose behavioral traits. It states 'list' (a read operation) and the fields returned, but does not clarify pagination, return format, or any limitations. This is sufficient for a simple list, but lacks richer context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that directly states the action and result, with no redundant or filler content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (no parameters, no output schema, no annotations), the description provides adequate context: what it lists and what fields are included. It lacks explicit mention of the output structure or relationships to sibling tools, but this is not critical for a basic listing tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4. The description needs no parameter explanations, and the schema confirms there are none.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists Pointer Minerals datasets and enumerates the exact attributes (license, DOI, grain, coverage, bulk-download URLs), making its purpose unambiguous and distinct from sibling tools like list_counties.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The use case is implied: use this tool when you need to list datasets. However, there is no explicit guidance on when to prefer this over alternatives like search_operators or list_counties, nor are any exclusions or prerequisites mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_operatorsAInspect
Search Texas operators by name (FTS). Returns up to 50 ranked matches.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | ||
| state | No | TX |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It adds useful context like 'FTS' and 'ranked matches', but omits other behavioral traits such as how the state parameter affects results, whether pagination exists, or what the output format looks like.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is highly concise: two short sentences with no filler. It front-loads the core purpose and adds the most important behavioral detail (result cap) without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is adequate for a straightforward search tool but leaves gaps: it does not mention the configurable 'state' parameter despite the description saying 'Texas', nor does it describe return fields or how results relate to get_operator. Since there is no output schema, a bit more detail would be valuable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It clarifies that 'query' is an operator name and that the limit is up to 50, but it completely omits the 'state' parameter, which is notable given Texas is hard-coded in the description while the schema allows a configurable state.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches Texas operators by name using full-text search, which directly distinguishes it from sibling tools like get_operator (retrieves a specific operator) and list_counties (lists counties). The result limit and ranking are also mentioned, making the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The usage context is implied: use this tool when you need to find operators by name. However, it does not explicitly explain when not to use it or how it compares to get_operator (e.g., for retrieving full operator details by ID).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Flicense-qualityCmaintenanceRead-only MCP server providing direct, credentialed access to parcel data via Regrid and county ArcGIS sources, with tools for querying by point, owner, size, and county.
- Alicense-qualityBmaintenanceProvides secure, read-only access to a single MySQL database for schema inspection and querying.305MIT
- AlicenseAqualityCmaintenanceProvides read-only MySQL query execution, database/table browsing, and table structure inspection with SQL safety validation.517MIT
- Alicense-qualityDmaintenanceRead-only access to MySQL databases with query sanitization, Cloud SQL Proxy support, and remote HTTP deployment.74MIT