Install
$ agentstack add skill-vibesurf-ai-claude-surf-config-mcp ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Config MCP - MCP Profile Management
Overview
Manage MCP (Model Context Protocol) profiles for VibeSurf. MCP allows integrating external tools and data sources with the AI.
When to Use
- User wants to add a new MCP server
- User needs to configure MCP integrations
- User wants to update MCP server parameters
- User needs to list or manage existing MCP profiles
- User wants to enable/disable MCP tools
API Endpoints
Base path: $VIBESURF_ENDPOINT/api/config
MCP Profile Management
| Action | Method | Endpoint | Description | |--------|--------|----------|-------------| | List Profiles | GET | /api/config/mcp-profiles?active_only=true | List all MCP profiles | | Get Profile | GET | /api/config/mcp-profiles/{mcp_id} | Get specific profile details | | Create Profile | POST | /api/config/mcp-profiles | Create new MCP profile | | Update Profile | PUT | /api/config/mcp-profiles/{mcp_id} | Update existing profile |
Request Examples
Create MCP Profile
POST /api/config/mcp-profiles
{
"display_name": "My MCP Server",
"mcp_server_name": "server-name",
"mcp_server_params": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-name"],
"env": {
"API_KEY": "..."
}
},
"description": "Description of what this MCP server does"
}
Update MCP Profile
PUT /api/config/mcp-profiles/{mcp_id}
{
"display_name": "Updated Name",
"mcp_server_params": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-name"],
"env": {
"API_KEY": "new-key"
}
}
}
Profile Fields
| Field | Type | Required | Description | |-------|------|----------|-------------| | displayname | string | Yes | Human-readable name | | mcpservername | string | Yes | MCP server identifier | | mcpserverparams | object | Yes | Server configuration | | description | string | No | Profile description | | isactive | bool | No | Enable/disable profile |
MCP Server Params
| Field | Type | Description | |-------|------|-------------| | command | string | Command to run (e.g., npx, uvx, docker) | | args | array | Arguments for the command | | env | object | Environment variables |
Using MCP Tools
Once MCP profiles are configured, their tools become available through the integrations skill:
1. List available tools → GET /api/tool/search?keyword=mcp
2. Execute MCP tool → POST /api/tool/execute
{
"action_name": "execute_extra_tool",
"parameters": {
"tool_name": "mcp.{server_name}.{tool_name}",
"tool_arguments": {...}
}
}
Common MCP Servers
@modelcontextprotocol/server-filesystem- File system access@modelcontextprotocol/server-github- GitHub integration@modelcontextprotocol/server-postgres- PostgreSQL access@modelcontextprotocol/server-puppeteer- Browser automation
Workflow
- Identify MCP server → Choose from available MCP servers
- Create profile →
POST /api/config/mcp-profileswith server params - Verify tools → Use
integrationsskill to list and use MCP tools
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: vibesurf-ai
- Source: vibesurf-ai/claude-surf
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.