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
3. Report issues on [GitHub](https://github.com/codegen-sh/codegen)
114
87
115
-
## Examples
116
-
117
-
### Creating an Agent Run
118
-
119
-
```python
120
-
# Example of how an AI agent might use the MCP server
121
-
# This would be handled automatically by your AI agent
122
-
123
-
{
124
-
"tool": "create_agent_run",
125
-
"arguments": {
126
-
"org_id": 123,
127
-
"prompt": "Review the latest pull request and suggest improvements",
128
-
"repo_name": "my-project",
129
-
"branch_name": "feature-branch"
130
-
}
131
-
}
132
-
```
133
-
134
-
### Getting Organization Information
135
-
136
-
```python
137
-
{
138
-
"tool": "get_organizations",
139
-
"arguments": {
140
-
"page": 1,
141
-
"limit": 10
142
-
}
143
-
}
144
-
```
145
-
146
88
The remote MCP server makes it easy to integrate Codegen's powerful AI development capabilities into your existing AI agent workflows without the need to run a local server.
0 commit comments