1. Conduid
  2. Developer Tools
  3. rosemary-charnley-smartbear-loopio-server
MCP server · Developer Tools

rosemary-charnley-smartbear-loopio-server

MCP Server (STDIO) for Loopio API - Library Entries management

Unclaimed devtools
39Low

Scored 4 months ago · breakdown

About rosemary-charnley-smartbear-loopio-server

rosemary-charnley-smartbear-loopio-server is an MCP server published by git+rosemary-charnley-smartbear in the Developer Tools category: mCP Server (STDIO) for Loopio API - Library Entries management. It has been installed 0 times through Conduid.

Install

Install
npx rosemary-charnley-smartbear-loopio-mcp-server
Claude Code
claude mcp add loopio-mcp -- npx -y rosemary-charnley-smartbear-loopio-mcp-server
npx
npx -y rosemary-charnley-smartbear-loopio-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about rosemary-charnley-smartbear-loopio-server

Powered by Claude · Grounded in docs

I know everything about rosemary-charnley-smartbear-loopio-server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

Loopio MCP Server (STDIO)

This is a Model Context Protocol (MCP) server that provides comprehensive programmatic access to the Loopio Public API v2 via STDIO transport. It exposes 51 tools covering library entries, projects, compliance sets, custom fields, participants, sections, templates, and file management. It's designed to integrate with VS Code and GitHub Copilot, enabling AI-powered access to your entire Loopio workspace - from content library management to project collaboration and workflow automation.

Features

This MCP server provides 51 tools for comprehensive Loopio API access:

Library Entry Tools (9)

  • listLibraryEntries - List and search library entries with advanced filtering
  • getLibraryEntry - Get a specific library entry by ID
  • createLibraryEntry - Create new library entries
  • updateLibraryEntry - Update library entries using JSON Patch operations
  • deleteLibraryEntry - Delete library entries
  • getLibraryEntryAttachments - Get attachments for a library entry
  • getLibraryEntryHistory - Get the history of changes to a library entry
  • getLibraryEntryHistoryItem - Get a specific history item
  • bulkCreateLibraryEntries - Create multiple library entries at once

Stacks & Files (3)

  • listStacks - List available stacks (library structure)
  • showFile - Get file information
  • deleteFile - Delete a file

Projects (8)

  • listProjects - List projects with filters
  • getProject - Get a specific project by ID
  • createProject - Create a new project
  • updateProject - Update project status
  • deleteProject - Delete a project
  • getProjectSummary - Get project summary
  • getProjectSummaryList - Get list of project summaries
  • listProjectSourceDocuments - List source documents for a project

Project Compliance Sets (5)

  • getProjectComplianceSets - List compliance sets for a project
  • getProjectComplianceSet - Get a specific compliance set
  • createComplianceSet - Create a new compliance set
  • updateProjectComplianceSet - Update a compliance set
  • deleteProjectComplianceSet - Delete a compliance set

Project Participants (2)

  • getProjectParticipants - Get project participants
  • updateProjectParticipants - Update project participants

Custom Project Fields (7)

  • listCustomProjectFields - List custom project fields
  • getCustomProjectField - Get a specific custom field
  • createCustomProjectField - Create a new custom field
  • updateCustomProjectField - Update a custom field
  • deleteCustomProjectField - Delete a custom field
  • getCustomProjectFieldValuesForProject - Get custom field values for a project
  • setCustomProjectFieldValuesForProject - Set custom field values for a project

Project Templates (2)

  • listProjectTemplates - List available project templates
  • createProjectFromTemplate - Create project from template

Project Entries (5)

  • listProjectEntries - List entries in a project
  • getProjectEntry - Get a specific project entry
  • createProjectEntry - Create a new project entry
  • updateProjectEntry - Update a project entry
  • deleteProjectEntry - Delete a project entry

Project Sections (5)

  • listProjectSections - List sections in a project
  • getProjectSection - Get a specific section
  • createProjectSection - Create a new section
  • updateProjectSection - Update a section
  • deleteProjectSection - Delete a section

Project SubSections (5)

  • listProjectSubSections - List subsections
  • getProjectSubSection - Get a specific subsection
  • createProjectSubSection - Create a new subsection
  • updateProjectSubSection - Update a subsection
  • deleteProjectSubSection - Delete a subsection

Resources

  • loopio://libraryEntry/{id} - Access individual library entries as resources

Prompts

  • searchLibraryEntries - Search library entries with natural language queries

Installation and Setup

Prerequisites

  • Node.js (version >= 18.0.0)
  • npm (comes with Node.js)
  • Loopio OAuth 2.0 Client Credentials (client_id and client_secret)

Environment Variables

The server uses the following environment variables from a .env.rfp file:

LOOPIO_CLIENT_ID=your_client_id_here       # Required
LOOPIO_CLIENT_SECRET=your_client_secret_here  # Required

Create a .env.rfp file in the project root with your OAuth client credentials. The server will automatically:

  • Fetch an access token on startup using these credentials
  • Refresh the token every 59 minutes to maintain authentication

Installation Steps

  1. Navigate to the project directory:

    cd Loopio-MCP
    
  2. Install dependencies:

    npm install
    
  3. Build the project:

    npm run build
    

VS Code Integration

