Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Xpersona Agent
Connect to Civic Nexus MCP for 100+ integrations. Skill: Civic Nexus Owner: TYRONEMICHAEL Summary: Connect to Civic Nexus MCP for 100+ integrations. Tags: latest:1.0.3 Version history: v1.0.3 | 2026-02-06T03:37:46.795Z | user - Added "User-Agent": "openclaw/1.0.0" header to the recommended mcporter configuration in mcporter.json. - No other changes introduced. v1.0.2 | 2026-02-04T17:18:03.293Z | user - Skill renamed from "civic-nexus-community" to "civic-nexus". - M
clawhub skill install kn701fmx1ymaqcswj1vptp944980g0ng:civic-nexusOverall rank
#62
Adoption
1.7K downloads
Trust
Unknown
Freshness
Feb 28, 2026
Freshness
Last checked Feb 28, 2026
Best For
Civic Nexus is best for general automation workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, CLAWHUB, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
Connect to Civic Nexus MCP for 100+ integrations. Skill: Civic Nexus Owner: TYRONEMICHAEL Summary: Connect to Civic Nexus MCP for 100+ integrations. Tags: latest:1.0.3 Version history: v1.0.3 | 2026-02-06T03:37:46.795Z | user - Added "User-Agent": "openclaw/1.0.0" header to the recommended mcporter configuration in mcporter.json. - No other changes introduced. v1.0.2 | 2026-02-04T17:18:03.293Z | user - Skill renamed from "civic-nexus-community" to "civic-nexus". - M Capability contract not published. No trust telemetry is available yet. 1.7K downloads reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 28, 2026
Vendor
Clawhub
Artifacts
0
Benchmarks
0
Last release
1.0.3
Install & run
clawhub skill install kn701fmx1ymaqcswj1vptp944980g0ng:civic-nexusNode.js workspace detected. Install dependencies securely: run `npm ci --ignore-scripts` to prevent post-install lifecycle triggers from running arbitrary code, then selectively audit the dependency tree.
Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
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.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Clawhub
Protocol compatibility
OpenClaw
Latest release
1.0.3
Adoption signal
1.7K downloads
Handshake status
UNKNOWN
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
3
Examples
6
Snippets
0
Languages
Unknown
json
{
"skills": {
"entries": {
"civic-nexus": {
"enabled": true,
"env": {
"NEXUS_URL": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
"NEXUS_TOKEN": "your-access-token"
}
}
}
}
}json
{
"mcpServers": {
"nexus": {
"baseUrl": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
"headers": {
"Authorization": "Bearer YOUR_TOKEN",
"User-Agent": "openclaw/1.0.0"
}
}
}
}bash
# List tools mcporter list nexus # Search tools mcporter list nexus | grep gmail # Call a tool mcporter call 'nexus.google-gmail-search_gmail_messages(query: "is:unread")'
bash
# List tools
npx tsx {baseDir}/nexus-tool-runner.ts --list
# Search tools
npx tsx {baseDir}/nexus-tool-runner.ts --search gmail
# Get tool schema
npx tsx {baseDir}/nexus-tool-runner.ts --schema google-gmail-search_gmail_messages
# Call a tool
npx tsx {baseDir}/nexus-tool-runner.ts --call google-gmail-search_gmail_messages --args '{"query": "is:unread"}'bash
# mcporter
mcporter call 'nexus.continue_job(jobId: "JOB_ID")'
# script
npx tsx {baseDir}/nexus-tool-runner.ts --call continue_job --args '{"job_id": "JOB_ID"}'json
{
"skills": {
"entries": {
"civic-nexus": {
"enabled": true,
"env": {
"NEXUS_URL": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
"NEXUS_TOKEN": "your-access-token"
}
}
}
}
}SKILL.md
---
name: civic-nexus
description: "Connect to Civic Nexus MCP for 100+ integrations."
metadata: {"openclaw":{"requires":{"env":["NEXUS_URL","NEXUS_TOKEN"],"anyBins":["mcporter","npx"]},"primaryEnv":"NEXUS_TOKEN"}}
---
# Civic Nexus MCP Bridge
> **⚠️ DISCLAIMER: Use at your own risk. For official documentation, visit [docs.civic.com](https://docs.civic.com).**
Connect to [Civic Nexus](https://nexus.civic.com) for 100+ integrations including Gmail, PostgreSQL, MongoDB, Box, and more.
## Setup
### 1. Get your Nexus credentials
1. Go to [nexus.civic.com](https://nexus.civic.com) and sign in
2. Get your **MCP URL** and **access token** from your profile settings
### 2. Configure in OpenClaw
Add to `~/.openclaw/openclaw.json`:
```json
{
"skills": {
"entries": {
"civic-nexus": {
"enabled": true,
"env": {
"NEXUS_URL": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
"NEXUS_TOKEN": "your-access-token"
}
}
}
}
}
```
### 3. (Optional) Configure mcporter
If you have mcporter installed (`npm install -g mcporter`), add to `~/.openclaw/workspace/config/mcporter.json`:
```json
{
"mcpServers": {
"nexus": {
"baseUrl": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
"headers": {
"Authorization": "Bearer YOUR_TOKEN",
"User-Agent": "openclaw/1.0.0"
}
}
}
}
```
## Instructions for the Agent
When the user asks to interact with external services through Nexus, try mcporter first. If it fails, fall back to the TypeScript script.
### Using mcporter
```bash
# List tools
mcporter list nexus
# Search tools
mcporter list nexus | grep gmail
# Call a tool
mcporter call 'nexus.google-gmail-search_gmail_messages(query: "is:unread")'
```
### Fallback: TypeScript script
```bash
# List tools
npx tsx {baseDir}/nexus-tool-runner.ts --list
# Search tools
npx tsx {baseDir}/nexus-tool-runner.ts --search gmail
# Get tool schema
npx tsx {baseDir}/nexus-tool-runner.ts --schema google-gmail-search_gmail_messages
# Call a tool
npx tsx {baseDir}/nexus-tool-runner.ts --call google-gmail-search_gmail_messages --args '{"query": "is:unread"}'
```
### Authorization flows
Some tools require OAuth on first use. When you see an authorization URL:
1. Show the URL to the user
2. After they authorize, continue:
```bash
# mcporter
mcporter call 'nexus.continue_job(jobId: "JOB_ID")'
# script
npx tsx {baseDir}/nexus-tool-runner.ts --call continue_job --args '{"job_id": "JOB_ID"}'
```
## Notes
- API calls can take 10-15 seconds (server-side latency)
- Tokens expire after ~30 days — regenerate from Nexus if needed
- Gmail batch requests limited to 5-25 messages per call
---_meta.json
{
"ownerId": "kn701fmx1ymaqcswj1vptp944980g0ng",
"slug": "civic-nexus",
"version": "1.0.3",
"publishedAt": 1770349066795
}package.json
{
"name": "civic-nexus",
"version": "1.0.0",
"description": "Connect any LLM to Civic Nexus MCP tools",
"type": "module",
"main": "nexus-tool-runner.ts",
"scripts": {
"start": "tsx nexus-tool-runner.ts",
"list": "tsx nexus-tool-runner.ts --list",
"search": "tsx nexus-tool-runner.ts --search",
"call": "tsx nexus-tool-runner.ts --call"
},
"keywords": [
"mcp",
"nexus",
"civic",
"claude",
"llm",
"tools",
"api"
],
"author": "Civic",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"tsx": "^4.19.0"
},
"engines": {
"node": ">=18.0.0"
}
}Editorial read
Docs source
CLAWHUB
Editorial quality
ready
Connect to Civic Nexus MCP for 100+ integrations. Skill: Civic Nexus Owner: TYRONEMICHAEL Summary: Connect to Civic Nexus MCP for 100+ integrations. Tags: latest:1.0.3 Version history: v1.0.3 | 2026-02-06T03:37:46.795Z | user - Added "User-Agent": "openclaw/1.0.0" header to the recommended mcporter configuration in mcporter.json. - No other changes introduced. v1.0.2 | 2026-02-04T17:18:03.293Z | user - Skill renamed from "civic-nexus-community" to "civic-nexus". - M
Skill: Civic Nexus
Owner: TYRONEMICHAEL
Summary: Connect to Civic Nexus MCP for 100+ integrations.
Tags: latest:1.0.3
Version history:
v1.0.3 | 2026-02-06T03:37:46.795Z | user
v1.0.2 | 2026-02-04T17:18:03.293Z | user
v1.0.1 | 2026-02-04T02:37:33.011Z | user
v1.0.0 | 2026-02-04T00:39:09.299Z | user
Initial release of nexus-mcp-bridge: connect OpenClaw to Civic Nexus for 100+ integrations.
Archive index:
Archive v1.0.3: 4 files, 5100 bytes
Files: nexus-tool-runner.ts (9333b), package.json (650b), SKILL.md (2793b), _meta.json (130b)
File v1.0.3:SKILL.md
⚠️ DISCLAIMER: Use at your own risk. For official documentation, visit docs.civic.com.
Connect to Civic Nexus for 100+ integrations including Gmail, PostgreSQL, MongoDB, Box, and more.
Add to ~/.openclaw/openclaw.json:
{
"skills": {
"entries": {
"civic-nexus": {
"enabled": true,
"env": {
"NEXUS_URL": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
"NEXUS_TOKEN": "your-access-token"
}
}
}
}
}
If you have mcporter installed (npm install -g mcporter), add to ~/.openclaw/workspace/config/mcporter.json:
{
"mcpServers": {
"nexus": {
"baseUrl": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
"headers": {
"Authorization": "Bearer YOUR_TOKEN",
"User-Agent": "openclaw/1.0.0"
}
}
}
}
When the user asks to interact with external services through Nexus, try mcporter first. If it fails, fall back to the TypeScript script.
# List tools
mcporter list nexus
# Search tools
mcporter list nexus | grep gmail
# Call a tool
mcporter call 'nexus.google-gmail-search_gmail_messages(query: "is:unread")'
# List tools
npx tsx {baseDir}/nexus-tool-runner.ts --list
# Search tools
npx tsx {baseDir}/nexus-tool-runner.ts --search gmail
# Get tool schema
npx tsx {baseDir}/nexus-tool-runner.ts --schema google-gmail-search_gmail_messages
# Call a tool
npx tsx {baseDir}/nexus-tool-runner.ts --call google-gmail-search_gmail_messages --args '{"query": "is:unread"}'
Some tools require OAuth on first use. When you see an authorization URL:
# mcporter
mcporter call 'nexus.continue_job(jobId: "JOB_ID")'
# script
npx tsx {baseDir}/nexus-tool-runner.ts --call continue_job --args '{"job_id": "JOB_ID"}'
File v1.0.3:_meta.json
{ "ownerId": "kn701fmx1ymaqcswj1vptp944980g0ng", "slug": "civic-nexus", "version": "1.0.3", "publishedAt": 1770349066795 }
File v1.0.3:package.json
{ "name": "civic-nexus", "version": "1.0.0", "description": "Connect any LLM to Civic Nexus MCP tools", "type": "module", "main": "nexus-tool-runner.ts", "scripts": { "start": "tsx nexus-tool-runner.ts", "list": "tsx nexus-tool-runner.ts --list", "search": "tsx nexus-tool-runner.ts --search", "call": "tsx nexus-tool-runner.ts --call" }, "keywords": [ "mcp", "nexus", "civic", "claude", "llm", "tools", "api" ], "author": "Civic", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.25.2", "tsx": "^4.19.0" }, "engines": { "node": ">=18.0.0" } }
Archive v1.0.2: 4 files, 5003 bytes
Files: nexus-tool-runner.ts (9152b), package.json (650b), SKILL.md (2753b), _meta.json (130b)
File v1.0.2:SKILL.md
⚠️ DISCLAIMER: Use at your own risk. For official documentation, visit docs.civic.com.
Connect to Civic Nexus for 100+ integrations including Gmail, PostgreSQL, MongoDB, Box, and more.
Add to ~/.openclaw/openclaw.json:
{
"skills": {
"entries": {
"civic-nexus": {
"enabled": true,
"env": {
"NEXUS_URL": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
"NEXUS_TOKEN": "your-access-token"
}
}
}
}
}
If you have mcporter installed (npm install -g mcporter), add to ~/.openclaw/workspace/config/mcporter.json:
{
"mcpServers": {
"nexus": {
"baseUrl": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}
When the user asks to interact with external services through Nexus, try mcporter first. If it fails, fall back to the TypeScript script.
# List tools
mcporter list nexus
# Search tools
mcporter list nexus | grep gmail
# Call a tool
mcporter call 'nexus.google-gmail-search_gmail_messages(query: "is:unread")'
# List tools
npx tsx {baseDir}/nexus-tool-runner.ts --list
# Search tools
npx tsx {baseDir}/nexus-tool-runner.ts --search gmail
# Get tool schema
npx tsx {baseDir}/nexus-tool-runner.ts --schema google-gmail-search_gmail_messages
# Call a tool
npx tsx {baseDir}/nexus-tool-runner.ts --call google-gmail-search_gmail_messages --args '{"query": "is:unread"}'
Some tools require OAuth on first use. When you see an authorization URL:
# mcporter
mcporter call 'nexus.continue_job(jobId: "JOB_ID")'
# script
npx tsx {baseDir}/nexus-tool-runner.ts --call continue_job --args '{"job_id": "JOB_ID"}'
File v1.0.2:_meta.json
{ "ownerId": "kn701fmx1ymaqcswj1vptp944980g0ng", "slug": "civic-nexus", "version": "1.0.2", "publishedAt": 1770225483293 }
File v1.0.2:package.json
{ "name": "civic-nexus", "version": "1.0.0", "description": "Connect any LLM to Civic Nexus MCP tools", "type": "module", "main": "nexus-tool-runner.ts", "scripts": { "start": "tsx nexus-tool-runner.ts", "list": "tsx nexus-tool-runner.ts --list", "search": "tsx nexus-tool-runner.ts --search", "call": "tsx nexus-tool-runner.ts --call" }, "keywords": [ "mcp", "nexus", "civic", "claude", "llm", "tools", "api" ], "author": "Civic", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.25.2", "tsx": "^4.19.0" }, "engines": { "node": ">=18.0.0" } }
Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/trust"
Operational fit
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
Do not use if
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "CLAWHUB",
"generatedAt": "2026-04-17T05:11:18.424Z"
}
},
"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": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Clawhub",
"href": "https://clawhub.ai/TYRONEMICHAEL/civic-nexus",
"sourceUrl": "https://clawhub.ai/TYRONEMICHAEL/civic-nexus",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1.7K downloads",
"href": "https://clawhub.ai/TYRONEMICHAEL/civic-nexus",
"sourceUrl": "https://clawhub.ai/TYRONEMICHAEL/civic-nexus",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "latest_release",
"category": "release",
"label": "Latest release",
"value": "1.0.3",
"href": "https://clawhub.ai/TYRONEMICHAEL/civic-nexus",
"sourceUrl": "https://clawhub.ai/TYRONEMICHAEL/civic-nexus",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-02-06T03:37:46.795Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "release",
"title": "Release 1.0.3",
"description": "- Added \"User-Agent\": \"openclaw/1.0.0\" header to the recommended mcporter configuration in mcporter.json. - No other changes introduced.",
"href": "https://clawhub.ai/TYRONEMICHAEL/civic-nexus",
"sourceUrl": "https://clawhub.ai/TYRONEMICHAEL/civic-nexus",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-02-06T03:37:46.795Z",
"isPublic": true
}
]Sponsored
Ads related to Civic Nexus and adjacent AI workflows.