Endpoint
https://atlasemoji.com/api/mcpAtlasemoji documentation
The current Atlasemoji MCP release provides authenticated, read-only, non-destructive tools for capability discovery, GIS and GeoJSON validation, geofence calculations, manifest inspection, DataSynch preparation, and operational diagnostics.
https://atlasemoji.com/api/mcpStreamable HTTP
Atlasemoji-issued bearer credential. OAuth support is planned separately.
list_capabilitiesDiscover how Atlasemoji supports Atlas DataSynch, GIS, geofencing, CRM, inventory, Atlas Intercept, handheld scanning, APIs, integrations, routing, storytelling, learning, and partner workflows. Returns the related public APIs, partner access paths, production capabilities, current MCP tools, learning opportunities, and access requirements for each solution.
{
"includeTools": true,
"includePlatformCapabilities": true,
"includeLearningResources": true
}{
"platform": "Atlasemoji",
"solutionCount": 10,
"solutions": [
"Atlas DataSynch",
"Locations & GIS Foundation",
"Geofencing",
"CRM",
"Inventory & Items",
"Atlas Intercept",
"Handheld Scanner",
"API & Integration Hub",
"Travel & Routing",
"Learning & Help"
]
}get_datasynch_run_statusSupport Atlas DataSynch operations by retrieving recent processing and workflow status for an authorized company, workspace, or manifest. Agents can use the result to explain integration progress, identify stalled activity, and understand the current state of EDI, EDIFACT, cXML, API, file, telemetry, inventory, location, and partner-data workflows.
{
"companyId": "authorized-company-id",
"workspaceId": "authorized-workspace-id",
"manifestId": "authorized-manifest-id",
"timeWindow": "24h"
}{
"summaryType": "datasynch_run_status",
"timeWindow": "24h",
"source": {
"ok": true,
"status": 200
}
}get_failed_runsHelp support, implementation, operations, and partner agents investigate failed Atlas DataSynch activity across APIs, files, EDI, EDIFACT, cXML, mappings, inventory, telemetry, locations, and downstream workflows. Returns authorized failure and exception context without changing workflow records.
{
"companyId": "authorized-company-id",
"timeWindow": "7d"
}{
"summaryType": "failed_runs",
"timeWindow": "7d",
"source": {
"ok": true,
"status": 200
}
}validate_manifest_schemaPrepare geographic and operational manifest data for Atlasemoji use. Checks the supplied manifest structure, durable identity, locations, addresses, and coordinates before the data is used with workspaces, routes, storytelling, geofencing, DataSynch, inventory, CRM, or other Atlasemoji workflows.
{
"manifestJson": {
"manifestId": "manifest-example",
"locations": [
{
"latitude": 47.6101,
"longitude": -122.2015
}
]
}
}{
"valid": true,
"errors": [],
"warnings": [],
"totalLocationCount": 1
}get_manifest_summaryRetrieve authorized Atlasemoji manifest context so an agent can understand the places, routes, boundaries, layers, records, workflow purpose, workspace relationship, and operational context represented by the manifest.
{
"companyId": "authorized-company-id",
"manifestId": "authorized-manifest-id"
}{
"summaryType": "manifest_summary",
"safeFieldsOnly": true
}validate_coordinatesPrepare latitude and longitude values for Atlasemoji maps, routes, geofences, telemetry, mobile events, customer locations, assets, vessels, aircraft, storytelling, and operational workflows by checking accepted geographic ranges and returning normalized coordinates.
{
"point": {
"latitude": 47.6101,
"longitude": -122.2015
}
}{
"valid": true,
"normalized": {
"latitude": 47.6101,
"longitude": -122.2015
}
}validate_geojsonPrepare GeoJSON features, collections, points, lines, polygons, and geometry collections for Atlasemoji maps, routes, service areas, stories, manifests, geofences, learning exercises, APIs, and location-aware workflows by checking their basic structure.
{
"geojson": {
"type": "Point",
"coordinates": [
-122.2015,
47.6101
]
}
}{
"valid": true,
"type": "Point",
"errors": [],
"warnings": []
}detect_location_columnsIdentify address, city, state, province, region, postal code, latitude, and longitude fields in supplied business or operational records so they can be connected to Atlasemoji locations, customer sites, facilities, routes, territories, inventory, telemetry, geofences, and DataSynch workflows.
{
"rows": [
{
"Store": "Bellevue",
"Address": "123 Main Street",
"City": "Bellevue",
"State": "WA",
"ZIP": "98004",
"Latitude": 47.6101,
"Longitude": -122.2015
}
]
}{
"candidates": {
"latitude": [
"Latitude"
],
"longitude": [
"Longitude"
],
"address": [
"Address"
],
"city": [
"City"
],
"state": [
"State"
],
"postalCode": [
"ZIP"
]
}
}preview_geofencePrepare a radius-based geofence for an Atlasemoji location-aware workflow. Helps agents and users evaluate the proposed center, radius, coverage area, label, and tenant context before using production geofencing for movement, scans, arrivals, exits, dwell, proximity, telemetry, alerts, or downstream actions.
{
"companyId": "authorized-company-id",
"center": {
"latitude": 47.6101,
"longitude": -122.2015
},
"radiusMeters": 50,
"label": "Receiving area"
}{
"label": "Receiving area",
"radiusMeters": 50,
"approximateAreaSquareMeters": 7854
}check_point_in_geofenceEvaluate whether a vehicle, shipment, mobile device, scan, person-authorized location event, asset, aircraft, vessel, or other coordinate is inside a proposed radius boundary used in Atlasemoji geofencing and event-driven workflows.
{
"center": {
"latitude": 47.6101,
"longitude": -122.2015
},
"point": {
"latitude": 47.6102,
"longitude": -122.2014
},
"radiusMeters": 50
}{
"inside": true,
"distanceMeters": 13,
"radiusMeters": 50
}detect_file_schemaAnalyze a bounded preview of CSV, spreadsheet, JSON, EDI-normalized, EDIFACT-normalized, cXML-derived, inventory, telemetry, CRM, item, location, shipment, or partner records to identify their structure and determine how they may fit Atlas DataSynch workflows.
{
"rows": [
{
"sku": "SKU-100",
"warehouse": "SEA-01",
"quantity": 25
}
]
}{
"columns": [
"sku",
"warehouse",
"quantity"
],
"businessObject": {
"candidate": "inventory"
}
}preview_datasynch_rowsReview a bounded preview of partner, customer, ERP, WMS, TMS, CRM, inventory, telemetry, location, API, spreadsheet, EDI-normalized, EDIFACT-normalized, or cXML-derived records in the context of an authorized Atlasemoji company, workspace, or manifest.
{
"companyId": "authorized-company-id",
"rows": [
{
"locationId": "SEA-01",
"latitude": 47.6101,
"longitude": -122.2015
}
]
}{
"rowCount": 1,
"columns": [
"locationId",
"latitude",
"longitude"
]
}suggest_field_mappingSuggest an initial bridge between external partner, API, ERP, WMS, TMS, CRM, file, EDI-normalized, EDIFACT-normalized, cXML-derived, inventory, telemetry, item, and location fields and common Atlasemoji data targets. Intended to support integration design and human-reviewed mapping preparation.
{
"targetTable": "locations",
"rows": [
{
"street": "123 Main Street",
"city": "Bellevue",
"state": "WA",
"zip": "98004",
"lat": 47.6101,
"lng": -122.2015
}
]
}{
"targetTable": "locations",
"suggestedMapping": {
"latitude": "lat",
"longitude": "lng",
"address": "street",
"city": "city",
"state": "state",
"postalCode": "zip"
}
}summarize_workspace_activitySummarize recent authorized activity across an Atlasemoji company, workspace, or manifest so agents can explain what has happened across DataSynch, locations, manifests, integrations, telemetry, exceptions, inventory, partner workflows, and operational records.
{
"companyId": "authorized-company-id",
"workspaceId": "authorized-workspace-id",
"timeWindow": "24h"
}{
"summaryType": "workspace_activity",
"timeWindow": "24h"
}These entries describe Atlasemoji’s broader APIs, products, learning surfaces, and partner capabilities. They do not imply that every platform function is currently callable as an MCP tool.
production platform
Map-aware operating hub for locations, partner data, Xref, telemetry, inventory, exceptions, and normalized workflow records. Atlas DataSynch connects EDI, EDIFACT, cXML, APIs, spreadsheets, files, cloud applications, business systems, telemetry, inventory, customer data, and geographic context to reusable operational workflows.
Atlas DataSynch is a production platform. MCP currently supports preparation, discovery, status, exception, and activity use cases while additional approved capabilities can be added for specific client and partner relationships.
production platform
Load stores, distribution centers, yards, campuses, service areas, routes, customer sites, facilities, addresses, coordinates, observations, boundaries, and GeoJSON, then make that geography reusable across Atlasemoji workflows.
Atlasemoji treats geography as reusable infrastructure that can support applications, people, workflows, and agents.
partner access
Create radius or polygon boundaries that turn movement, scans, arrivals, exits, dwell time, proximity, mobile updates, telemetry, and asset locations into operational events.
MCP tools currently support geofence preparation and evaluation. Production geofencing, event processing, alerts, and integrations are available through approved Atlasemoji relationships.
production platform
Connect accounts, contacts, partners, campaigns, field coverage, territories, support activity, cases, communications, and customer relationships to the places where work happens.
Atlasemoji CRM capabilities are production platform capabilities. Additional MCP access can be defined for approved client and partner use cases.
production platform
Track products, parts, consignment stock, truck inventory, store inventory, warehouse inventory, high-value items, and operational assets by location or movement.
Inventory and item capabilities can be exposed to approved agents and partners through purpose-built access scopes.
partner access
Route alerts, webhooks, exceptions, notifications, and downstream actions when geographic, integration, telemetry, inventory, scan, customer, or operational events require a response.
Atlas Intercept is the response layer connecting Atlasemoji events to controlled operational action.
production platform
Use Android and mobile scanning for pick-pack, scan-n-pack, proof capture, inventory activity, proximity checks, field events, and location-aware operational workflows.
Handheld Scanner is a production solution and is not represented as a standalone public sandbox tool.
partner access
Provide RESTful access for Google Cloud, webhooks, EDI, EDIFACT, cXML, spreadsheets, files, applications, cloud storage, business systems, connectors, and partner workflows.
The API & Integration Hub is the primary access layer for applications, partners, developers, and approved agents.
public api
Build route visuals for field movement, customer visits, trips, vessels, aircraft, deliveries, waypoints, travel manifests, and operational planning.
Travelers and Routing provides immediate value for human users, developers, and agents working with movement and geographic planning.
learning resource
Provide quick starts, field guides, help files, API explainers, implementation notes, examples, and relationship-based sandboxes for business users, technical users, developers, educators, students, and AI agents.
Atlasemoji can provide isolated learning, demonstration, developer, classroom, client, and partner sandboxes for approved GIS, GeoJSON, routing, geofencing, telemetry, DataSynch, integration, and agent-development use cases. Access, data isolation, rate limits, available capabilities, and permitted operations are defined for each relationship.
Introductions to geography, mapping, spatial data, Atlasemoji solutions, and location-aware workflows.
Learn how GeoJSON represents places, routes, boundaries, and map features.
Reference material for common Atlasemoji, GIS, map, location, and workflow concepts.
Definitions for GIS, GeoJSON, routing, geofencing, integration, DataSynch, telemetry, and spatial workflows.
Atlasemoji solutions, MCP functions, API relationships, access requirements, and partner options.
Atlasemoji can provide isolated learning, demonstration, developer, classroom, client, and partner sandboxes for approved GIS, GeoJSON, routing, geofencing, telemetry, DataSynch, integration, and agent-development use cases. Access, data isolation, rate limits, available capabilities, and permitted operations are defined for each relationship.
Discuss MCP access