trackmcp
Back to directory
shivaji43

gibwork-mcp

View on GitHub

A Mcp server to create and fetch tasks from gibwork platfom

0 stars TypeScriptServers & Infrastructure Updated Apr 27, 2025

Documentation

GibWork MCP Server

A Model Context Protocol (MCP) server implementation for interacting with the GibWork platform. This server provides tools for managing tasks on the GibWork platform through an MCP.

Features

  • Task Management: Create, retrieve, and search tasks on the GibWork platform
  • MCP Protocol: Implements the Model Context Protocol for standardized tool interactions

Prerequisites

  • Node.js (latest LTS version recommended)
  • pnpm package manager (version 10.5.2 or higher)
  • Solana private key (for task creation)

Installation

1. Clone the repository:

bash
git clone 
cd gibwork-mcp

2. Install dependencies:

bash
pnpm install

3. Create a `.env` file in the root directory and add your Solana private key:

code
SOLANA_PRIVATE_KEY=your_private_key_here

4. Configure Claude Desktop:

    json
    {
         "mcpServers": {
           "gibwork": {
             "command": "C:\\Program Files\\nodejs\\node",
             "args": ["C:\\path\\to\\gibwork-mcp\\dist\\index.js"]
           }
         }
       }

    Note: Adjust the paths according to your system configuration.

    For more detailed information about MCP configuration, visit Model Context Protocol Quickstart Guide.

    Project Structure

    code
    gibwork-mcp/
    ├── src/
    │   ├── index.ts      # Main server implementation
    │   └── utils.ts      # Utility functions for API interactions
    ├── dist/             # Compiled JavaScript output
    ├── package.json      # Project dependencies and scripts
    └── tsconfig.json     # TypeScript configuration

    Available Tools

    The server implements the following MCP tools:

    1. get-tasks-by-id

      2. get-tasks

        3. create-task

          Development

          1. Build the project:

          bash
          pnpm build

          2. Run the development server:

          bash
          pnpm dev

          Configuration

          The server is configured to run with the following settings:

          • API Base URL: `https://api2.gib.work`
          • Module System: ES Modules
          • Target: ES2022
          • Strict Type Checking: Enabled

          Security

          • The `.env` file containing sensitive information is excluded from version control
          • Solana private key should be kept secure and never committed to the repository

          License

          ISC License

          Frequently asked questions

          What is gibwork-mcp?

          gibwork-mcp is A Mcp server to create and fetch tasks from gibwork platfom

          How do I install gibwork-mcp?

          Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

          Is gibwork-mcp open source?

          Yes — it is hosted on GitHub at https://github.com/shivaji43/gibwork-mcp.

          Related MCP tools

          Run your own MCP server? See who uses it and what to fix.

          Measure it with TrackMCP