devin-api-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@devin-api-mcplist my recent Devin sessions"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
devin-api-mcp
MCP servers providing full Devin API coverage — manage sessions, knowledge, playbooks, secrets, schedules, and attachments programmatically from any MCP client — plus a documentation-only DeepWiki proxy.
The hosted Devin MCP server bundles documentation lookups together with session/platform management in one server. This package splits those concerns: the devin-api-* servers give you everything except docs, and the deepwiki proxy gives you docs only (so it can't be confused for a delegation tool).
Servers
This package exposes three MCP servers:
devin-api-v1 — Legacy v1 API (19 tools). Uses a personal API key (
apk_user_prefix).devin-api-v3 — v3 Organization API (33 tools). Uses a service user key (
cog_prefix). Auto-discovers yourorg_idat startup via/v3/self.deepwiki — a read-only proxy to the upstream Devin MCP (
https://mcp.devin.ai/mcp, personal key) that re-exposes ONLYask_question,read_wiki_structure, andread_wiki_contents. Private repos work (it authenticates with your personal key), but session/platform tools are filtered out — there is no way to create or manage a Devin session through it. Set the upstream withDEEPWIKI_UPSTREAM_URL(defaulthttps://mcp.devin.ai/mcp) and optionallyDEVIN_ORG_ID.{ "mcpServers": { "deepwiki": { "command": "npx", "args": ["-y", "-p", "@jsklan/devin-api-mcp", "deepwiki"], "env": { "DEVIN_PERSONAL_API_KEY": "your_personal_key_here" } } } }
Related MCP server: jt-mcp-server
Setup
1. Get your API keys
Follow the Devin API authentication guide to generate your keys:
Server | Environment Variable | Key Prefix | Where to Get It |
v1 |
|
| Devin account settings |
v3 |
|
| Devin organization settings |
Note: The v1 server also accepts
DEVIN_API_KEYas a fallback for backward compatibility.
2. Register with Claude Code
# v1 (personal API — sessions, knowledge, playbooks, secrets, attachments)
claude mcp add -s user -e DEVIN_PERSONAL_API_KEY=<your-personal-key> -- devin-api-v1 npx -y -p @jsklan/devin-api-mcp devin-api-v1
# v3 (organization API — adds schedules, more session tools)
claude mcp add -s user -e DEVIN_SERVICE_API_KEY=<your-service-key> -- devin-api-v3 npx -y -p @jsklan/devin-api-mcp devin-api-v3Alternative: Install as a Claude Code plugin
Run
/pluginin Claude CodeGo to Marketplaces → + Add Marketplace
Enter
jsklan/devin-api-mcpGo to Discover, find devin-api, and install it
Make sure DEVIN_PERSONAL_API_KEY and/or DEVIN_SERVICE_API_KEY are set in your environment. The plugin will start the MCP servers automatically and stay up to date.
3. Register with other MCP clients
Add to your MCP config (e.g. mcp.json):
{
"mcpServers": {
"devin-api-v1": {
"command": "npx",
"args": ["-y", "-p", "@jsklan/devin-api-mcp", "devin-api-v1"],
"env": {
"DEVIN_PERSONAL_API_KEY": "your_personal_key_here"
}
},
"devin-api-v3": {
"command": "npx",
"args": ["-y", "-p", "@jsklan/devin-api-mcp", "devin-api-v3"],
"env": {
"DEVIN_SERVICE_API_KEY": "your_service_key_here"
}
}
}
}Tools
v1 Server (19 tools)
Sessions
Tool | Description |
| Start a new Devin session with a prompt (supports playbooks, tags, knowledge, secrets, structured output) |
| List recent sessions with status and metadata (filterable by tags, user) |
| Get session details including messages and structured output |
| Send a follow-up message to a running session |
| Stop a running session |
| Replace tags on a session |
Knowledge
Tool | Description |
| List all knowledge entries and folders |
| Create a knowledge entry (teaches Devin domain-specific info) |
| Update an existing knowledge entry |
| Permanently delete a knowledge entry |
Playbooks
Tool | Description |
| List available playbooks (titles and IDs) |
| Get full playbook details |
| Create a new team playbook |
| Update an existing playbook |
| Delete a team playbook |
Secrets
Tool | Description |
| List secret metadata (values are never returned) |
| Create a new encrypted secret |
| Permanently delete a secret |
Attachments
Tool | Description |
| Upload a file for use in sessions (returns URL for |
v3 Server (33 tools)
The v3 server includes all the same categories as v1 (with expanded session tools) plus schedules and an additional attachment tool. All operations are scoped to your organization.
Sessions (14 tools)
Expanded session management including listing by status, bulk operations, and session events.
Knowledge (4 tools)
Same as v1 — list, create, update, delete.
Playbooks (5 tools)
Same as v1 — list, get, create, update, delete.
Secrets (3 tools)
Same as v1 — list, create, delete.
Schedules (5 tools)
Tool | Description |
| List scheduled Devin sessions |
| Get schedule details |
| Create a recurring scheduled session |
| Update an existing schedule |
| Delete a schedule |
Attachments (2 tools)
Upload and manage files for use in sessions.
API Coverage
v1 server wraps the Devin REST API v1 — 19 tools across 5 categories.
v3 server wraps the Devin REST API v3 — 33 tools across 6 categories. Enterprise (
/v3/enterprise/...) and beta (/v3beta1/...) endpoints are intentionally excluded.
Written in TypeScript with Zod schema validation.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jsklan/devin-api-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server