Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
OpenClaw agent: zoho-creator-mcp-server Zoho MCPP Servers This repository contains Model Context Privacy Protocol (MCPP) server implementations for multiple Zoho services, allowing you to interact with Zoho APIs programmatically through enhanced MCP with advanced privacy controls. Available Servers This workspace includes three MCPP-enabled servers: 1. **Zoho Creator Server** (Port 8000) - Access Zoho Creator applications, forms, and reports 2. **Zoho CRM 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
zoho-creator-mcp-server 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
OpenClaw agent: zoho-creator-mcp-server Zoho MCPP Servers This repository contains Model Context Privacy Protocol (MCPP) server implementations for multiple Zoho services, allowing you to interact with Zoho APIs programmatically through enhanced MCP with advanced privacy controls. Available Servers This workspace includes three MCPP-enabled servers: 1. **Zoho Creator Server** (Port 8000) - Access Zoho Creator applications, forms, and reports 2. **Zoho CRM
Public facts
6
Change events
1
Artifacts
0
Freshness
Feb 22, 2026
Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 22, 2026
Vendor
Ajay Rg 8583
Artifacts
0
Benchmarks
0
Last release
0.1.0
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.
Setup snapshot
git clone https://github.com/ajay-rg-8583/mcpp-server.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
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.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Ajay Rg 8583
Protocol compatibility
MCP
Auth modes
mcp, api_key, oauth
Machine-readable schemas
OpenAPI or schema references published
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
bash
git clone https://github.com/ajay-rg-8583/mcpp-server.git cd mcpp-server
bash
npm install
bash
# Zoho API Configuration (Required) ZOHO_CLIENT_ID=your_client_id_here ZOHO_CLIENT_SECRET=your_client_secret_here ZOHO_REDIRECT_URI=http://localhost:3000/oauth/callback # MCPP Bypass Configuration (Optional) # Set to 'true' to operate as normal MCP server (bypasses all MCPP privacy checks) # Set to 'false' or omit to use full MCPP mode with sensitivity checks BYPASS_MCPP_SENSITIVITY=false # Server Ports (Optional - defaults provided) MCP_PORT=8000 # Zoho Domain Configuration (Optional - defaults for India region) ZOHO_ACCOUNTS_DOMAIN=https://accounts.zoho.in ZOHO_API_DOMAIN=https://www.zohoapis.in # Region-specific alternatives: # US: https://accounts.zoho.com, https://www.zohoapis.com # EU: https://accounts.zoho.eu, https://www.zohoapis.eu # AU: https://accounts.zoho.com.au, https://www.zohoapis.com.au
json
{
"access_token": "1000.xxx...",
"refresh_token": "1000.yyy...",
"expires_in": 3600,
"token_type": "Bearer",
"issued_at": 1692000000000
}json
{
"access_token": "1000.xxx...",
"refresh_token": "1000.yyy...",
"expires_in": 3600,
"token_type": "Bearer",
"issued_at": 1692000000000
}json
{
"access_token": "1000.xxx...",
"refresh_token": "1000.yyy...",
"expires_in": 3600,
"token_type": "Bearer",
"issued_at": 1692000000000,
"organization_id": "12345678"
}Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
OpenClaw agent: zoho-creator-mcp-server Zoho MCPP Servers This repository contains Model Context Privacy Protocol (MCPP) server implementations for multiple Zoho services, allowing you to interact with Zoho APIs programmatically through enhanced MCP with advanced privacy controls. Available Servers This workspace includes three MCPP-enabled servers: 1. **Zoho Creator Server** (Port 8000) - Access Zoho Creator applications, forms, and reports 2. **Zoho CRM
This repository contains Model Context Privacy Protocol (MCPP) server implementations for multiple Zoho services, allowing you to interact with Zoho APIs programmatically through enhanced MCP with advanced privacy controls.
This workspace includes three MCPP-enabled servers:
The Zoho MCPP servers act as bridges between AI assistants that implement the Model Context Protocol (like Claude) and the Zoho APIs. These servers include enhanced privacy features through the Model Context Privacy Protocol (MCPP), providing:
git clone https://github.com/ajay-rg-8583/mcpp-server.git
cd mcpp-server
npm install
Before configuring the servers, you need to obtain API credentials from Zoho:
MCPP Server (or any name you prefer)http://localhost:3000http://localhost:3000/oauth/callbackEach server requires specific API scopes:
ZohoCreator.dashboard.READZohoCreator.meta.READZohoCreator.form.CREATEZohoCreator.report.READZohoCreator.report.UPDATEZohoCreator.report.DELETEZohoCRM.modules.ALLZohoCRM.settings.ALLZohoCRM.users.ALLZohoBooks.fullaccess.ALLAfter creating the application:
.env fileBefore running any server, you need to create these mandatory files:
.env)Location: Root directory (/mcpp-server/.env)
Purpose: Contains API credentials and server configuration
Security: Add to .gitignore (already configured)
Create a .env file with the following structure:
# Zoho API Configuration (Required)
ZOHO_CLIENT_ID=your_client_id_here
ZOHO_CLIENT_SECRET=your_client_secret_here
ZOHO_REDIRECT_URI=http://localhost:3000/oauth/callback
# MCPP Bypass Configuration (Optional)
# Set to 'true' to operate as normal MCP server (bypasses all MCPP privacy checks)
# Set to 'false' or omit to use full MCPP mode with sensitivity checks
BYPASS_MCPP_SENSITIVITY=false
# Server Ports (Optional - defaults provided)
MCP_PORT=8000
# Zoho Domain Configuration (Optional - defaults for India region)
ZOHO_ACCOUNTS_DOMAIN=https://accounts.zoho.in
ZOHO_API_DOMAIN=https://www.zohoapis.in
# Region-specific alternatives:
# US: https://accounts.zoho.com, https://www.zohoapis.com
# EU: https://accounts.zoho.eu, https://www.zohoapis.eu
# AU: https://accounts.zoho.com.au, https://www.zohoapis.com.au
These files are automatically created after authentication but need specific locations:
Location: Root directory (/mcpp-server/.zoho-creator-credentials.json)
Auto-generated after: node dist/zoho-creator-mcpp-server.js auth
{
"access_token": "1000.xxx...",
"refresh_token": "1000.yyy...",
"expires_in": 3600,
"token_type": "Bearer",
"issued_at": 1692000000000
}
Location: Root directory (/mcpp-server/.zoho-crm-credentials.json)
Auto-generated after: node dist/zoho-crm-mcpp-server.js auth
{
"access_token": "1000.xxx...",
"refresh_token": "1000.yyy...",
"expires_in": 3600,
"token_type": "Bearer",
"issued_at": 1692000000000
}
Location: Root directory (/mcpp-server/.zoho-books-credentials.json)
Auto-generated after: node dist/zoho-books-mcpp-server.js auth
{
"access_token": "1000.xxx...",
"refresh_token": "1000.yyy...",
"expires_in": 3600,
"token_type": "Bearer",
"issued_at": 1692000000000,
"organization_id": "12345678"
}
.vscode/launch.json)Purpose: Enables debugging in VS Code
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug Creator Server",
"program": "${workspaceFolder}/dist/zoho-creator-mcpp-server.js",
"runtimeExecutable": "/usr/local/bin/node",
"preLaunchTask": "npm: build",
"env": {"NODE_ENV": "development"}
}
]
}
.vscode/tasks.json)Purpose: Defines build and run tasks
{
"version": "2.0.0",
"tasks": [
{
"label": "npm: build",
"type": "shell",
"command": "npm",
"args": ["run", "build"],
"group": "build"
}
]
}
git clone https://github.com/ajay-rg-8583/mcpp-server.gitnpm install.env file with your Zoho API credentialsnpm run buildnode dist/zoho-creator-mcpp-server.js authnode dist/zoho-crm-mcpp-server.js authnode dist/zoho-books-mcpp-server.js authnpm run start:creator (or CRM/Books).env file or credential files to version control# Good: Specific scopes
ZohoCreator.report.READ,ZohoCreator.form.CREATE
# Avoid: Overly broad permissions
ZohoCreator.fullaccess.ALL
# Make credential files readable only by owner
chmod 600 .zoho-*-credentials.json
chmod 600 .env
.env file in the root directory with the following variables (for Creator and CRM servers):ZOHO_CLIENT_ID=your_client_id
ZOHO_CLIENT_SECRET=your_client_secret
ZOHO_REDIRECT_URI=http://localhost:3000/oauth/callback
MCP_PORT=8000 # Or 8001 for CRM
ZOHO_ACCOUNTS_DOMAIN=https://accounts.zoho.in
ZOHO_API_DOMAIN=https://zohoapis.in/creator # Adjust for CRM
Credentials Storage:
.zoho-creator-credentials.json (for Creator).zoho-crm-credentials.json (for CRM).zoho-books-credentials.json (for Books).env.Each server requires specific configuration and scopes:
ZohoCRM.modules.ALL, ZohoCRM.settings.ALL, ZohoCRM.users.ALLhttps://www.zohoapis.in/crm/v8 (or .com for US)ZohoBooks.fullaccess.ALLhttps://www.zohoapis.in/books/v3.zoho-books-credentials.json (auto-generated after authentication)Each server needs to be authenticated separately. This will launch the OAuth flow and save credentials to the appropriate JSON file:
# Authenticate Creator server (creates .zoho-creator-credentials.json)
node dist/zoho-creator-mcpp-server.js auth
# Authenticate CRM server (creates .zoho-crm-credentials.json)
node dist/zoho-crm-mcpp-server.js auth
# Authenticate Books server (creates .zoho-books-credentials.json)
node dist/zoho-books-mcpp-server.js auth
# Start Creator server (port 8000)
npm run start:creator
# Start CRM server (port 8001)
npm run start:crm
# Start Books server (port 8002)
npm run start:books
# Start all servers simultaneously
npm run start:all
This workspace includes VS Code tasks for easy server management:
Cmd+Shift+P)# Debug individual servers with inspection
npm run debug:creator # Port 9229
npm run debug:crm # Port 9230
npm run debug:books # Port 9231
All servers implement the Model Context Privacy Protocol (MCPP) with:
The protocol enforces a strict hierarchy:
{
name: "get_books_invoices",
isSensitive: true,
dataPolicy: {
data_usage_permissions: {
display: 'allow', // Always allowed
process: 'allow', // Processing allowed
store: 'prompt', // Requires consent
transfer: 'prompt' // Requires consent
},
target_permissions: {
allowed_targets: ['internal_llm', 'claude-3'],
blocked_targets: ['gpt-4']
},
consent_overrides: {
custom_consent_message: "This will access sensitive invoice data..."
}
}
}
ZOHO_CLIENT_ID=your_client_id ZOHO_CLIENT_SECRET=your_client_secret ZOHO_REDIRECT_URI=http://localhost:3000/oauth/callback ZOHO_ACCOUNT_OWNER=your_zoho_account_email MCP_PORT=8000 ZOHO_ACCOUNTS_DOMAIN=https://accounts.zoho.in ZOHO_API_DOMAIN=https://zohoapis.in/creator
Replace `your_client_id` and `your_client_secret` with your Zoho API credentials.
**Important:**
- `ZOHO_ACCOUNT_OWNER` should be set to your Zoho account email address. This is crucial for API access.
- `ZOHO_ACCOUNTS_DOMAIN` and `ZOHO_API_DOMAIN` are region-specific. Modify them based on your Zoho Creator domain:
- US: `https://accounts.zoho.com` and `https://zohoapis.com/creator`
- India: `https://accounts.zoho.in` and `https://zohoapis.in/creator`
- Europe: `https://accounts.zoho.eu` and `https://zohoapis.eu/creator`
- Australia: `https://accounts.zoho.com.au` and `https://zohoapis.com.au/creator`
- Others: Check Zoho documentation for your specific region
2. For Zoho Books, credentials are managed in `.zoho-books-credentials.json` (created automatically after authentication). You do not need to manually edit this file.
### Setting Up Zoho Creator API Access
1. Go to the [Zoho Developer Console](https://api-console.zoho.in/)
2. Create a new client (Server Based-Client)
3. Set the redirect URI to `http://localhost:3000/oauth/callback`
4. Make a note of the Client ID and Client Secret
5. Add these values to your `.env` file
## Running the Server
### Development Mode
```bash
npm run dev
This runs the server using ts-node for development purposes.
npm run build
npm run start
The build command compiles TypeScript to JavaScript in the dist directory, and start runs the compiled code.
When you start the MCP server for the first time:
node ./dist/zoho-creator-mcpp-server.js -- auth
or
npm run start -- auth
http://localhost:3000/oauth/callback).zoho-creator-credentials.json for Creator.zoho-crm-credentials.json for CRM.zoho-books-credentials.json for Books
2a. For Zoho CRM, credentials are managed in .zoho-crm-credentials.json (created automatically after authentication). You do not need to manually edit this file.When you authorize the application, you'll see a screen like this:

The application will request permissions to access your Zoho Creator data, including:
The MCP server implements the following Model Context Protocol endpoints:
POST /mcp/list_tools: List available tools for Zoho CreatorPOST /mcp/call_tool: Call a specific Zoho Creator toolAdditionally, the server provides:
The server provides tools to interact with Zoho Creator, including:
The server automatically handles authentication through OAuth 2.0:

If you encounter authentication errors, your token might be expired. The server should handle token refresh automatically, but you may need to re-authenticate occasionally.
Be mindful of Zoho Creator API limits. If you encounter rate limit errors, reduce the frequency of your requests.
This project is licensed under the MIT License - see the LICENSE file for details.
To integrate with GitHub Copilot, add the following configuration to GitHub settings.json file:
"zoho-creator-mcp":{
"type": "sse",
"url": "http://localhost:8000/mcp"
},
To integrate with Claude IDE, add the following configuration to your Claude settings:
"mcp": {
"providers": {
"zoho-creator-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8000/mcp"
]
}
}
}
.env FileError: Cannot find environment variables
Solution: Create .env file in root directory with required variables (see Mandatory Files Setup above)
Error: Authentication failed or Invalid client credentials
Solution:
ZOHO_CLIENT_ID and ZOHO_CLIENT_SECRET in .env file.in, .com, .eu, .com.au)http://localhost:3000/oauth/callbackError: Port 8000 already in use
Solution:
MCP_PORT in .env file to an available portlsof -ti:8000 | xargs killError: TypeScript compilation errors
Solution:
# Clean and rebuild
rm -rf dist/
npm run build
# Check Node.js version (requires v18+)
node --version
Error: OAuth callback fails or hangs
Solution:
http://localhost:3000/oauth/callbackError: Insufficient permissions or Access denied
Solution:
node dist/zoho-[service]-mcpp-server.js authError: API calls fail with wrong region
Solution: Update domains in .env for your region:
# US
ZOHO_ACCOUNTS_DOMAIN=https://accounts.zoho.com
ZOHO_API_DOMAIN=https://www.zohoapis.com
# EU
ZOHO_ACCOUNTS_DOMAIN=https://accounts.zoho.eu
ZOHO_API_DOMAIN=https://www.zohoapis.eu
# Australia
ZOHO_ACCOUNTS_DOMAIN=https://accounts.zoho.com.au
ZOHO_API_DOMAIN=https://www.zohoapis.com.au
Your project should look like this after setup:
mcpp-server/
โโโ .env # Your API credentials
โโโ .zoho-creator-credentials.json # Auto-generated after auth
โโโ .zoho-crm-credentials.json # Auto-generated after auth
โโโ .zoho-books-credentials.json # Auto-generated after auth
โโโ dist/ # Built JavaScript files
โ โโโ zoho-creator-mcpp-server.js
โ โโโ zoho-crm-mcpp-server.js
โ โโโ zoho-books-mcpp-server.js
โโโ src/ # TypeScript source
โโโ package.json
โโโ README.md
If you encounter issues not covered here:
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
ready
Auth
mcp, api_key, oauth
Streaming
No
Data region
global
Protocol support
Requires: mcp, lang:typescript
Forbidden: none
Guardrails
Operational confidence: medium
curl -s "https://xpersona.co/api/v1/agents/mcp-ajay-rg-8583-mcpp-server/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-ajay-rg-8583-mcpp-server/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-ajay-rg-8583-mcpp-server/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
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
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
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
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
Contract JSON
{
"contractStatus": "ready",
"authModes": [
"mcp",
"api_key",
"oauth"
],
"requires": [
"mcp",
"lang:typescript"
],
"forbidden": [],
"supportsMcp": true,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": "https://github.com/ajay-rg-8583/mcpp-server#input",
"outputSchemaRef": "https://github.com/ajay-rg-8583/mcpp-server#output",
"dataRegion": "global",
"contractUpdatedAt": "2026-02-24T19:46:35.248Z",
"sourceUpdatedAt": "2026-02-24T19:46:35.248Z",
"freshnessSeconds": 4433377
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-ajay-rg-8583-mcpp-server/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-ajay-rg-8583-mcpp-server/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-ajay-rg-8583-mcpp-server/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-ajay-rg-8583-mcpp-server/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-ajay-rg-8583-mcpp-server/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-ajay-rg-8583-mcpp-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-17T03:16:12.772Z"
}
},
"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"
}
],
"flattenedTokens": "protocol:MCP|supported|contract"
}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-ajay-rg-8583-mcpp-server/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ajay-rg-8583-mcpp-server/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:46:35.248Z",
"isPublic": true
},
{
"factKey": "auth_modes",
"category": "compatibility",
"label": "Auth modes",
"value": "mcp, api_key, oauth",
"href": "https://xpersona.co/api/v1/agents/mcp-ajay-rg-8583-mcpp-server/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ajay-rg-8583-mcpp-server/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:46:35.248Z",
"isPublic": true
},
{
"factKey": "schema_refs",
"category": "artifact",
"label": "Machine-readable schemas",
"value": "OpenAPI or schema references published",
"href": "https://github.com/ajay-rg-8583/mcpp-server#input",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ajay-rg-8583-mcpp-server/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:46:35.248Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Ajay Rg 8583",
"href": "https://github.com/ajay-rg-8583/mcpp-server",
"sourceUrl": "https://github.com/ajay-rg-8583/mcpp-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-ajay-rg-8583-mcpp-server/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ajay-rg-8583-mcpp-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 zoho-creator-mcp-server and adjacent AI workflows.