@ancientwhispers54/leafengines-mcp-server 2.0.8 โ†’ 2.0.9

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/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # LeafEngines MCP Server โ€” Agricultural Intelligence for AI Agents
2
2
 
3
- **Patent-protected soil analysis, crop recommendations, and environmental intelligence** via Model Context Protocol. 1,092+ downloads. Works with Claude Desktop, Cursor, OpenClaw, and any MCP-compatible client.
3
+ > ๐Ÿ† **Global Startup Awards 2026 โ€” North America Regional Nominee**
4
+
5
+ **Patent-protected soil analysis, crop recommendations, and environmental intelligence** via Model Context Protocol. 1,300+ downloads. Published on the Official MCP Registry (v2.0.8). GitHub MCP Registry included (`io.github.QWarranto/leafengines`). **A-Excellent verified** on MCP World (June 2026) โ€” QGIS approved (ID 4987) ยท SDK v3.0 hardware-ready ยท 750+ developers.
4
6
 
5
7
  ## โšก Get Started Now
6
8
 
@@ -65,7 +67,7 @@ Your AI agent will use LeafEngines tools automatically to analyze soil, recommen
65
67
 
66
68
  | Tool | What It Returns | Tier |
67
69
  |------|----------------|------|
68
- | `get_soil_analysis` | USDA SSURGO soil composition, pH, NPK, drainage, recommendations | Commoditized |
70
+ | `get_soil_data` | USDA SSURGO soil composition, pH, NPK, drainage, recommendations | Commoditized |
69
71
  | `county_lookup` | Resolve location names to FIPS codes | Commoditized |
70
72
  | `territorial_water_quality` | EPA water quality and contamination risk scores | Commoditized |
71
73
  | `agricultural_intelligence` | AI-powered agricultural insights and recommendations | Enhanced |
@@ -73,9 +75,10 @@ Your AI agent will use LeafEngines tools automatically to analyze soil, recommen
73
75
  | `carbon_credit_calculator` | Carbon credit potential using proprietary models | Proprietary |
74
76
  | `generate_vrt_prescription` | Variable rate technology prescription maps | Proprietary |
75
77
  | `environmental_impact_analysis` | Patent-pending Environmental Compatibility Score with satellite data fusion | Exclusive |
76
- | `planting_optimization` | Multi-parameter phenology models for optimal planting windows | Exclusive |
77
78
  | `turbo_quant_capabilities` | Hardware optimization check โ€” **always free, no auth required** | Free |
78
79
 
80
+ > **9 active tools** across 4 pricing tiers (planting_optimization under maintenance โ€” disabled upstream).
81
+
79
82
  ## ๐Ÿ’ฐ Pricing
80
83
 
81
84
  ### Free Tier โ€” No Credit Card
@@ -131,15 +134,16 @@ skills:
131
134
  Add to your Cursor MCP configuration with the same API key.
132
135
 
133
136
  ### MCP Registry
