Crawler Summary

mcp-server-m365-roadmap answer-first brief

MCP server for Microsoft 365 Roadmap items Microsoft 365 Roadmap MCP Server Ein Model Context Protocol (MCP) Server, der Microsoft 365 Roadmap Items von der offiziellen Microsoft Release Communications API abruft und für Copilot Studio bereitstellt. 🚀 Features - **8 MCP Tools** zum Abrufen und Durchsuchen von Microsoft 365 Roadmap Items - **OData v2 API** Support mit flexiblen Filtern - **REST API** über HTTP/JSON - **Deployment-ready** für Azure und GitHub Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.

Freshness

Last checked 2/22/2026

Best For

Contract is available with explicit auth and schema references.

Not Ideal For

mcp-server-m365-roadmap is not ideal for teams that need stronger public trust telemetry, lower setup complexity, or more explicit contract coverage before production rollout.

Evidence Sources Checked

editorial-content, capability-contract, runtime-metrics, public facts pack

Claim this agent
Agent DossierGitHubSafety: 93/100

mcp-server-m365-roadmap

MCP server for Microsoft 365 Roadmap items Microsoft 365 Roadmap MCP Server Ein Model Context Protocol (MCP) Server, der Microsoft 365 Roadmap Items von der offiziellen Microsoft Release Communications API abruft und für Copilot Studio bereitstellt. 🚀 Features - **8 MCP Tools** zum Abrufen und Durchsuchen von Microsoft 365 Roadmap Items - **OData v2 API** Support mit flexiblen Filtern - **REST API** über HTTP/JSON - **Deployment-ready** für Azure und GitHub

MCPverified

Public facts

6

Change events

1

Artifacts

0

Freshness

Feb 22, 2026

Verifiededitorial-content1 verified compatibility signal

Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.

Schema refs publishedTrust evidence available

Trust score

Unknown

Compatibility

MCP

Freshness

Feb 22, 2026

Vendor

Ollimenzel

Artifacts

0

Benchmarks

0

Last release

1.0.0

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.

Setup snapshot

git clone https://github.com/ollimenzel/roadmap-mcp-server.git
  1. 1

    Setup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Ollimenzel

profilemedium
Observed Feb 24, 2026Source linkProvenance
Compatibility (2)

Protocol compatibility

MCP

contracthigh
Observed Feb 24, 2026Source linkProvenance

Auth modes

mcp, api_key

contracthigh
Observed Feb 24, 2026Source linkProvenance
Artifact (1)

Machine-readable schemas

OpenAPI or schema references published

contracthigh
Observed Feb 24, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB MCP

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Executable Examples

json

{
  "limit": 50,
  "filter": "status eq 'Launched'"
}

json

{
  "keyword": "Copilot",
  "limit": 10
}

json

{
  "id": "497417"
}

json

{
  "product": "Microsoft Copilot (Microsoft 365)",
  "limit": 50
}

json

{
  "phase": "General Availability",
  "limit": 20
}

json

{
  "status": "Rolling out"
}

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB MCP

Docs source

GITHUB MCP

Editorial quality

ready

MCP server for Microsoft 365 Roadmap items Microsoft 365 Roadmap MCP Server Ein Model Context Protocol (MCP) Server, der Microsoft 365 Roadmap Items von der offiziellen Microsoft Release Communications API abruft und für Copilot Studio bereitstellt. 🚀 Features - **8 MCP Tools** zum Abrufen und Durchsuchen von Microsoft 365 Roadmap Items - **OData v2 API** Support mit flexiblen Filtern - **REST API** über HTTP/JSON - **Deployment-ready** für Azure und GitHub

Full README

Microsoft 365 Roadmap MCP Server

Ein Model Context Protocol (MCP) Server, der Microsoft 365 Roadmap Items von der offiziellen Microsoft Release Communications API abruft und für Copilot Studio bereitstellt.

