You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/cli/README.md
+17-19Lines changed: 17 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -119,7 +119,7 @@ export default {
119
119
customPrompt:'',
120
120
profile:false,
121
121
tokenCache:true,
122
-
122
+
123
123
// MCP configuration
124
124
mcp: {
125
125
servers: [
@@ -128,14 +128,12 @@ export default {
128
128
url:'https://mcp.example.com',
129
129
auth: {
130
130
type:'bearer',
131
-
token:'your-token-here'
132
-
}
133
-
}
131
+
token:'your-token-here',
132
+
},
133
+
},
134
134
],
135
-
defaultResources: [
136
-
'example://docs/api'
137
-
]
138
-
}
135
+
defaultResources: ['example://docs/api'],
136
+
},
139
137
};
140
138
```
141
139
@@ -180,13 +178,15 @@ export default {
180
178
181
179
### Model Context Protocol (MCP) Configuration
182
180
183
-
MyCoder supports the Model Context Protocol (MCP), which allows the agent to access external context sources and tools. To configure MCP support, add an `mcp` section to your `mycoder.config.js` file:
181
+
MyCoder supports the [Model Context Protocol (MCP)](https://modelcontextprotocol.io), which allows the agent to access external context sources and tools. MyCoder uses the official [@modelcontextprotocol/sdk](https://www.npmjs.com/package/@modelcontextprotocol/sdk) package for MCP integration.
182
+
183
+
To configure MCP support, add an `mcp` section to your `mycoder.config.js` file:
0 commit comments