Canonical workspace state।
Auditable actions।
एक MCP integration।
ExecuFunction एक व्यक्ति की operational दुनिया (समय, tasks, लोग, projects, documents, code) को एक unified context graph के रूप में expose करता है जिसमें safe write actions हैं। MCP से एक बार कनेक्ट करें। आपका agent असली state देखता है।
आपके agent को typed access मिलता है:
| Primitive | Read | Write | उदाहरण |
|---|---|---|---|
| tasks | ✓ | ✓ | Status, project, priority से list करें। बनाएँ, update करें, complete करें। |
| events | ✓ | ✓ | Date range से calendar queries। Events बनाएँ, update करें। |
| people | ✓ | — | Contacts search करें, org relationships लें, interaction history। |
| projects | ✓ | — | पूरा project context: tasks, signals, notes, members। |
| knowledge | ✓ | ✓ | Notes search करें, documents लें। Notes बनाएँ, docs upload करें। |
| code | ✓ | — | Semantic code search, git history, blame, expertise, conventions। |
| memory | ✓ | — | User preferences, सीखी गई विशेषताएँ, behavioral patterns। |
Contracts, features नहीं।
idempotency_key पास करें। नेटवर्क टाइमआउट, रिट्राई, रेस कंडीशन — सब हैंडल हो जाते हैं। एक ही की (key) मौजूदा रिसोर्स लौटाती है, डुप्लिकेट नहीं।calendar, tasks, knowledge, code, people, projects। केवल-कैलेंडर टोकन task_create पर 403 लौटाता है। डिफ़ॉल्ट रूप से सबसे कम प्रिविलेज (least privilege)।last_updated और created_at टाइमस्टैम्प शामिल होते हैं। आपका एजेंट ठीक से जानता है कि उसका कॉन्टेक्स्ट कितना पुराना है। बिना बदले गए रिसोर्स तेज़ी से वापस आते हैं।एक config block। 60+ tools।
// Claude Code, Cursor, Windsurf, etc.
{
"mcpServers": {
"execufunction": {
"url": "https://mcp.execufunction.com/sse",
"headers": {
"Authorization": "Bearer exf_pat_..."
}
}
}
}आपके agent के पास अब workspace के हर domain में 60+ tools हैं।
# Install and authenticate
npm install -g @execufunction/cli
exf auth login
# Same tools, from your terminal
exf tasks list --status next_action
exf calendar list --start 2026-02-17 --end 2026-02-23
exf notes search "architecture"
exf codebase search "auth middleware"Terminal-native access to your full workspace. Pipe into scripts, automate workflows, or run agent loops through execuTerm without losing project context.
Agents ExecuFunction क्यों चुनते हैं
कम cost-to-completion।
एक project_get_context कॉल टास्क, नोट्स, सिग्नल और मेंबर्स लौटाती है। पहले से मौजूद स्टेट को फिर से निकालने के लिए कोई चेन-ऑफ़-थॉट स्टेप्स नहीं।
ज़्यादा task success rate।
असली calendar constraints, असली task state, और असली relationship data वाले agents vibes पर चलने वाले agents से बेहतर decisions लेते हैं।
Persistent memory जो उन्हें बनानी नहीं पड़ी।
Human workspace इस्तेमाल करके context generate करता है। Agent को automatically फ़ायदा होता है। कोई custom memory infrastructure maintain नहीं करनी।
cron के लिए बनाया गया है, डेमो के लिए नहीं।
Structured errors, idempotent writes, permission scoping, audit trails। बिना निगरानी चलने वाले agents के लिए बनाया गया।
अपने agent को एक workspace दें।
Get started in 2 minutes. Install the CLI or connect via MCP — same tools, same data, your choice of interface.