🚀 Features

  • 8 MCP Tools zum Abrufen und Durchsuchen von Microsoft 365 Roadmap Items
  • OData v2 API Support mit flexiblen Filtern
  • REST API über HTTP/JSON
  • Deployment-ready für Azure und GitHub
  • Copilot Studio kompatibel
  • MCP Best Practices konform

📋 Verfügbare Tools

1. get_roadmap_items

Ruft alle Microsoft 365 Roadmap Items ab mit optionalen OData Filtern.

Parameter:

  • limit (optional): Maximale Anzahl an Items (Standard: 100)
  • offset (optional): Anzahl zu überspringender Items (Standard: 0)
  • filter (optional): OData Filter String (z.B. "products/any(p:p eq 'Microsoft Teams')")

Beispiel:

{
  "limit": 50,
  "filter": "status eq 'Launched'"
}

2. search_roadmap

Durchsucht Roadmap Items nach Stichwörtern (client-seitig).

Parameter:

  • keyword: Suchbegriff für Titel und Beschreibung
  • limit (optional): Maximale Anzahl an Ergebnissen (Standard: 20)

Beispiel:

{
  "keyword": "Copilot",
  "limit": 10
}

3. get_roadmap_item

Ruft ein spezifisches Roadmap Item nach ID ab.

Parameter:

  • id: Die ID des Roadmap Items

Beispiel:

{
  "id": "497417"
}

4. filter_by_product

Filtert Items nach Microsoft Produkt (verwendet OData Array-Filter).

Parameter:

  • product: Produktname (z.B. "Microsoft Copilot (Microsoft 365)", "Microsoft Teams", "SharePoint")
  • limit (optional): Maximale Anzahl an Items (Standard: 100)

Beispiel:

{
  "product": "Microsoft Copilot (Microsoft 365)",
  "limit": 50
}

5. filter_by_release_phase

Filtert Items nach Release Ring/Phase.

Parameter:

  • phase: Release-Phase ("General Availability", "Public Preview", "In Development", "Rolling Out")
  • limit (optional): Maximale Anzahl an Items (Standard: 100)

Beispiel:

{
  "phase": "General Availability",
  "limit": 20
}

6. filter_by_status

Filtert Items nach aktuellem Status.

Parameter:

  • status: Status ("In development", "Rolling out", "Launched")
  • limit (optional): Maximale Anzahl an Items (Standard: 100)

Beispiel:

{
  "status": "Rolling out"
}

7. filter_by_date

Filtert Items nach GA oder Preview Datum.

Parameter:

  • date: Datum im Format YYYY-MM (z.B. "2025-10" für Oktober 2025)
  • dateType (optional): "generalAvailability" oder "preview" (Standard: "generalAvailability")
  • limit (optional): Maximale Anzahl an Items (Standard: 100)

Beispiel:

{
  "date": "2025-10",
  "dateType": "generalAvailability"
}

8. filter_roadmap (Advanced)

Ermöglicht komplexe OData Filter Queries.

Parameter:

  • filter: OData Filter Expression
  • limit (optional): Maximale Anzahl an Items (Standard: 100)

Beispiele:

{
  "filter": "products/any(p:p eq 'Microsoft Copilot (Microsoft 365)') and generalAvailabilityDate eq '2025-10'"
}
{
  "filter": "status eq 'Launched' and releaseRings/any(r:r eq 'General Availability')"
}

🔍 OData Filter Syntax

Die API unterstützt OData v2 Filter:

Array Filters (für products, platforms, releaseRings)

products/any(p:p eq 'Microsoft Teams')
platforms/any(p:p eq 'Web')
releaseRings/any(r:r eq 'General Availability')

Vergleichsoperatoren

status eq 'Launched'
generalAvailabilityDate eq '2025-10'
generalAvailabilityDate ge '2025-10'  (greater or equal)
generalAvailabilityDate le '2025-12'  (less or equal)

Logische Operatoren

