fdic-mcp-server 1.0.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/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "fdic-mcp-server",
3
+ "version": "1.0.0",
4
+ "description": "MCP server for the FDIC BankFind Suite API",
5
+ "main": "dist/server.js",
6
+ "files": [
7
+ "dist",
8
+ "README.md"
9
+ ],
10
+ "bin": {
11
+ "fdic-mcp-server": "dist/index.js"
12
+ },
13
+ "exports": {
14
+ ".": "./dist/server.js"
15
+ },
16
+ "scripts": {
17
+ "build": "node -e \"Promise.all([require('esbuild').build({entryPoints:['src/cli.ts'],bundle:true,platform:'node',target:'node18',outfile:'dist/index.js',external:['@modelcontextprotocol/sdk','express','axios','zod'],format:'cjs'}),require('esbuild').build({entryPoints:['src/index.ts'],bundle:true,platform:'node',target:'node18',outfile:'dist/server.js',external:['@modelcontextprotocol/sdk','express','axios','zod'],format:'cjs'})]).then(()=>console.log('Build success')).catch(e=>{console.error(e);process.exit(1)})\"",
18
+ "test": "vitest run",
19
+ "typecheck": "tsc --noEmit",
20
+ "prepack": "npm run build",
21
+ "prepublishOnly": "npm run typecheck && npm test && npm run build",
22
+ "pack:check": "npm pack --dry-run",
23
+ "start": "node dist/index.js",
24
+ "dev": "ts-node src/index.ts"
25
+ },
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/jflamb/fdic-mcp-server.git"
29
+ },
30
+ "homepage": "https://github.com/jflamb/fdic-mcp-server#readme",
31
+ "bugs": {
32
+ "url": "https://github.com/jflamb/fdic-mcp-server/issues"
33
+ },
34
+ "keywords": [
35
+ "fdic",
36
+ "bankfind",
37
+ "mcp",
38
+ "model-context-protocol",
39
+ "banking"
40
+ ],
41
+ "publishConfig": {
42
+ "access": "public"
43
+ },
44
+ "dependencies": {
45
+ "@modelcontextprotocol/sdk": "^1.0.0",
46
+ "axios": "^1.7.0",
47
+ "express": "^4.18.2",
48
+ "zod": "^3.22.4"
49
+ },
50
+ "devDependencies": {
51
+ "@types/express": "^4.17.21",
52
+ "@types/node": "^20.0.0",
53
+ "@types/supertest": "^6.0.3",
54
+ "esbuild": "^0.27.4",
55
+ "supertest": "^7.1.4",
56
+ "typescript": "^5.3.0",
57
+ "vitest": "^3.2.4"
58
+ },
59
+ "engines": {
60
+ "node": ">=18.0.0"
61
+ }
62
+ }