AppsAI MCP Server
Enables AI agents to build, deploy, and manage full-stack applications on AppsAI's platform, with tools for project management, backend/frontend deployment, billing, marketplace, domains, and more.
README
AppsAI MCP Server
Build and deploy full-stack apps with AI. This MCP server connects Claude Code, Cursor, Windsurf, and other AI tools to your AppsAI projects.
Supported stacks:
- Frontend: Next.js with React, Tailwind CSS, and shadcn/ui
- Backend: Parse Server, Express, Fastify, Hono, Supabase Edge Functions, Firebase Cloud Functions, Serverless Framework, or custom
- Database: MongoDB Atlas (managed)
- Infrastructure: AWS (S3, CloudFormation, EC2, Lambda, and more)
Installation
Claude Code
claude mcp add appsai -e APPSAI_API_KEY=your_key -- npx -y @appsai/mcp-server
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"appsai": {
"command": "npx",
"args": ["-y", "@appsai/mcp-server"],
"env": {
"APPSAI_API_KEY": "your_key"
}
}
}
}
Cursor / Windsurf
Add to MCP settings with:
- Command:
npx -y @appsai/mcp-server - Environment:
APPSAI_API_KEY=your_key
Getting Your API Key
For Humans
- Sign up at appsai.com
- Go to Settings > Billing > API Keys
- Click Create API Key
- Copy the key (shown once)
For AI Agents (Autonomous Registration)
AI agents can register and obtain API keys programmatically using wallet-based authentication:
import requests
from eth_account import Account
from eth_account.messages import encode_defunct
# Agent's wallet
private_key = "0x..."
account = Account.from_key(private_key)
BASE_URL = "https://internal.appsai.com/server/functions"
HEADERS = {"Content-Type": "application/json", "X-Parse-Application-Id": "appsai"}
# 1. Get nonce
nonce_data = requests.post(f"{BASE_URL}/getAgentAuthNonce", headers=HEADERS, json={}).json()["result"]
# 2. Sign the message
signed = account.sign_message(encode_defunct(text=nonce_data["message"]))
# 3. Register and get API key
result = requests.post(f"{BASE_URL}/registerAgentWallet", headers=HEADERS, json={
"walletAddress": account.address,
"signature": signed.signature.hex(),
"nonce": nonce_data["nonce"]
}).json()["result"]
api_key = result["apiKey"] # Use this with MCP
Adding Credits via Crypto
Agents can pay for credits using USDC on supported chains (Ethereum, Base, Arbitrum, Polygon):
# 1. Get payment info
info = requests.post(f"{BASE_URL}/getCryptoPaymentInfo", headers=HEADERS, json={}).json()["result"]
receiving_wallet = info["receivingWallet"]
# 2. Send USDC to receiving_wallet (via your preferred method)
# 3. Verify transaction and add credits
result = requests.post(f"{BASE_URL}/addFundsCrypto", headers=HEADERS, json={
"walletAddress": account.address,
"txHash": "0xYOUR_TX_HASH",
"chainId": 8453 # Base
}).json()["result"]
print(f"Credits added: {result['creditsAdded']}")
For detailed API documentation, see Agent API Docs.
Tools (150+ Total)
Core Development Tools
| Category | Tools | Description |
|---|---|---|
| Project | 5 | Create, list, and manage projects |
| Canvas | 25 | Edit React components, styles, and assets |
| Backend | 18 | Backend code, S3, CloudFormation, and AWS infrastructure |
| System | 11 | Deploy frontend/backend, connect apps, manage MCP servers |
| MongoDB | 18 | Database and collection management |
| Agents | 9 | AI prompt management and versioning |
Platform Management Tools
| Category | Tools | Description |
|---|---|---|
| Billing | 15 | Subscription, credits, payments, invoices |
| Marketplace | 12 | Publish, browse, and purchase templates |
| Seller | 5 | Stripe Connect, earnings, seller dashboard |
| Domain | 7 | Subdomain and custom domain management |
| Team | 7 | Collaborators, permissions, invitations |
| Transfer | 6 | Project ownership transfers |
| Settings | 4 | Project display settings and metadata |
| API Keys | 3 | Platform API key management |
| Cost | 6 | AWS costs, usage metrics, forecasts |
System Tools
| Tool | Description |
|---|---|
system_DEPLOY_BACKEND |
Deploy backend infrastructure |
system_DEPLOY_FRONTEND |
Deploy frontend to CDN |
system_DEPLOY_ALL |
Deploy both frontend and backend |
system_GET_ENVIRONMENT_STATUS |
Get deployment status and URLs |
system_GET_DEPLOY_ARTIFACTS |
Get deployment artifacts and history |
system_CONNECT_APP |
Connect two projects for cross-app operations |
system_DISCONNECT_APP |
Remove connection between projects |
system_ADD_MCP_SERVER |
Add an external MCP server to a project |
system_LIST_MCP_SERVERS |
List configured MCP servers |
system_UPDATE_MCP_SERVER |
Update MCP server configuration |
system_REMOVE_MCP_SERVER |
Remove an MCP server from project |
Billing Tools
| Tool | Description |
|---|---|
billing_GET_CURRENT_PLAN |
Get subscription plan details |
billing_CREATE_CHECKOUT |
Start subscription purchase |
billing_GET_PORTAL_SESSION |
Open Stripe billing portal |
billing_ADD_FUNDS |
Add credits to account |
billing_GET_AVAILABLE_CREDITS |
Get current credit balance |
billing_GET_INVOICES |
List invoices |
billing_GET_PAYMENT_METHODS |
List saved payment methods |
Marketplace Tools
| Tool | Description |
|---|---|
marketplace_PUBLISH_TEMPLATE |
Publish project to marketplace |
marketplace_UNPUBLISH_TEMPLATE |
Remove from marketplace |
marketplace_GET_TEMPLATES |
Browse marketplace templates |
marketplace_GET_TEMPLATE_DETAILS |
Get template info |
marketplace_FORK_TEMPLATE |
Fork a template |
marketplace_GET_MY_PUBLISHED |
User's published templates |
marketplace_GET_MY_PURCHASES |
Purchase history |
Domain Tools
| Tool | Description |
|---|---|
domain_CHECK_AVAILABILITY |
Check subdomain availability |
domain_UPDATE_SUBDOMAIN |
Update project subdomain |
domain_ADD_CUSTOM_DOMAIN |
Add custom domain |
domain_VERIFY_CUSTOM_DOMAIN |
Verify DNS configuration |
domain_REMOVE_CUSTOM_DOMAIN |
Remove custom domain |
Team Tools
| Tool | Description |
|---|---|
team_GET_COLLABORATORS |
List project collaborators |
team_INVITE_COLLABORATOR |
Invite user to project |
team_REMOVE_COLLABORATOR |
Remove collaborator |
team_UPDATE_PERMISSIONS |
Change collaborator role |
Example Usage
"List my apps"
→ project_LIST_APPS
"Create a new Next.js app"
→ project_CREATE_APP
"Show the file tree for project abc123"
→ canvas_LIST_FILES
"Deploy the frontend"
→ system_DEPLOY_FRONTEND
"Add an MCP server to my project"
→ system_ADD_MCP_SERVER
"Check my current plan"
→ billing_GET_CURRENT_PLAN
"Publish my project to the marketplace"
→ marketplace_PUBLISH_TEMPLATE
"Add a custom domain"
→ domain_ADD_CUSTOM_DOMAIN
"Invite john@example.com to my project"
→ team_INVITE_COLLABORATOR
MCP Server Integration
AppsAI projects can connect to external MCP servers, giving your AI agents access to additional tools:
"Add the Stripe MCP server to my project"
→ system_ADD_MCP_SERVER with serverUrl and serverLabel
"List my configured MCP servers"
→ system_LIST_MCP_SERVERS
"Disable the Stripe MCP server"
→ system_UPDATE_MCP_SERVER with enabled: false
Once configured, AI agents in your AppsAI project can use tools from connected MCP servers.
Resources
The server provides project context as MCP resources:
appsai://projects- List of your projectsappsai://project/{id}- Project details and file structure
Prompts
Built-in prompts to build full applications:
build-youtube- Build a YouTube clone with video uploads and commentsbuild-slack- Build a Slack clone with real-time messagingbuild-twitter- Build a Twitter/X clone with posts and followsconnect-apps- Connect two AppsAI projects together
Requirements
- Node.js 18+
- AppsAI account with credits
- API key from Settings > Billing
Documentation
Support
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。