The server is configured for VS Code MCP integration in .vscode/mcp.json:

{
  "servers": {
    "loopio": {
      "command": "node",
      "args": ["--loader", "ts-node/esm", "src/index.ts"],
      "cwd": "C:\\Users\\<user>\\Documents\\GitHub\\Loopio-MCP"
    }
  }
}

After installation:

  1. Create a .env.rfp file with your OAuth client credentials (see Environment Variables section)
  2. Reload VS Code (Ctrl+Shift+P → "Developer: Reload Window")
  3. The Loopio MCP server will automatically fetch and refresh tokens
  4. The server will be available to GitHub Copilot

API Authentication

This server uses automatic OAuth 2.0 token management with client credentials flow. The server handles token fetching and refresh automatically - you only need to provide your client credentials.

How It Works:

  1. On Startup: Server fetches an access token using your client credentials
  2. Auto-Refresh: Token is automatically refreshed every 59 minutes
  3. No Manual Intervention: You never need to manually update or manage tokens

Setup Steps:

  1. Register an OAuth Application in your Loopio instance

  2. Obtain Client Credentials:

    • client_id: Your OAuth application's client ID
    • client_secret: Your OAuth application's client secret
  3. Request the Following Scopes:

    • crm:read
    • customProjectField:read
    • file:read
    • library:read
    • project:read
    • project.participant:read
  4. Create .env.rfp File in the project root:

    LOOPIO_CLIENT_ID=your_client_id_here
    LOOPIO_CLIENT_SECRET=your_client_secret_here
    
  5. Start the Server: Token management is fully automatic!

Token Endpoint:

The server automatically calls:

POST https://api.loopio.com/oauth2/access_token
Content-Type: application/x-www-form-urlencoded

grant_type=client_credentials
scope=crm:read customProjectField:read file:read library:read project:read project.participant:read
client_id=<your_client_id>
client_secret=<your_client_secret>

Usage Examples

Once configured in VS Code, you can use the server through GitHub Copilot:

  • "List the latest library entries from Loopio"
  • "Get library entry 1744 from Loopio"
  • "Create a new library entry about our pricing"
  • "Search Loopio for security-related entries"
  • "List all projects in Loopio"
  • "Create a new project for an RFP"
  • "Show me the project sections"

Project Structure

Loopio-MCP/
├── .vscode/
│   └── mcp.json           # VS Code MCP configuration
├── src/
│   ├── index.ts           # Main MCP server (STDIO mode)
│   ├── loopio-client.ts   # Loopio API client wrapper
│   └── types.ts           # TypeScript type definitions
├── dist/                  # Compiled JavaScript (after build)
├── package.json           # Project dependencies
├── tsconfig.json          # TypeScript configuration
└── README.md              # This file

Development

Run in Development Mode

npm run dev

Build for Production

npm run build

Run Production Build

npm start

API Reference

Based on the Loopio Public API v2 OpenAPI Specification:

  • Base URL: https://api.loopio.com/data/v2
  • Authentication: OAuth 2.0 Bearer Token
  • Documentation: See attached loopio-api.yaml for full API specification

Troubleshooting

Server Not Appearing in VS Code

  1. Verify .vscode/mcp.json has the correct path and token
  2. Reload VS Code window
  3. Check VS Code output panel for MCP errors

"Client credentials not found" Error

Ensure .env.rfp file exists in the project root with LOOPIO_CLIENT_ID and LOOPIO_CLIENT_SECRET set.

Connection Errors

  • Verify your client credentials are correct in .env.rfp
  • Check that the Loopio API base URL is correct
  • Ensure your OAuth application has the required scopes
  • Token refresh happens automatically every 59 minutes - no manual intervention needed

Tool Errors

  • Check the Loopio API documentation for required parameters
  • Verify stack IDs, category IDs exist in your Loopio instance
  • Ensure your access token has the necessary permissions

Server customization

Port

If you want to run the MCP server on a different port, you can set the MCP_SERVER_PORT environment variable before starting the server. For example:

export MCP_SERVER_PORT=4002

API url

By default, MCP Server is using first server url defined in the OpenAPI Specification (OAS) file. In order to customize API URL for the MCP server, please set the MCP_API_URL environment variable:

export MCP_API_URL=<desired_url>

MCP server methods

If you need to modify the MCP server methods, you can do so in the src/index.ts file. The methods are generated based on the OpenAPI Specification (OAS) file, and you can adjust them as needed.

Troubleshooting

If the project is not running as expected:

  1. Ensure all dependencies are installed by running npm install
  2. Verify that you are using Node.js version 18 or higher: node -v
  3. Check for errors in the terminal output when running npm run dev
  4. Ensure the port (default: 4000) is not already in use by another application.
  5. Verify custom environment variables:
    echo $MCP_SERVER_PORT
    echo $MCP_API_URL
    
  6. If the issue persists, review the code in src/index.ts for potential misconfigurations or errors.

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About rosemary-charnley-smartbear-loopio-server

How do I install rosemary-charnley-smartbear-loopio-server?

Run npx rosemary-charnley-smartbear-loopio-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is rosemary-charnley-smartbear-loopio-server safe to use with an AI agent?

Its trust score is 39 out of 100 (low). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is rosemary-charnley-smartbear-loopio-server still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.