
Company News
Socket Partners with Replit to Block Malicious Packages in AI-Powered Development
Replit is integrating Socket Firewall into its AI-powered development experience to help protect builders from malicious open source packages.
opencode-embedded-skill-mcp
Advanced tools
A standalone OpenCode plugin that enables skills to bundle and manage their own Model Context Protocol (MCP) servers.
This allows skills to bring their own tools, resources, and prompts without requiring manual server configuration in opencode.json.
mcp.json).${VAR} and ${VAR:-default} expansion in MCP configurations.Add the plugin to your opencode.json:
{
"plugin": ["opencode-embedded-skill-mcp"]
}
Or install it locally:
{
"plugin": ["./path/to/opencode-embedded-skill-mcp"]
}
You can define MCP servers in the skill's YAML frontmatter:
~/.config/opencode/skill/my-skill/SKILL.md
---
name: my-skill
description: "A skill that uses a custom MCP server"
mcp:
my-server:
command: ["npx", "-y", "@some/mcp-server"]
environment:
API_KEY: "${MY_API_KEY}"
---
# My Skill
This skill provides tools via the `my-server` MCP.
Alternatively, place an mcp.json file in the skill directory:
~/.config/opencode/skill/my-skill/mcp.json
{
"mcpServers": {
"my-server": {
"command": ["npx", "-y", "@some/mcp-server"]
}
}
}
In OpenCode:
skill(name="my-skill")
The plugin will load the skill and discover the capabilities of the embedded MCP server.
Invoke tools, read resources, or get prompts using skill_mcp:
skill_mcp(mcp_name="my-server", tool_name="some-tool", arguments='{"key": "value"}')
skillLoads a skill and displays its instructions along with any available MCP capabilities (tools, resources, prompts).
skill_mcpInvokes an operation on a skill-embedded MCP server.
The MCP configuration supports the standard format:
interface McpServerConfig {
command: string | string[]; // Command to execute (array recommended for args)
environment?: Record<string, string> // Environment variables
}
MIT
FAQs
OpenCode plugin for skill-embedded MCP support
The npm package opencode-embedded-skill-mcp receives a total of 7 weekly downloads. As such, opencode-embedded-skill-mcp popularity was classified as not popular.
We found that opencode-embedded-skill-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Replit is integrating Socket Firewall into its AI-powered development experience to help protect builders from malicious open source packages.

Security News
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.

Research
/Security News
Newer packages in this compromise use native extensions and .pth loaders to execute JavaScript stealers in developer environments.