Mcp Server Proj — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Server Proj (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) server for coordinate system transformations and map projections.
pip install mcp-server-projmcp-server-projfrom mcp_server_proj import CoordinateTransformer
# Create transformer instance
transformer = CoordinateTransformer()
# Set source and target coordinate systems
transformer.set_source_crs("EPSG:4326") # WGS84
transformer.set_target_crs("EPSG:3857") # Web Mercator
# Initialize transformer
transformer.initialize_transformer()
# Transform coordinates
x, y = transformer.transform_point(116.3, 39.9)
print(f"Transformed coordinates: ({x}, {y})")The main coordinate transformation class provides the following methods:
set_source_crs(crs: str): Set source coordinate systemset_target_crs(crs: str): Set target coordinate systeminitialize_transformer(): Initialize the transformertransform_point(x: float, y: float) -> tuple[float, float]: Transform a single pointThe MCP protocol server provides two tools:
transform-coordinates: Transform coordinates between different systems {
"source_crs": "EPSG:4326",
"target_crs": "EPSG:3857",
"coordinates": [
{"x": 116.3, "y": 39.9}
]
}list-supported-crs: List all supported coordinate systemsStandard identifiers for coordinate reference systems:
Example of a geographic coordinate system:
GEOGCS["WGS 84",
DATUM["WGS_1984",
SPHEROID["WGS 84",6378137,298.257223563]],
PRIMEM["Greenwich",0],
UNIT["degree",0.0174532925199433]]Example of WGS84:
+proj=longlat +datum=WGS84 +no_defs +type=crsFor the best debugging experience, use the MCP Inspector:
npx @modelcontextprotocol/inspector mcp-server-projMIT
radial-hks ([email protected])
Issues and Pull Requests are welcome!
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.