707-command-center-mcp 1.0.9 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/server.js +16 -3
- package/package.json +1 -1
package/dist/server.js
CHANGED
|
@@ -21825,20 +21825,23 @@ function register9(server, api) {
|
|
|
21825
21825
|
// ../src/mcp/tools/crudelogic.ts
|
|
21826
21826
|
function register10(server, api) {
|
|
21827
21827
|
server.registerTool("crudelogic", {
|
|
21828
|
-
description: "Search CrudeLogic deal and offer data \u2014 owner lookups, deal search by county/operator/lease, query receipt history",
|
|
21828
|
+
description: "Search CrudeLogic deal and offer data \u2014 owner lookups, deal search by county/operator/lease, query receipt history, Kansas offer lookup",
|
|
21829
21829
|
inputSchema: external_exports.object({
|
|
21830
21830
|
action: external_exports.enum([
|
|
21831
21831
|
"search_deals",
|
|
21832
|
-
"search_receipts"
|
|
21832
|
+
"search_receipts",
|
|
21833
|
+
"search_kansas_offers"
|
|
21833
21834
|
]).describe(
|
|
21834
|
-
"search_deals: search streamlit_deal_table (ownerId, county, dealName, operator, leaseName, search, limit). search_receipts: search query_receipts / offers (dealId, ownerId, county, dealName, isActive, sentForMailing, search, limit)."
|
|
21835
|
+
"search_deals: search streamlit_deal_table (ownerId, county, dealName, operator, leaseName, search, limit). search_receipts: search query_receipts / offers (dealId, ownerId, county, dealName, isActive, sentForMailing, search, limit). search_kansas_offers: search Kansas offer results (ownerName, county, batchId \u2014 all optional, limit). Note: search param not supported for this action."
|
|
21835
21836
|
),
|
|
21836
21837
|
ownerId: external_exports.string().optional().describe('Owner ID filter (partial match, e.g. "COL-35103598")'),
|
|
21838
|
+
ownerName: external_exports.string().optional().describe("Owner/company name filter (partial match, kansas_offers only)"),
|
|
21837
21839
|
county: external_exports.string().optional().describe("County filter (partial match)"),
|
|
21838
21840
|
dealName: external_exports.string().optional().describe("Deal name filter (partial match)"),
|
|
21839
21841
|
operator: external_exports.string().optional().describe("Operator filter (partial match, deals only)"),
|
|
21840
21842
|
leaseName: external_exports.string().optional().describe("Lease/property name filter (partial match, deals only)"),
|
|
21841
21843
|
dealId: external_exports.string().optional().describe("Deal ID filter (partial match, receipts only)"),
|
|
21844
|
+
batchId: external_exports.string().optional().describe("Batch ID filter (exact match, kansas_offers only)"),
|
|
21842
21845
|
isActive: external_exports.boolean().optional().describe("Active filter (receipts only)"),
|
|
21843
21846
|
sentForMailing: external_exports.boolean().optional().describe("Sent for mailing filter (receipts only)"),
|
|
21844
21847
|
search: external_exports.string().optional().describe("Free text search across multiple columns"),
|
|
@@ -21875,6 +21878,16 @@ function register10(server, api) {
|
|
|
21875
21878
|
}
|
|
21876
21879
|
});
|
|
21877
21880
|
break;
|
|
21881
|
+
case "search_kansas_offers":
|
|
21882
|
+
res = await api("GET", "/api/crudelogic/kansas-offers", {
|
|
21883
|
+
query: {
|
|
21884
|
+
ownerName: args.ownerName,
|
|
21885
|
+
county: args.county,
|
|
21886
|
+
batchId: args.batchId,
|
|
21887
|
+
limit: args.limit
|
|
21888
|
+
}
|
|
21889
|
+
});
|
|
21890
|
+
break;
|
|
21878
21891
|
default:
|
|
21879
21892
|
return formatError2(`Unknown action: ${action}`);
|
|
21880
21893
|
}
|