MCP.so
Sign In

Quickbooks

@ravi-bytes

About Quickbooks

No overview available yet

Basic information

Category

Other

Transports

stdio

Publisher

ravi-bytes

Submitted by

Ravi

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "quickbooks": {
      "command": "mvn spring-boot:run",
      "baseUrl": "http://localhost:8080",
      "endpoints": {
        "query": {
          "path": "/api/v1/quickbooks/query",
          "method": "POST"
        },
        "createEntity": {
          "path": "/api/v1/quickbooks/entity",
          "method": "POST"
        }
      },
      "auth": {
        "type": "oauth2",
        "config": {
          "clientId": "your_client_id_here",
          "clientSecret": "your_client_secret_here",
          "accessToken": "your_access_token_here",
          "realmId": "your_realm_id_here"
        }
      }
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is Quickbooks?

Quickbooks is a Model Context Protocol (MCP) server that provides a RESTful API interface for querying and managing Intuit Quickbooks data. It is built with Spring Boot and supports OAuth2 authentication, intended for developers who need to integrate Quickbooks with AI‑assisted tools.

How to use Quickbooks?

Ensure you have Java 17+, Maven 3.6+, and a Quickbooks Online account. Set environment variables for OAuth2 credentials (QUICKBOOKS_CLIENT_ID, QUICKBOOKS_CLIENT_SECRET, QUICKBOOKS_REDIRECT_URI, QUICKBOOKS_ACCESS_TOKEN, QUICKBOOKS_REALM_ID). Clone the repository, run mvn clean install to build, and start the server with mvn spring-boot:run. Use the provided curl examples to query data or create entities.

Key features of Quickbooks

  • Query Quickbooks data with SQL‑like syntax
  • Create new entities in Quickbooks
  • OpenAPI/Swagger documentation
  • Spring Boot‑based implementation
  • OAuth2 authentication support

Use cases of Quickbooks

  • Run ad‑hoc queries against Quickbooks (e.g., “SELECT * FROM Customer”)
  • Programmatically create customers or other Quickbooks entities
  • Integrate Quickbooks data with AI agents through the MCP protocol
  • Build custom dashboards or automation workflows backed by Quickbooks

FAQ from Quickbooks

What prerequisites are needed to run the server?

Java 17 or higher, Maven 3.6 or higher, and a Quickbooks Online account with API access.

How do I configure authentication for Quickbooks?

Set the environment variables QUICKBOOKS_CLIENT_ID, QUICKBOOKS_CLIENT_SECRET, QUICKBOOKS_REDIRECT_URI, QUICKBOOKS_ACCESS_TOKEN, and QUICKBOOKS_REALM_ID. These can also be placed in src/main/resources/application.yml.

Where can I find the API documentation?

Once the server is running, Swagger UI is available at http://localhost:8080/swagger-ui.html and the OpenAPI spec at http://localhost:8080/api-docs.

How do I start the Quickbooks server?

Run mvn spring-boot:run in the project root directory. The server starts on port 8080 by default.

What license is the project distributed under?

This project is licensed under the MIT License.

Comments

More Other MCP servers