@ellul-estate/eorcompass-com-eor-pricing-index-mcp 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/README.md +12 -0
- package/bin.mjs +11 -0
- package/package.json +27 -0
- package/server.json +18 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# EOR Compass — eor-pricing-index (MCP server)
|
|
2
|
+
|
|
3
|
+
EOR Compass: the median advertised EOR price per employee per month, read from verified vendor price pages (August 2026), as a searchable dataset with its source and licence on every row.
|
|
4
|
+
|
|
5
|
+
An MCP server over the dataset EOR Compass publishes at https://eorcompass.com/eor. The server reads the
|
|
6
|
+
CSV the site serves (https://eorcompass.com/eor/eor-pricing-index.csv) and exposes it to any MCP client as tools:
|
|
7
|
+
`dataset_columns`, `dataset_search`, `dataset_row`, `dataset_compare`, plus the CSV as a
|
|
8
|
+
resource. Every result names its source page and licence.
|
|
9
|
+
|
|
10
|
+
Run: `npx @ellul-estate/eorcompass-com-eor-pricing-index-mcp` (stdio transport).
|
|
11
|
+
|
|
12
|
+
Data licence: https://eorcompass.com/terms. The data is free to cite with a link to https://eorcompass.com/eor.
|
package/bin.mjs
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// GENERATED by infra/fleet/mcp-package.mjs from hubs/eorcompass.com/hub.config.json — do not edit.
|
|
3
|
+
import { serve } from "@ellul-estate/mcp-kit";
|
|
4
|
+
serve({
|
|
5
|
+
"domain": "eorcompass.com",
|
|
6
|
+
"name": "EOR Compass",
|
|
7
|
+
"description": "EOR Compass: the median advertised EOR price per employee per month, read from verified vendor price pages (August 2026), as a searchable dataset with its source and licence on every row.",
|
|
8
|
+
"csvUrl": "https://eorcompass.com/eor/eor-pricing-index.csv",
|
|
9
|
+
"datasetPage": "https://eorcompass.com/eor",
|
|
10
|
+
"license": "https://eorcompass.com/terms"
|
|
11
|
+
});
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ellul-estate/eorcompass-com-eor-pricing-index-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "EOR Compass: the median advertised EOR price per employee per month, read from verified vendor price pages (August 2026), as a searchable dataset with its source and licence on every row.",
|
|
5
|
+
"license": "SEE LICENSE IN README.md",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"eorcompass-com-eor-pricing-index-mcp": "./bin.mjs"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin.mjs",
|
|
12
|
+
"server.json",
|
|
13
|
+
"README.md"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://eorcompass.com/eor",
|
|
16
|
+
"keywords": [
|
|
17
|
+
"mcp",
|
|
18
|
+
"model-context-protocol",
|
|
19
|
+
"dataset",
|
|
20
|
+
"eor-pricing-index",
|
|
21
|
+
"eorcompass.com"
|
|
22
|
+
],
|
|
23
|
+
"mcpName": "com.eorcompass/eor-pricing-index",
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@ellul-estate/mcp-kit": "^0.1.0"
|
|
26
|
+
}
|
|
27
|
+
}
|
package/server.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "com.eorcompass/eor-pricing-index",
|
|
4
|
+
"description": "EOR Compass: the median advertised EOR price per employee per month, read from verified vendor...",
|
|
5
|
+
"version": "0.1.0",
|
|
6
|
+
"websiteUrl": "https://eorcompass.com",
|
|
7
|
+
"packages": [
|
|
8
|
+
{
|
|
9
|
+
"registryType": "npm",
|
|
10
|
+
"registryBaseUrl": "https://registry.npmjs.org",
|
|
11
|
+
"identifier": "@ellul-estate/eorcompass-com-eor-pricing-index-mcp",
|
|
12
|
+
"version": "0.1.0",
|
|
13
|
+
"transport": {
|
|
14
|
+
"type": "stdio"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|