Idea: Import structured Markdown docs to auto-generate Insomnia collections with folders, params, docs, and examples #10202
Unanswered
manikandan-findmyhub
asked this question in
Ideas
Replies: 1 comment
|
Thank you for taking the time to share a detailed suggestion and for outlining your workflow with examples. A feature request has been raised with the team to evaluate support for AI-assisted API workflows, including capabilities such as structured markdown import, MCP-based integrations, and incremental merge/ update workflows for existing insomnia collections. Thank you. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hi Insomnia team,
I want to share a workflow idea that feels increasingly important now that many developers are using Cursor, agent IDEs, and MCP-based automation for API development.
Current workflow:
Example:
Feature: Create Order
Folder: admin/checkout
Request
Method: POST
URL: {{apibaseurl}}/api/v1/orders/:TESTPATHPARAM
Description
Create a new order for a customer.
Path Params
Query Params
Headers
Request Body
{
"customer_id": "{{customer_id}}",
"items": [
{ "sku": "{{sku}}", "qty": 2 }
],
"currency": "INR"
}
Docs
Endpoint overview
Creates a new order for a customer in the checkout flow.
Business rules
Request notes
Success response
Returns created order details with status.
Error handling
Sample Response 200
{
"order_id": "ord_12345",
"status": "created"
}
Error Codes
Environment Variables
Problem:
Today, even if the agent can generate all this information, I still need to manually recreate it inside Insomnia. This becomes painful in real-world cases where I already have 100 endpoints in a workspace and a new feature adds 5 more endpoints. There does not seem to be an easy built-in incremental “merge these 5 into my existing collection with folder structure and docs” flow.
Idea:
Insomnia could support one of these approaches:
Why this makes sense:
There are already MCP-based efforts in the ecosystem for managing Insomnia-compatible collections, requests, and environments. That means the workflow is already technically meaningful:
A native or officially supported version of this idea would make Insomnia much more useful for modern AI-assisted API workflows.
Concrete Cursor/MCP example:
This would save a lot of repetitive manual work and make Insomnia a much better fit for teams using AI-generated docs, spec-first development, and agentic workflows.
If native support is too large as a first step, even an officially recommended schema + plugin/MCP integration path would already help a lot.
Thanks for considering this.
All reactions