@pipeworx/mcp-makstat-mk 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/LICENSE +21 -0
- package/README.md +58 -0
- package/package.json +20 -0
- package/server.json +18 -0
- package/src/index.ts +101 -0
- package/tsconfig.json +14 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Pipeworx
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# mcp-makstat-mk
|
|
2
|
+
|
|
3
|
+
MakStat — State Statistical Office of North Macedonia, PxWeb MCP.
|
|
4
|
+
|
|
5
|
+
Part of [Pipeworx](https://pipeworx.io) — an MCP gateway connecting AI agents to 693+ live data sources.
|
|
6
|
+
|
|
7
|
+
## Tools
|
|
8
|
+
|
|
9
|
+
| Tool | Description |
|
|
10
|
+
|------|-------------|
|
|
11
|
+
| `subjects` | Navigate the subject tree. Items have type "l" (folder) or "t" (table, .px suffix). |
|
|
12
|
+
| `table_meta` | Table definition (dimensions, valid values). Path must end in the ".px" table id. |
|
|
13
|
+
| `query_table` | Pull data from a table. body is a PxWeb query object. Narrow dimensions to stay under the PxWeb cell limit. |
|
|
14
|
+
|
|
15
|
+
## Quick Start
|
|
16
|
+
|
|
17
|
+
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
|
|
18
|
+
|
|
19
|
+
```json
|
|
20
|
+
{
|
|
21
|
+
"mcpServers": {
|
|
22
|
+
"makstat-mk": {
|
|
23
|
+
"url": "https://gateway.pipeworx.io/makstat-mk/mcp"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Or connect to the full Pipeworx gateway for access to all 693+ data sources:
|
|
30
|
+
|
|
31
|
+
```json
|
|
32
|
+
{
|
|
33
|
+
"mcpServers": {
|
|
34
|
+
"pipeworx": {
|
|
35
|
+
"url": "https://gateway.pipeworx.io/mcp"
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Using with ask_pipeworx
|
|
42
|
+
|
|
43
|
+
Instead of calling tools directly, you can ask questions in plain English:
|
|
44
|
+
|
|
45
|
+
```
|
|
46
|
+
ask_pipeworx({ question: "your question about Makstat Mk data" })
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
The gateway picks the right tool and fills the arguments automatically.
|
|
50
|
+
|
|
51
|
+
## More
|
|
52
|
+
|
|
53
|
+
- [All tools and guides](https://github.com/pipeworx-io/examples)
|
|
54
|
+
- [pipeworx.io](https://pipeworx.io)
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
MIT
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pipeworx/mcp-makstat-mk",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "MakStat — State Statistical Office of North Macedonia, PxWeb MCP.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "src/index.ts",
|
|
7
|
+
"types": "src/index.ts",
|
|
8
|
+
"keywords": ["mcp", "mcp-server", "model-context-protocol", "pipeworx", "makstat-mk"],
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/pipeworx-io/mcp-makstat-mk"
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"typecheck": "tsc --noEmit"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"typescript": "^5.7.0"
|
|
19
|
+
}
|
|
20
|
+
}
|
package/server.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.pipeworx-io/makstat-mk",
|
|
4
|
+
"title": "Makstat Mk",
|
|
5
|
+
"description": "MakStat — State Statistical Office of North Macedonia, PxWeb MCP.",
|
|
6
|
+
"version": "0.1.0",
|
|
7
|
+
"websiteUrl": "https://pipeworx.io/packs/makstat-mk",
|
|
8
|
+
"repository": {
|
|
9
|
+
"url": "https://github.com/pipeworx-io/mcp-makstat-mk",
|
|
10
|
+
"source": "github"
|
|
11
|
+
},
|
|
12
|
+
"remotes": [
|
|
13
|
+
{
|
|
14
|
+
"type": "streamable-http",
|
|
15
|
+
"url": "https://gateway.pipeworx.io/makstat-mk/mcp"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
interface McpToolDefinition {
|
|
2
|
+
name: string;
|
|
3
|
+
description: string;
|
|
4
|
+
inputSchema: {
|
|
5
|
+
type: 'object';
|
|
6
|
+
properties: Record<string, unknown>;
|
|
7
|
+
required?: string[];
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
interface McpToolExport {
|
|
12
|
+
tools: McpToolDefinition[];
|
|
13
|
+
callTool: (name: string, args: Record<string, unknown>) => Promise<unknown>;
|
|
14
|
+
meter?: { credits: number };
|
|
15
|
+
cost?: Record<string, unknown>;
|
|
16
|
+
provider?: string;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* MakStat — State Statistical Office of North Macedonia, PxWeb MCP.
|
|
21
|
+
*
|
|
22
|
+
* Keyless PxWeb API. Note the /MakStat database segment after /en. Tables
|
|
23
|
+
* carry a ".px" suffix (item type "t"); folders have type "l". The PxWeb
|
|
24
|
+
* backend enforces a per-query cell limit, so query_table should narrow
|
|
25
|
+
* dimensions via the body's query selections rather than pulling everything.
|
|
26
|
+
*/
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
const BASE = 'https://makstat.stat.gov.mk/PXWeb/api/v1/en/MakStat';
|
|
30
|
+
const UA = 'pipeworx-mcp-makstat-mk/1.0 (+https://pipeworx.io)';
|
|
31
|
+
|
|
32
|
+
const tools: McpToolExport['tools'] = [
|
|
33
|
+
{
|
|
34
|
+
name: 'subjects',
|
|
35
|
+
description: 'Navigate the subject tree. Items have type "l" (folder) or "t" (table, .px suffix).',
|
|
36
|
+
inputSchema: {
|
|
37
|
+
type: 'object',
|
|
38
|
+
properties: { path: { type: 'string', description: 'Sub-path under /MakStat/ (default empty = root, returns top-level folders).' } },
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: 'table_meta',
|
|
43
|
+
description: 'Table definition (dimensions, valid values). Path must end in the ".px" table id.',
|
|
44
|
+
inputSchema: {
|
|
45
|
+
type: 'object',
|
|
46
|
+
properties: { path: { type: 'string', description: 'e.g. "Naselenie/VencaniRazvedeni/280_VitStat_Brak_voz_ml.px"' } },
|
|
47
|
+
required: ['path'],
|
|
48
|
+
},
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
name: 'query_table',
|
|
52
|
+
description: 'Pull data from a table. body is a PxWeb query object. Narrow dimensions to stay under the PxWeb cell limit.',
|
|
53
|
+
inputSchema: {
|
|
54
|
+
type: 'object',
|
|
55
|
+
properties: {
|
|
56
|
+
path: { type: 'string', description: 'e.g. "Naselenie/VencaniRazvedeni/280_VitStat_Brak_voz_ml.px"' },
|
|
57
|
+
body: { type: 'object', description: '{query: [{code, selection: {filter, values}}], response: {format: "json-stat2"}}' },
|
|
58
|
+
},
|
|
59
|
+
required: ['path', 'body'],
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
];
|
|
63
|
+
|
|
64
|
+
async function callTool(name: string, args: Record<string, unknown>): Promise<unknown> {
|
|
65
|
+
switch (name) {
|
|
66
|
+
case 'subjects': {
|
|
67
|
+
const path = (args.path as string | undefined)?.replace(/^\/+|\/+$/g, '') ?? '';
|
|
68
|
+
return makstatGet(path ? `/${path}` : '');
|
|
69
|
+
}
|
|
70
|
+
case 'table_meta':
|
|
71
|
+
return makstatGet(`/${reqStr(args, 'path', '"Naselenie/VencaniRazvedeni/280_VitStat_Brak_voz_ml.px"').replace(/^\/+|\/+$/g, '')}`);
|
|
72
|
+
case 'query_table': {
|
|
73
|
+
const path = reqStr(args, 'path', '"Naselenie/VencaniRazvedeni/280_VitStat_Brak_voz_ml.px"').replace(/^\/+|\/+$/g, '');
|
|
74
|
+
const body = args.body;
|
|
75
|
+
if (!body || typeof body !== 'object') throw new Error('body must be a PxWeb query object.');
|
|
76
|
+
const res = await fetch(`${BASE}/${path}`, {
|
|
77
|
+
method: 'POST',
|
|
78
|
+
headers: { 'Content-Type': 'application/json', Accept: 'application/json', 'User-Agent': UA },
|
|
79
|
+
body: JSON.stringify(body),
|
|
80
|
+
});
|
|
81
|
+
if (!res.ok) throw new Error(`MakStat: ${res.status} ${await res.text().then((t) => t.slice(0, 200))}`);
|
|
82
|
+
return res.json();
|
|
83
|
+
}
|
|
84
|
+
default:
|
|
85
|
+
throw new Error(`Unknown tool: ${name}`);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
async function makstatGet(path: string): Promise<unknown> {
|
|
90
|
+
const res = await fetch(`${BASE}${path}`, { headers: { Accept: 'application/json', 'User-Agent': UA } });
|
|
91
|
+
if (!res.ok) throw new Error(`MakStat: ${res.status} ${await res.text().then((t) => t.slice(0, 200))}`);
|
|
92
|
+
return res.json();
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
function reqStr(args: Record<string, unknown>, key: string, example: string): string {
|
|
96
|
+
const v = args[key];
|
|
97
|
+
if (typeof v !== 'string' || !v.trim()) throw new Error(`Required argument "${key}" is missing. Pass a string like ${example}.`);
|
|
98
|
+
return v;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export default { tools, callTool, meter: { credits: 1 } } satisfies McpToolExport;
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2022",
|
|
4
|
+
"module": "ESNext",
|
|
5
|
+
"moduleResolution": "bundler",
|
|
6
|
+
"strict": true,
|
|
7
|
+
"esModuleInterop": true,
|
|
8
|
+
"skipLibCheck": true,
|
|
9
|
+
"outDir": "dist",
|
|
10
|
+
"rootDir": "src",
|
|
11
|
+
"declaration": true
|
|
12
|
+
},
|
|
13
|
+
"include": ["src"]
|
|
14
|
+
}
|