-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "mcp-claude-filemaker",
"version": "1.0.0",
"description": "Model Context Protocol (MCP) server for accessing FileMaker databases via Data API with comprehensive script discovery and execution capabilities",
"main": "server.js",
"type": "module",
"bin": {
"mcp-claude-filemaker": "./server.js"
},
"scripts": {
"start": "node server.js",
"build": "tsc",
"dev": "tsx src/index.ts",
"test": "node test-server.js",
"docker:build": "docker build -t mcp-claude-filemaker .",
"docker:run": "docker run -d --env-file .env mcp-claude-filemaker"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"axios": "^1.11.0",
"node-cache": "^5.1.2",
"dotenv": "^17.2.1"
},
"devDependencies": {
"@types/node": "^20.19.9",
"typescript": "^5.8.3",
"tsx": "^4.20.3",
"esbuild": "^0.25.8"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"filemaker",
"data-api",
"database",
"claude",
"ai",
"assistant"
],
"author": "Community",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/datacraftdevelopment/MCP-Claude-FileMaker.git"
},
"bugs": {
"url": "https://github.com/datacraftdevelopment/MCP-Claude-FileMaker/issues"
},
"homepage": "https://github.com/datacraftdevelopment/MCP-Claude-FileMaker#readme"
}