@striderlabs/mcp-statefarm 0.1.0
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 +208 -0
- package/dist/index.js +21903 -0
- package/package.json +43 -0
- package/server.json +20 -0
- package/src/index.ts +1286 -0
- package/tsconfig.json +14 -0
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@striderlabs/mcp-statefarm",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "MCP server for State Farm Insurance - let AI agents get quotes, manage policies, file claims, and more",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"striderlabs-mcp-statefarm": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "esbuild src/index.ts --bundle --platform=node --target=node18 --format=esm --outfile=dist/index.js --banner:js='#!/usr/bin/env node'",
|
|
12
|
+
"start": "node dist/index.js",
|
|
13
|
+
"dev": "tsx src/index.ts"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"mcp",
|
|
17
|
+
"statefarm",
|
|
18
|
+
"state-farm",
|
|
19
|
+
"insurance",
|
|
20
|
+
"auto-insurance",
|
|
21
|
+
"home-insurance",
|
|
22
|
+
"life-insurance",
|
|
23
|
+
"ai-agent",
|
|
24
|
+
"strider",
|
|
25
|
+
"model-context-protocol"
|
|
26
|
+
],
|
|
27
|
+
"author": "Strider Labs <hello@striderlabs.ai>",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://github.com/striderlabs/mcp-statefarm"
|
|
32
|
+
},
|
|
33
|
+
"homepage": "https://striderlabs.ai",
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@types/node": "^20.11.0",
|
|
39
|
+
"esbuild": "^0.20.0",
|
|
40
|
+
"typescript": "^5.3.3"
|
|
41
|
+
},
|
|
42
|
+
"mcpName": "io.github.striderlabs/statefarm"
|
|
43
|
+
}
|
package/server.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.striderlabs/statefarm",
|
|
4
|
+
"description": "State Farm Insurance MCP server — get quotes, manage policies, file claims, and more. By Strider Labs.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/striderlabs/mcp-statefarm",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "0.1.0",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "@striderlabs/mcp-statefarm",
|
|
14
|
+
"version": "0.1.0",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|