context-space
Ultimate Context Engineering Infrastructure, starting from MCPs and Integrations
Source#
- Repository: context-space/context-space
- Last source update: 2026-03-30
- Last verified: 2026-04-05
Tags#
Integration notes#
Repository is focused on tool/server interoperability; wrap in bounded worker contracts for production use.
worker.md example#
Starter worker.md contract mapped from this registry entry. Copy this file and adapt schemas, constraints, and statuses for your task.
---
id: context-space-repo-derived-worker
name: context-space Repo-Derived Worker
version: 1.0.0
source_registry_url: https://worker.md/registry/context-space/
source_repository: https://github.com/context-space/context-space
repository_default_branch: main
repository_language: Go
repository_license: AGPL-3.0
repository_updated_at: 2026-03-30
worker_mode: workflow-automation-worker
derivation_method: github_repository_metadata_plus_raw_readme
derivation_confidence: 0.9
derived_on: 2026-04-05
tags:
- agent
- agents
- ai
- ai-agent
- context-engineering
- go
---
# context-space Repo-Derived Worker
## Repo-derived summary
- Registry summary: Ultimate Context Engineering Infrastructure, starting from MCPs and Integrations
- Repository description: Ultimate Context Engineering Infrastructure, starting from MCPs and Integrations
- Stars (snapshot): 810
- Primary language: Go
- Worker mode classification: workflow-automation-worker
## Extracted from
- https://github.com/context-space/context-space
- https://github.com/context-space/context-space/blob/main/README.md
- https://r2.context.space/resources/readme-demo-oauth-flow-github-v2.gif
- https://r2.context.space/resources/readme-demo-github-star-repo.gif
- https://r2.context.space/resources/readme-demo-web-search.gif
## Evidence notes (from repository text)
- README summary paragraph: !https://r2.context.space/resources/20250724-235344_1753372441182.jpg
- Today's Al agents excel at reasoning but terrible at acting in the real world. They’re cut off from live data and tools, trapped behind scattered APIs, inconsistent sources, and complex authentication..
- MCP defines a standard path for agents to securely access real-world services. Context Space brings that vision to life by turning MCP into production-ready infrastructure.
- Today, Context Space delivers a secure integration layer with persistent credential management. Guided by MCP principles, it’s evolving into a complete context engineering platform for the next generation of AI.
- Transform your AI assistant into a powerful agent **in seconds**.
- claude mcp add "context-space" https://api.context.space/api/mcp --header "Authorization: Bearer YOUR_API_KEY"
## Installation hints found in README
- No explicit package installation command detected in README text.
## worker.md contract (derived starter)
Purpose: Execute one automation workflow step in a bounded worker run.
### Input schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"run_id",
"trigger",
"step"
],
"properties": {
"run_id": {
"type": "string"
},
"trigger": {
"type": "object"
},
"step": {
"type": "string"
}
}
}
```
### Output schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"run_id",
"step",
"status",
"artifacts"
],
"properties": {
"run_id": {
"type": "string"
},
"step": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"ok",
"retryable_error",
"invalid_request",
"invalid_output"
]
},
"artifacts": {
"type": "array"
}
}
}
```
### Constraints
- timeout_seconds: 30
- max_attempts: 2
- idempotency_key: run_id
- status_enum: [ok, retryable_error, invalid_request, invalid_output]
- notes: adapt to concrete APIs/classes documented in this repository before production use
## How this should be used
1. Treat this file as a repo-derived starter profile, not a claim of an official repository API contract.
2. Replace schemas with exact interfaces from code/docs you adopt.
3. Keep execution bounded and auditable using worker protocol constraints.
How to use#
- Save this as a worker spec file (for example:
context-space-my-task.worker.md). - Replace the input/output schemas and purpose with your real bounded task.
- Enforce schema validation + timeout + retry policy in your runtime before production use.
Citation#
Reference URL: https://worker.md/registry/context-space/
Source URL: https://github.com/context-space/context-space