status eq 'Launched' and generalAvailabilityDate eq '2025-10'
status eq 'Rolling out' or status eq 'Launched'

Beispiel-Queries

Copilot Items für Oktober 2025:

products/any(p:p eq 'Microsoft Copilot (Microsoft 365)') and generalAvailabilityDate eq '2025-10'

Teams Items in Public Preview:

products/any(p:p eq 'Microsoft Teams') and releaseRings/any(r:r eq 'Public Preview')

Alle Items ab Oktober 2025:

generalAvailabilityDate ge '2025-10'

🛠️ Installation & Lokale Entwicklung

Voraussetzungen

  • Node.js 18.x oder höher
  • npm oder yarn

Setup

# Repository klonen
git clone <repository-url>
cd "Roadmap MCP"

# Dependencies installieren
npm install

# Projekt bauen
npm run build

# Server starten
npm start

Der Server läuft dann auf http://localhost:3000/mcp

Entwicklungsmodus

npm run dev

🌐 Deployment

Azure Web App

  1. Azure Web App erstellen:
az webapp create \
  --name m365-roadmap-mcp \
  --resource-group <your-resource-group> \
  --plan <your-app-service-plan> \
  --runtime "NODE|20-lts"
  1. GitHub Secrets einrichten:

    • Gehe zu Repository Settings > Secrets
    • Füge AZURE_WEBAPP_PUBLISH_PROFILE hinzu
    • Hole das Publish Profile aus dem Azure Portal
  2. Automatisches Deployment:

    • Push zu main Branch triggert automatisches Deployment via GitHub Actions

Docker

# Build Docker Image
docker build -t m365-roadmap-mcp .

# Run Container
docker run -p 3000:3000 m365-roadmap-mcp

Azure Container Instances

# Build und Push zu Container Registry
docker build -t <registry-name>.azurecr.io/m365-roadmap-mcp:latest .
docker push <registry-name>.azurecr.io/m365-roadmap-mcp:latest

# Deploy zu Azure Container Instances
az container create \
  --resource-group <resource-group> \
  --name m365-roadmap-mcp \
  --image <registry-name>.azurecr.io/m365-roadmap-mcp:latest \
  --dns-name-label m365-roadmap-mcp \
  --ports 3000

🔌 Copilot Studio Integration

1. MCP Server URL

Nach dem Deployment notiere die URL:

  • Azure Web App: https://m365-roadmap-mcp.azurewebsites.net/mcp
  • Azure Container: https://<dns-name>.region.azurecontainer.io:3000/mcp

2. In Copilot Studio konfigurieren

  1. Öffne Copilot Studio
  2. Gehe zu Settings > MCP Servers
  3. Klicke auf Add Server
  4. Konfiguriere:
    • Name: Microsoft 365 Roadmap
    • Type: HTTP
    • URL: <your-deployment-url>/mcp
  5. Speichern

3. Tools verwenden

Die 8 Tools sind jetzt in Copilot Studio verfügbar:

  • get_roadmap_items - Alle Items mit optionalen Filtern
  • search_roadmap - Keyword-Suche
  • get_roadmap_item - Einzelnes Item nach ID
  • filter_by_product - Nach Produkt filtern (z.B. Copilot, Teams, SharePoint)
  • filter_by_release_phase - Nach Release Ring filtern
  • filter_by_status - Nach Status filtern
  • filter_by_date - Nach Datum filtern
  • filter_roadmap - Erweiterte OData Queries

4. Beispiel-Anfragen

Alle Copilot Items für Oktober 2025:

Tool: filter_roadmap
Filter: products/any(p:p eq 'Microsoft Copilot (Microsoft 365)') and generalAvailabilityDate eq '2025-10'

Teams Items im Rollout:

Tool: filter_by_product
Product: Microsoft Teams
+ filter_by_status
Status: Rolling out

🧪 Testing

Lokales Testen mit MCP Inspector

npx @modelcontextprotocol/inspector node build/index.js

