@matchuplabs/nyc-api-mcp 0.1.0 → 0.1.1
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 +17 -4
- package/server.json +27 -3
package/package.json
CHANGED
|
@@ -1,20 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matchuplabs/nyc-api-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "MCP server for NYC property intelligence, building violations, and restaurant/venue compliance data via nycapi.app",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"nyc-api-mcp": "dist/index.js"
|
|
9
9
|
},
|
|
10
|
-
"mcpName": "io.github.
|
|
10
|
+
"mcpName": "io.github.MatchupLabs/nyc-api",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
14
|
"url": "https://github.com/MATCHUP-LABS/nycapi.git"
|
|
15
15
|
},
|
|
16
|
-
"keywords": [
|
|
17
|
-
|
|
16
|
+
"keywords": [
|
|
17
|
+
"mcp",
|
|
18
|
+
"nyc",
|
|
19
|
+
"property",
|
|
20
|
+
"violations",
|
|
21
|
+
"restaurant",
|
|
22
|
+
"real-estate",
|
|
23
|
+
"api",
|
|
24
|
+
"ai-agent"
|
|
25
|
+
],
|
|
26
|
+
"files": [
|
|
27
|
+
"dist",
|
|
28
|
+
"server.json",
|
|
29
|
+
"README.md"
|
|
30
|
+
],
|
|
18
31
|
"scripts": {
|
|
19
32
|
"build": "tsc",
|
|
20
33
|
"dev": "tsx src/index.ts",
|
package/server.json
CHANGED
|
@@ -1,12 +1,36 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.MatchupLabs/nyc-api",
|
|
3
4
|
"title": "NYC Property & Venue API",
|
|
4
|
-
"description": "NYC property intelligence, building violations, and restaurant/venue compliance
|
|
5
|
+
"description": "NYC property intelligence, building violations, and restaurant/venue compliance via MCP.",
|
|
5
6
|
"version": "0.1.0",
|
|
7
|
+
"repository": {
|
|
8
|
+
"url": "https://github.com/MATCHUP-LABS/nycapi",
|
|
9
|
+
"source": "github"
|
|
10
|
+
},
|
|
6
11
|
"packages": [
|
|
7
12
|
{
|
|
8
13
|
"registryType": "npm",
|
|
9
|
-
"
|
|
14
|
+
"registryBaseUrl": "https://registry.npmjs.org",
|
|
15
|
+
"identifier": "@matchuplabs/nyc-api-mcp",
|
|
16
|
+
"version": "0.1.0",
|
|
17
|
+
"transport": {
|
|
18
|
+
"type": "stdio"
|
|
19
|
+
},
|
|
20
|
+
"environmentVariables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "NYC_API_KEY",
|
|
23
|
+
"description": "API key from nycapi.app",
|
|
24
|
+
"isRequired": true,
|
|
25
|
+
"isSecret": true
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "NYC_API_BASE_URL",
|
|
29
|
+
"description": "API base URL (default: https://nycapi.app)",
|
|
30
|
+
"isRequired": false,
|
|
31
|
+
"isSecret": false
|
|
32
|
+
}
|
|
33
|
+
]
|
|
10
34
|
}
|
|
11
35
|
]
|
|
12
36
|
}
|