Single entry point for MCP (Model Context Protocol) documentation, plugins, ecosystem API, and usage examples. Official repo: https://github.com/agentstacktech/AgentStack.
- MCP_SERVER_CAPABILITIES.md — MCP doc index: quick start (MCP_QUICKSTART), overview and API (MCP_OVERVIEW), tools reference (MCP_TOOLS), features and examples (MCP_FEATURES_EXAMPLES). 60+ tools for Cursor, Claude, GPT, VS Code plugins.
- api/mcp.md — MCP configuration, authentication, public endpoints, examples for AI agents.
- Base URL:
https://agentstack.tech/mcp - Entrypoint:
POST /mcp— body:{ "steps": [ { "id": "...", "action": "projects.get_project", "params": {...} } ], "options": { "stopOnError": true } } - Action list for AI:
GET /mcp/actions— all availableactionvalues by domain (projects, buffs, auth, payments, logic, assets, etc.). - Discovery:
GET /mcp/discovery— protocol info and the single tool schema. - Capability map: plugins/CONTEXT_FOR_AI_MCP.md · MCP_CAPABILITY_MAP.md.
- plugins/README.md — Plugins index: Cursor, Claude Code, GPT (OpenAI), VS Code. Getting started, API key, Quick Start per platform. Plugin code on GitHub: cursor-plugin, claude-plugin, gpt-plugin, vscode-plugin.
- plugins/CONTEXT_FOR_AI.md — Capability map for AI: which domain and which tools to use for a user request (Projects, 8DNA, Rules, Buffs, Payments, Auth, etc.).
- ECOSYSTEM_API_IMPLEMENTATION.md — Working with data: existing endpoints (no versioned paths), quick start, example of mobile game data storage (user.data.game.progress). Project and user data:
/api/projects/.../data,/api/dna/data, MCP. - architecture/DNA_KEY_VALUE_API.md — Data store (project.data, user.data), key-value API GET/POST /api/dna/data, 8DNA usage.
- examples/mcp_complex_projects.md — Complex scenarios: SaaS with subscriptions, game with monetization, marketplace with promos, education platform with trials, enterprise with analytics. Synergy of Buffs, Projects, Payments, Scheduler, Logic Engine.
- examples/mcp_buffs_workflows.md — Buff workflows (trials, renewal, cancellation).
- examples/mcp_buffs_temporary.md — Temporary effects (trials, promos).
- examples/mcp_buffs_persistent.md — Persistent effects (subscriptions, one-time purchases).
Quick links for plugins: MCP_SERVER_CAPABILITIES · Plugins index · CONTEXT_FOR_AI · CONTEXT_FOR_AI MCP.