Health Check

curl http://localhost:3000/health

Tool Aufruf Beispiele

Get all roadmap items:

curl -X POST http://localhost:3000/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{
    "jsonrpc": "2.0",
    "method": "tools/call",
    "params": {
      "name": "get_roadmap_items",
      "arguments": {
        "limit": 10
      }
    },
    "id": 1
  }'

Search roadmap:

curl -X POST http://localhost:3000/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{
    "jsonrpc": "2.0",
    "method": "tools/call",
    "params": {
      "name": "search_roadmap",
      "arguments": {
        "keyword": "Teams",
        "limit": 5
      }
    },
    "id": 1
  }'

Filter Copilot items for October 2025:

curl -X POST http://localhost:3000/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{
    "jsonrpc": "2.0",
    "method": "tools/call",
    "params": {
      "name": "filter_roadmap",
      "arguments": {
        "filter": "products/any(p:p eq '\''Microsoft Copilot (Microsoft 365)'\'') and generalAvailabilityDate eq '\''2025-10'\''",
        "limit": 50
      }
    },
    "id": 1
  }'

Get specific roadmap item:

curl -X POST http://localhost:3000/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{
    "jsonrpc": "2.0",
    "method": "tools/call",
    "params": {
      "name": "get_roadmap_item",
      "arguments": {
        "id": "497417"
      }
    },
    "id": 1
  }'

📚 API Referenz

Microsoft 365 Roadmap API

  • Endpoint v2: https://www.microsoft.com/releasecommunications/api/v2/m365
  • Protocol: OData v2 with array filters
  • Dokumentation: Microsoft 365 Roadmap

Verfügbare Filter Felder:

  • id (number): Roadmap Item ID
  • title (string): Titel des Items
  • description (string): Beschreibung
  • status (string): "In development", "Rolling out", "Launched"
  • products (array): Liste der betroffenen Produkte
  • platforms (array): Liste der Plattformen (Web, Desktop, Mobile, etc.)
  • releaseRings (array): "General Availability", "Public Preview", etc.
  • cloudInstances (array): Cloud-Instanzen
  • generalAvailabilityDate (string): GA Datum im Format YYYY-MM
  • previewAvailabilityDate (string): Preview Datum im Format YYYY-MM
  • created (datetime): Erstellungsdatum
  • modified (datetime): Änderungsdatum

MCP Protocol

🔧 Konfiguration

Umgebungsvariablen

PORT=3000              # Server Port (Standard: 3000)
NODE_ENV=production    # Node Umgebung

📁 Projektstruktur

.
├── src/
│   └── index.ts          # MCP Server Implementation
├── build/                # Kompilierte TypeScript Dateien
├── .github/
│   └── workflows/
│       ├── azure-deploy.yml  # Azure Deployment
│       └── build.yml         # Build & Test
├── .azure/
│   └── config.yml        # Azure Konfiguration
├── Dockerfile            # Docker Container Setup
├── package.json          # Node.js Dependencies
├── tsconfig.json         # TypeScript Konfiguration
└── README.md            # Diese Datei

🤝 Beitragen

Contributions sind willkommen! Bitte:

  1. Fork das Repository
  2. Erstelle einen Feature Branch
  3. Committe deine Änderungen
  4. Push zum Branch
  5. Erstelle einen Pull Request

📝 Lizenz

MIT License - siehe LICENSE Datei für Details

🆘 Support

Bei Fragen oder Problemen:

🔗 Links

Auto-Deploy Test

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

Verifiedcapability-contract

Contract coverage

Status

ready

Auth

mcp, api_key

Streaming

Yes

Data region

global

Protocol support

MCP: verified

Requires: mcp, lang:typescript, streaming

Forbidden: none

Guardrails

Operational confidence: medium