134
- - **Package:** `io.github.QWarranto/leafengines` version 1.1.5+
135
- - **Registry:** [https://registry.modelcontextprotocol.io](https://registry.modelcontextprotocol.io)
137
+ - **Package:** `io.github.QWarranto/leafengines` v2.0.8 โ€” latest
138
+ - **Official Registry:** [registry.modelcontextprotocol.io](https://registry.modelcontextprotocol.io)
139
+ - **GitHub Registry:** Inclusion requested โ€” [github.com/mcp](https://github.com/mcp) (would be first AgTech server)
136
140
 
137
141
  ## ๐Ÿ“– Examples
138
142
 
139
143
  ### Soil Analysis
140
144
  ```
141
145
  User: "What's the soil like in Travis County, Texas?"
142
- AI: [Uses get_soil_analysis] "The soil in Travis County is primarily..."
146
+ AI: [Uses get_soil_data] "The soil in Travis County is primarily..."
143
147
  ```
144
148
 
145
149
  ### Crop Planning
@@ -171,7 +175,7 @@ AI: [Uses environmental_impact_analysis + carbon_credit_calculator] "Environment
171
175
  ### For Developers & AI Engineers
172
176
  - **MCP integration** โ€” Works with Claude, Cursor, OpenClaw, any MCP client
173
177
  - **TurboQuant optimization** โ€” 6x memory compression for edge/offline deployment
174
- - **Multi-agent orchestration** โ€” 10 tools across 4 pricing tiers
178
+ - **Multi-agent orchestration** โ€” 9 tools across 4 pricing tiers
175
179
  - **API access** โ€” Direct HTTP calls to Supabase edge functions
176
180
 
177
181
  ## ๐Ÿ›ก๏ธ Enterprise-Grade Governance
package/dist/index.js CHANGED
@@ -28,7 +28,7 @@ const axios_1 = __importDefault(require("axios"));
28
28
  // MCP Server implementation
29
29
  const server = new index_js_1.Server({
30
30
  name: "leafengines",
31
- version: "2.0.7",
31
+ version: "2.0.8",
32
32
  }, {
33
33
  capabilities: {
34
34
  tools: {},
@@ -51,7 +51,7 @@ async function sendTelemetryEvent(event) {
51
51
  timeout: 1000, // Don't block on telemetry
52
52
  headers: {
53
53
  "x-surface": event.surface ?? "mcp",
54
- "x-client-version": "2.0.7",
54
+ "x-client-version": "2.0.8",
55
55
  },
56
56
  });
57
57
  }
@@ -67,7 +67,7 @@ async function trackToolUsage(toolName) {
67
67
  await axios_1.default.post(TELEMETRY_ANALYTICS_ENDPOINT, {
68
68
  event: "tool_used",
69
69
  tool: toolName,
70
- version: "2.0.7",
70
+ version: "2.0.8",
71
71
  timestamp: new Date().toISOString(),
72
72
  anonymous_id: `mcp_${Date.now()}_${Math.random().toString(36).slice(2, 11)}`,
73
73
  }, {
@@ -80,12 +80,12 @@ async function trackToolUsage(toolName) {
80
80
  }
81
81
  // Community engagement message (shown on first run)
82
82
  function getCommunityMessage() {
83
- return `๐ŸŒฑ Welcome to LeafEngines MCP Server (v2.0.7)!
83
+ return `๐ŸŒฑ Welcome to LeafEngines MCP Server (v2.0.8)!
84
84
 
85
- Join 750+ developers in our community:
85
+ Join 1,100+ developers in our community:
86
86
  โ€ข GitHub Discussions: https://github.com/QWarranto/leafengines-claude-mcp/discussions
87
- โ€ข Upcoming Tutorial Videos: Agricultural AI MCP tips
88
87
  โ€ข Twitter: @LeafEnginesAI for updates
88
+ โ€ข MCP Registry: registry.modelcontextprotocol.io
89
89
 
90
90
  Share your use case: What are you building with agricultural AI?`;
91
91
  }
@@ -124,53 +124,76 @@ async function callLeafEnginesAPI(toolName, arguments_, apiKey, isFreeTool = fal
124
124
  throw error;
125
125
  }
126
126
  }
127
- // Tool: TurboQuant Capabilities (FREE - no API key required)
127
+ // All 9 active tools matching the Supabase backend (planting_optimization disabled upstream)
128
128
  server.setRequestHandler(types_js_1.ListToolsRequestSchema, async () => {
129
129
  return {
130
130
  tools: [
131
+ {
132
+ name: "county_lookup",
133
+ description: "COMMODITIZED TIER (FREE): Search for US counties by name, state, or FIPS code. Returns matching counties with FIPS codes, state names, and state codes. Use when the user provides a place name instead of a 5-digit FIPS code. Most other tools require a FIPS code, so call this first to resolve it.",
134
+ inputSchema: {
135
+ type: "object",
136
+ properties: {
137
+ term: {
138
+ type: "string",
139
+ minLength: 2,
140
+ maxLength: 100,
141
+ description: "Search term โ€” county name, state name, or partial FIPS code (e.g., 'Miami-Dade', 'Georgia', '13')"
142
+ }
143
+ },
144
+ required: ["term"]
145
+ }
146
+ },
131
147
  {
132
148
  name: "get_soil_data",
133
- description: "COMMODITIZED TIER ($0.001/call): Get USDA SSURGO soil analysis for any US county. Returns pH, nutrients, organic matter, drainage, and texture. Perfect for Claude when you need: agricultural planning, environmental assessments, land evaluation, or basic soil composition data. Optional: county_name and state_code (helpful if you have them from county_lookup).",
149
+ description: "COMMODITIZED TIER (FREE): Retrieve USDA SSURGO soil composition for any US county. Returns pH, N-P-K nutrients, organic matter %, drainage class, and texture. Use for soil quality, land suitability, nutrient levels. Requires 5-digit FIPS code โ€” call county_lookup first if you only have a place name.",
134
150
  inputSchema: {
135
151
  type: "object",
136
152
  properties: {
137
153
  county_fips: {
138
154
  type: "string",
139
155
  pattern: "^[0-9]{5}$",
140
- description: "5-digit US county FIPS code"
156
+ description: "5-digit US county FIPS code (e.g., '13121' for Fulton County, GA)"
141
157
  },
142
158
  county_name: {
143
159
  type: "string",
144
- description: "County name (optional, but recommended with state_code)"
160
+ description: "County name (optional, helpful with state_code)"
145
161
  },
146
162
  state_code: {
147
163
  type: "string",
148
164
  pattern: "^[A-Z]{2}$",
149
- description: "2-letter state code (optional, but recommended with county_name)"
165
+ description: "2-letter state code (optional, helpful with county_name)"
150
166
  }
151
167
  },
152
168
  required: ["county_fips"]
153
169
  }
154
170
  },
155
171
  {
156
- name: "county_lookup",
157
- description: "COMMODITIZED TIER ($0.001/call): Resolve US location names to FIPS codes. Search by county name, state, or FIPS code. Returns county details needed for other LeafEngines tools.",
172
+ name: "agricultural_intelligence",
173
+ description: "ENHANCED TIER ($0.003/call): AI-powered agricultural analysis combining soil, climate, and crop science. Provides planting recommendations, yield predictions, risk assessments, and sustainability scores. Use for crop planning, farming risks, yield forecasting.",
158
174
  inputSchema: {
159
175
  type: "object",
160
176
  properties: {
161
- term: {
177
+ county_fips: {
162
178
  type: "string",
163
- minLength: 2,
164
- maxLength: 100,
165
- description: "Search term โ€” county name, state name, or partial FIPS code"
179
+ pattern: "^[0-9]{5}$",
180
+ description: "5-digit US county FIPS code"
181
+ },
182
+ crop_type: {
183
+ type: "string",
184
+ description: "Crop to analyze (e.g., 'corn', 'soybeans', 'wheat', 'cotton')"
185
+ },
186
+ question: {
187
+ type: "string",
188
+ description: "Specific agricultural question to answer"
166
189
  }
167
190
  },
168
- required: ["term"]
191
+ required: ["county_fips"]
169
192
  }
170
193
  },
171
194
  {
172
- name: "agricultural_intelligence",
173
- description: "ENHANCED TIER ($0.003/call): AI-powered agricultural insights combining soil, climate, and crop science. Get planting recommendations, yield predictions, risk assessments, and sustainability scores.",
195
+ name: "territorial_water_quality",
196
+ description: "COMMODITIZED TIER (FREE): Retrieve EPA water quality data for a US county. Returns contamination risk levels, water body proximity, and parameter readings (nitrates, phosphorus, turbidity). Use for irrigation safety, drinking water risk, environmental compliance. Pair with environmental_impact_analysis for a complete picture.",
174
197
  inputSchema: {
175
198
  type: "object",
176
199
  properties: {
@@ -178,17 +201,136 @@ server.setRequestHandler(types_js_1.ListToolsRequestSchema, async () => {
178
201
  type: "string",
179
202
  pattern: "^[0-9]{5}$",
180
203
  description: "5-digit US county FIPS code"
204
+ }
205
+ },
206
+ required: ["county_fips"]
207
+ }
208
+ },
209
+ {
210
+ name: "safe_identification",
211
+ description: "ENHANCED TIER ($0.003/call): Identify a plant and flag toxic lookalikes with environmental context. Returns safety warnings, confidence scores, and habitat info. Use for foraging safety, plant ID, edible/poisonous checks.",
212
+ inputSchema: {
213
+ type: "object",
214
+ properties: {
215
+ plant_name: {
216
+ type: "string",
217
+ description: "Common or scientific plant name to identify"
218
+ },
219
+ location: {
220
+ type: "string",
221
+ description: "Geographic context (state, region, or coordinates)"
222
+ }
223
+ },
224
+ required: ["plant_name"]
225
+ }
226
+ },
227
+ {
228
+ name: "carbon_credit_calculator",
229
+ description: "PROPRIETARY TIER ($0.005/call): Calculate carbon credit potential for agricultural land. Returns estimated credits (tonnes COโ‚‚e), monetary value ($USD), verification timeline, and registry requirements. Use for carbon offset revenue, sustainability incentives, conservation practice ROI.",
230
+ inputSchema: {
231
+ type: "object",
232
+ properties: {
233
+ field_size_acres: {
234
+ type: "number",
235
+ description: "Field size in acres"
236
+ },
237
+ soil_organic_matter: {
238
+ type: "number",
239
+ description: "Current soil organic matter percentage (0-100)"
240
+ },
241
+ practice_type: {
242
+ type: "string",
243
+ enum: ["cover_cropping", "no_till", "reduced_till", "agroforestry", "nutrient_management"],
244
+ description: "Conservation practice being implemented"
245
+ }
246
+ },
247
+ required: ["field_size_acres"]
248
+ }
249
+ },
250
+ {
251
+ name: "generate_vrt_prescription",
252
+ description: "PROPRIETARY TIER ($0.005/call): Generate a variable rate technology (VRT) prescription map for precision agriculture. Creates zone-based application rates for fertilizer, seed, water, or pesticide. Use for precision application, variable rate seeding, zone-based field management. ADAPT 1.0 / ISOBUS compatible output.",
253
+ inputSchema: {
254
+ type: "object",
255
+ properties: {
256
+ county_fips: {
257
+ type: "string",
258
+ description: "5-digit US county FIPS code"
259
+ },
260
+ application_type: {
261
+ type: "string",
262
+ enum: ["fertilizer", "seed", "water", "pesticide"],
263
+ description: "Type of variable rate application"
181
264
  },
182
265
  crop_type: {
183
266
  type: "string",
184
- description: "Crop to analyze"
267
+ description: "Target crop type"
185
268
  },
186
- question: {
269
+ field_size_acres: {
270
+ type: "number",
271
+ description: "Field size in acres"
272
+ }
273
+ },
274
+ required: ["county_fips", "application_type"]
275
+ }
276
+ },
277
+ {
278
+ name: "environmental_impact_analysis",
279
+ description: "EXCLUSIVE TIER ($0.01/call): Patent-pending multi-source environmental impact assessment. Fuses USDA soil, EPA water, NOAA climate, and satellite data into an Environmental Compatibility Score. Returns runoff_risk, contamination_risk, biodiversity_impact, carbon_footprint_score, and satellite-derived vegetation health. Use for environmental due diligence, land purchase evaluation, regulatory pre-screening.",
280
+ inputSchema: {
281
+ type: "object",
282
+ properties: {
283
+ analysis_id: {
187
284
  type: "string",
188
- description: "Specific agricultural question to answer"
285
+ format: "uuid",
286
+ description: "UUID for this analysis session"
287
+ },
288
+ county_fips: {
289
+ type: "string",
290
+ pattern: "^[0-9]{5}$",
291
+ description: "5-digit US county FIPS code"
292
+ },
293
+ lat: {
294
+ type: "number",
295
+ minimum: -90,
296
+ maximum: 90,
297
+ description: "Latitude of the analysis point"
298
+ },
299
+ lng: {
300
+ type: "number",
301
+ minimum: -180,
302
+ maximum: 180,
303
+ description: "Longitude of the analysis point"
304
+ },
305
+ soil_data: {
306
+ type: "object",
307
+ description: "Soil composition data (drainage_class, slope_percentage, organic_matter_percentage, permeability)"
308
+ },
309
+ water_body_data: {
310
+ type: "object",
311
+ description: "Optional water body proximity data (proximity_km)"
189
312
  }
190
313
  },
191
- required: ["county_fips"]
314
+ required: ["county_fips", "lat", "lng", "soil_data"]
315
+ }
316
+ },
317
+ {
318
+ name: "turbo_quant_capabilities",
319
+ description: "FREE (NO AUTH REQUIRED): Query TurboQuant runtime capabilities, supported model tiers, memory profiles, and context window configurations. Returns hardware requirements for each model tier, available context modes, and performance benchmarks. Use to determine optimal model tier for a given hardware profile. Always free โ€” no API key needed.",
320
+ inputSchema: {
321
+ type: "object",
322
+ properties: {
323
+ device_ram_gb: {
324
+ type: "number",
325
+ description: "Available device RAM in GB. If provided, filters to models that fit."
326
+ },
327
+ runtime: {
328
+ type: "string",
329
+ enum: ["webgpu", "wasm", "native-cpp", "all"],
330
+ description: "Filter capabilities by runtime environment. Default: 'all'."
331
+ }
332
+ },
333
+ required: []
192
334
  }
193
335
  },
194
336
  ],
@@ -201,7 +343,7 @@ server.setRequestHandler(types_js_1.CallToolRequestSchema, async (request) => {
201
343
  trackToolUsage(name);
202
344
  // Get API key from environment variable
203
345
  const apiKey = process.env.LEAFENGINES_API_KEY;
204
- const freeTools = ['county_lookup', 'get_soil_data'];
346
+ const freeTools = ['county_lookup', 'get_soil_data', 'territorial_water_quality', 'turbo_quant_capabilities'];
205
347
  // Free tools: county_lookup and get_soil_data available without API key
206
348
  if (!apiKey && !freeTools.includes(name)) {
207
349
  // Telemetry the paywall hit
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"notifications.js","sourceRoot":"","sources":["../src/notifications.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"notifications.js","sourceRoot":"","sources":["../src/notifications.ts"],"names":[],"mappings":";AAAA;;;GAGG;;AAUH,wCAGC;AAKD,4CAGC;AAKD,oDAmDC;AAKD,oEAYC;AAKD,0DAUC;AAzGD,4CAA4C;AAC5C,MAAM,gBAAgB,GAAa,IAAI,GAAG,EAAE,CAAC;AAE7C;;GAEG;AACH,SAAgB,cAAc,CAAC,SAAc;IAC3C,gBAAgB,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IAChC,OAAO,CAAC,GAAG,CAAC,kDAAkD,gBAAgB,CAAC,IAAI,EAAE,CAAC,CAAC;AACzF,CAAC;AAED;;GAEG;AACH,SAAgB,gBAAgB,CAAC,SAAc;IAC7C,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;IACnC,OAAO,CAAC,GAAG,CAAC,kCAAkC,gBAAgB,CAAC,IAAI,EAAE,CAAC,CAAC;AACzE,CAAC;AAED;;GAEG;AACI,KAAK,UAAU,oBAAoB,CAAC,MAAc;IACvD,MAAM,YAAY,GAAG;QACnB,OAAO,EAAE,KAAK;QACd,MAAM,EAAE,4BAA4B;QACpC,MAAM,EAAE;YACN,IAAI,EAAE,eAAe;YACrB,OAAO,EAAE,OAAO;YAChB,KAAK,EAAE,8BAA8B;YACrC,OAAO,EAAE,2EAA2E;YACpF,QAAQ,EAAE;gBACR,iEAAiE;gBACjE,wDAAwD;gBACxD,+DAA+D;gBAC/D,2DAA2D;aAC5D;YACD,OAAO,EAAE;gBACP,KAAK,EAAE,6BAA6B;gBACpC,aAAa,EAAE,UAAU;gBACzB,MAAM,EAAE,aAAa;aACtB;YACD,OAAO,EAAE;gBACP,aAAa,EAAE,SAAS;gBACxB,eAAe,EAAE,IAAI;gBACrB,KAAK,EAAE;oBACL,OAAO,EAAE,+BAA+B;oBACxC,GAAG,EAAE,gCAAgC;iBACtC;aACF;YACD,KAAK,EAAE;gBACL,MAAM,EAAE,yEAAyE;gBACjF,OAAO,EAAE,gDAAgD;gBACzD,GAAG,EAAE,gDAAgD;aACtD;YACD,SAAS,EAAE,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE;SACpC;KACF,CAAC;IAEF,OAAO,CAAC,GAAG,CAAC,wDAAwD,CAAC,CAAC;IAEtE,mEAAmE;IACnE,8CAA8C;IAC9C,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,YAAY,CAAC,CAAC,CAAC;IAE1C,mCAAmC;IACnC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC;QACzB,KAAK,EAAE,MAAM;QACb,KAAK,EAAE,UAAU;QACjB,IAAI,EAAE,sBAAsB;QAC5B,YAAY,EAAE,gBAAgB,CAAC,IAAI;QACnC,SAAS,EAAE,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE;KACpC,CAAC,CAAC,CAAC;AACN,CAAC;AAED;;GAEG;AACI,KAAK,UAAU,4BAA4B,CAAC,MAAc;IAC/D,MAAM,YAAY,GAAG;QACnB,OAAO,EAAE,KAAK;QACd,MAAM,EAAE,6BAA6B;QACrC,MAAM,EAAE;YACN,IAAI,EAAE,eAAe;YACrB,OAAO,EAAE,qCAAqC;YAC9C,SAAS,EAAE,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE;SACpC;KACF,CAAC;IAEF,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,YAAY,CAAC,CAAC,CAAC;AAC5C,CAAC;AAED;;GAEG;AACH,SAAgB,uBAAuB,CAAC,MAAc;IACpD,OAAO,CAAC,GAAG,CAAC,6CAA6C,CAAC,CAAC;IAC3D,OAAO,CAAC,GAAG,CAAC,gCAAgC,CAAC,CAAC;IAC9C,OAAO,CAAC,GAAG,CAAC,wCAAwC,CAAC,CAAC;IACtD,OAAO,CAAC,GAAG,CAAC,6BAA6B,CAAC,CAAC;IAE3C,qEAAqE;IACrE,UAAU,CAAC,GAAG,EAAE;QACd,oBAAoB,CAAC,MAAM,CAAC,CAAC;IAC/B,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,wCAAwC;AACpD,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ancientwhispers54/leafengines-mcp-server",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "mcpName": "io.github.QWarranto/leafengines",
5
5
  "description": "LeafEngines MCP Server โ€” Patent-protected agricultural intelligence for AI agents. 1,092+ downloads. Free tier with test key leaf-test-370df0a2e62e. Soil analysis, crop recommendations, environmental intelligence from USDA, EPA, NOAA data. Works with Claude Desktop, Cursor, OpenClaw.",
6
6
  "main": "dist/index.js",