@pipeworx/mcp-data-fortworth 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 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-data-fortworth
2
+
3
+ Fort Worth Open Data (data.fortworthtexas.gov) Socrata MCP.
4
+
5
+ Part of [Pipeworx](https://pipeworx.io) — an MCP gateway connecting AI agents to 983+ live data sources.
6
+
7
+ ## Tools
8
+
9
+ | Tool | Description |
10
+ |------|-------------|
11
+ | `datasets` | Search the Fort Worth Open Data catalog of open datasets by keyword. Returns each dataset\'s resource_id, name, description, category and update date — pass the resource_id to query/metadata. |
12
+ | `query` | Run a Socrata SoQL query against a Fort Worth Open Data dataset by resource_id (e.g. "eax3-qev8"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns matching rows as JSON. |
13
+ | `metadata` | Get a Fort Worth Open Data dataset\'s schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "eax3-qev8". |
14
+
15
+ ## Quick Start
16
+
17
+ Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
18
+
19
+ ```json
20
+ {
21
+ "mcpServers": {
22
+ "data-fortworth": {
23
+ "url": "https://gateway.pipeworx.io/data-fortworth/mcp"
24
+ }
25
+ }
26
+ }
27
+ ```
28
+
29
+ Or connect to the full Pipeworx gateway for access to all 983+ 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 Data Fortworth 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-data-fortworth",
3
+ "version": "0.1.0",
4
+ "description": "Fort Worth Open Data (data.fortworthtexas.gov) Socrata MCP.",
5
+ "type": "module",
6
+ "main": "src/index.ts",
7
+ "types": "src/index.ts",
8
+ "keywords": ["mcp", "mcp-server", "model-context-protocol", "pipeworx", "data-fortworth"],
9
+ "license": "MIT",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/pipeworx-io/mcp-data-fortworth"
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/data-fortworth",
4
+ "title": "Data Fortworth",
5
+ "description": "Fort Worth Open Data (data.fortworthtexas.gov) Socrata MCP.",
6
+ "version": "0.1.0",
7
+ "websiteUrl": "https://pipeworx.io/packs/data-fortworth",
8
+ "repository": {
9
+ "url": "https://github.com/pipeworx-io/mcp-data-fortworth",
10
+ "source": "github"
11
+ },
12
+ "remotes": [
13
+ {
14
+ "type": "streamable-http",
15
+ "url": "https://gateway.pipeworx.io/data-fortworth/mcp"
16
+ }
17
+ ]
18
+ }
package/src/index.ts ADDED
@@ -0,0 +1,113 @@
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
+ * Fort Worth Open Data (data.fortworthtexas.gov) Socrata MCP.
21
+ *
22
+ * Fort Worth Open Data — US/Canada government open data (data.fortworthtexas.gov) via the Socrata SoQL API: Fort Worth TX — traffic, permits, public safety & services. Keyless.
23
+ * Use `datasets` (catalog search) -> `metadata` (schema) -> `query` (SoQL).
24
+ */
25
+
26
+
27
+ const BASE = 'https://data.fortworthtexas.gov';
28
+ const UA = 'pipeworx-mcp-data-fortworth/1.0 (+https://pipeworx.io)';
29
+
30
+ const tools: McpToolExport['tools'] = [
31
+ {
32
+ name: 'datasets',
33
+ description: 'Search the Fort Worth Open Data catalog of open datasets by keyword. Returns each dataset\'s resource_id, name, description, category and update date — pass the resource_id to query/metadata.',
34
+ inputSchema: {
35
+ type: 'object',
36
+ properties: {
37
+ query: { type: 'string', description: 'Keyword to search dataset titles/descriptions (e.g. "budget", "crime", "health").' },
38
+ limit: { type: 'number', description: 'Max datasets (1-100, default 20).' },
39
+ offset: { type: 'number', description: 'Pagination offset.' },
40
+ },
41
+ },
42
+ },
43
+ {
44
+ name: 'query',
45
+ description: 'Run a Socrata SoQL query against a Fort Worth Open Data dataset by resource_id (e.g. "eax3-qev8"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns matching rows as JSON.',
46
+ inputSchema: {
47
+ type: 'object',
48
+ properties: {
49
+ resource_id: { type: 'string', description: 'Dataset id, e.g. "eax3-qev8" (from datasets).' },
50
+ where: { type: 'string', description: 'SoQL $where filter, e.g. "year >= 2020 AND status = \'Active\'".' },
51
+ select: { type: 'string', description: 'SoQL $select, e.g. "name, count(*) AS n".' },
52
+ group: { type: 'string', description: 'SoQL $group column(s).' },
53
+ order: { type: 'string', description: 'SoQL $order, e.g. "date DESC".' },
54
+ limit: { type: 'number', description: 'Max rows (default Socrata 1000).' },
55
+ offset: { type: 'number', description: 'Pagination offset.' },
56
+ },
57
+ required: ['resource_id'],
58
+ },
59
+ },
60
+ {
61
+ name: 'metadata',
62
+ description: 'Get a Fort Worth Open Data dataset\'s schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "eax3-qev8".',
63
+ inputSchema: {
64
+ type: 'object',
65
+ properties: { resource_id: { type: 'string', description: 'Dataset id, e.g. "eax3-qev8".' } },
66
+ required: ['resource_id'],
67
+ },
68
+ },
69
+ ];
70
+
71
+ async function callTool(name: string, args: Record<string, unknown>): Promise<unknown> {
72
+ switch (name) {
73
+ case 'datasets': {
74
+ const p = new URLSearchParams({
75
+ limit: String(Math.min(100, Math.max(1, (args.limit as number) ?? 20))),
76
+ offset: String(Math.max(0, (args.offset as number) ?? 0)),
77
+ domains: 'data.fortworthtexas.gov',
78
+ });
79
+ if (args.query) p.set('q', String(args.query));
80
+ const res = await fetch(`https://api.us.socrata.com/api/catalog/v1?${p}`, { headers: { Accept: 'application/json', 'User-Agent': UA } });
81
+ if (!res.ok) throw new Error(`Socrata catalog: ${res.status}`);
82
+ return res.json();
83
+ }
84
+ case 'query': {
85
+ const id = reqStr(args, 'resource_id', '"eax3-qev8"');
86
+ const p = new URLSearchParams();
87
+ for (const k of ['where', 'select', 'group', 'order'] as const) {
88
+ if (args[k]) p.set(`$${k}`, String(args[k]));
89
+ }
90
+ if (args.limit != null) p.set('$limit', String(args.limit));
91
+ if (args.offset != null) p.set('$offset', String(args.offset));
92
+ return socrataGet(`/resource/${id}.json?${p}`);
93
+ }
94
+ case 'metadata':
95
+ return socrataGet(`/api/views/${reqStr(args, 'resource_id', '"eax3-qev8"')}.json`);
96
+ default:
97
+ throw new Error(`Unknown tool: ${name}`);
98
+ }
99
+ }
100
+
101
+ async function socrataGet(path: string): Promise<unknown> {
102
+ const res = await fetch(`${BASE}${path}`, { headers: { Accept: 'application/json', 'User-Agent': UA } });
103
+ if (!res.ok) throw new Error(`data.fortworthtexas.gov: ${res.status}`);
104
+ return res.json();
105
+ }
106
+
107
+ function reqStr(args: Record<string, unknown>, key: string, example: string): string {
108
+ const v = args[key];
109
+ if (typeof v !== 'string' || !v.trim()) throw new Error(`Required argument "${key}" is missing. Pass a string like ${example}.`);
110
+ return v;
111
+ }
112
+
113
+ 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
+ }