Contract is available with explicit auth and schema references.
Trust confidence is not low and verification freshness is acceptable.
Protocol support is explicitly confirmed in contract metadata.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/mcp-ollimenzel-roadmap-mcp-server/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-ollimenzel-roadmap-mcp-server/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-ollimenzel-roadmap-mcp-server/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITLAB_AI_CATALOGgitlab-mcp

Rank

83

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_PUBLIC_PROJECTSgitlab-mcp

Rank

80

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_AI_CATALOGrmcp-openapi

Rank

74

Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_AI_CATALOGrmcp-actix-web

Rank

72

An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)

Traction

No public download signal

Freshness

Updated 2d ago

MCP
Machine Appendix

Contract JSON

{
  "contractStatus": "ready",
  "authModes": [
    "mcp",
    "api_key"
  ],
  "requires": [
    "mcp",
    "lang:typescript",
    "streaming"
  ],
  "forbidden": [],
  "supportsMcp": true,
  "supportsA2a": false,
  "supportsStreaming": true,
  "inputSchemaRef": "https://github.com/ollimenzel/roadmap-mcp-server#input",
  "outputSchemaRef": "https://github.com/ollimenzel/roadmap-mcp-server#output",
  "dataRegion": "global",
  "contractUpdatedAt": "2026-02-24T19:46:17.473Z",
  "sourceUpdatedAt": "2026-02-24T19:46:17.473Z",
  "freshnessSeconds": 4421460
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-ollimenzel-roadmap-mcp-server/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/mcp-ollimenzel-roadmap-mcp-server/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/mcp-ollimenzel-roadmap-mcp-server/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-ollimenzel-roadmap-mcp-server/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-ollimenzel-roadmap-mcp-server/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-ollimenzel-roadmap-mcp-server/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "MCP"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "GITHUB_MCP",
      "generatedAt": "2026-04-16T23:57:17.551Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "MCP",
      "type": "protocol",
      "support": "supported",
      "confidenceSource": "contract",
      "notes": "Confirmed by capability contract"
    },
    {
      "key": "mcp",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "microsoft365",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "roadmap",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "model-context-protocol",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "cli",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    }
  ],
  "flattenedTokens": "protocol:MCP|supported|contract capability:mcp|supported|profile capability:microsoft365|supported|profile capability:roadmap|supported|profile capability:model-context-protocol|supported|profile capability:cli|supported|profile"
}

Facts JSON

[
  {
    "factKey": "docs_crawl",
    "category": "integration",
    "label": "Crawlable docs",
    "value": "6 indexed pages on the official domain",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "MCP",
    "href": "https://xpersona.co/api/v1/agents/mcp-ollimenzel-roadmap-mcp-server/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ollimenzel-roadmap-mcp-server/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:46:17.473Z",
    "isPublic": true
  },
  {
    "factKey": "auth_modes",
    "category": "compatibility",
    "label": "Auth modes",
    "value": "mcp, api_key",
    "href": "https://xpersona.co/api/v1/agents/mcp-ollimenzel-roadmap-mcp-server/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ollimenzel-roadmap-mcp-server/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:46:17.473Z",
    "isPublic": true
  },
  {
    "factKey": "schema_refs",
    "category": "artifact",
    "label": "Machine-readable schemas",
    "value": "OpenAPI or schema references published",
    "href": "https://github.com/ollimenzel/roadmap-mcp-server#input",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ollimenzel-roadmap-mcp-server/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:46:17.473Z",
    "isPublic": true
  },
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Ollimenzel",
    "href": "https://github.com/ollimenzel/roadmap-mcp-server",
    "sourceUrl": "https://github.com/ollimenzel/roadmap-mcp-server",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-02-24T19:43:14.176Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/mcp-ollimenzel-roadmap-mcp-server/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ollimenzel-roadmap-mcp-server/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "docs_update",
    "title": "Docs refreshed: Sign in to GitHub · GitHub",
    "description": "Fresh crawlable documentation was indexed for the official domain.",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  }
]

Sponsored

Ads related to mcp-server-m365-roadmap and adjacent AI workflows.