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., "@MCP Platform Servicefetch reference data for statuses"
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.
MCP Platform Service
A minimal Model Context Protocol (MCP) service for integration with external platforms. This service provides CRUD operations, reference data fetching, and authentication capabilities.
Features
✅ CRUD operations (Create, Read, Update, Delete) for entities
✅ Reference data fetching (statuses, priorities, categories, etc.)
✅ Authentication via API token (environment variable) or login tool
✅ Token refresh support
✅ MCP-compatible server implementation
✅ Ready to run via
npxfrom GitHub
Related MCP server: PocketBase MCP Server
Prerequisites
Node.js 18.0.0 or higher
npm or yarn
Installation
Option 1: Run via npx (from GitHub)
npx github:Artemida1609/mcp-serviceOption 2: Install locally
git clone https://github.com/Artemida1609/mcp-service.git
cd mcp-service
npm installEnvironment Variables
The service supports the following environment variables:
Variable | Description | Required | Default |
| API token for authentication | No* | - |
| Base URL of the external platform API | No |
|
| Request timeout in milliseconds | No |
|
| Enable login tool (true/false) | No |
|
* API_TOKEN is required unless you use the login tool to authenticate.
Usage
Setting Environment Variables
Linux/macOS:
export API_TOKEN="your-api-token-here"
export API_BASE_URL="https://api.yourplatform.com/v1"Windows (PowerShell):
$env:API_TOKEN="your-api-token-here"
$env:API_BASE_URL="https://api.yourplatform.com/v1"Windows (CMD):
set API_TOKEN=your-api-token-here
set API_BASE_URL=https://api.yourplatform.com/v1Running the Service
Via npx:
npx github:your-username/mcp-serviceLocally:
npm start
# or
node index.jsThe service runs as an MCP server on stdio and communicates via the Model Context Protocol.
MCP Server Integration
Claude Desktop Configuration
Add this to your Claude Desktop configuration file (claude_desktop_config.json):
macOS:
{
"mcpServers": {
"platform-service": {
"command": "npx",
"args": ["github:Artemida1609/mcp-service"],
"env": {
"API_TOKEN": "your-api-token-here",
"API_BASE_URL": "https://api.yourplatform.com/v1"
}
}
}
}Windows:
{
"mcpServers": {
"platform-service": {
"command": "npx.cmd",
"args": ["github:Artemida1609/mcp-service"],
"env": {
"API_TOKEN": "your-api-token-here",
"API_BASE_URL": "https://api.yourplatform.com/v1"
}
}
}
}Other MCP Clients
The service communicates via stdio using the MCP protocol. Configure your MCP client to:
Command:
npx(ornpx.cmdon Windows)Args:
["github:Artemida1609/mcp-service"]Environment variables as needed
Available Tools
CRUD Operations
get_entity
Retrieve a specific entity by ID and type.
Parameters:
entityId(string, required): The unique identifier of the entityentityType(string, required): Type of entity (user,project,task,document)
Example:
{
"entityId": "123",
"entityType": "project"
}create_entity
Create a new entity in the platform.
Parameters:
entityType(string, required): Type of entity to createdata(object, required): Entity data
Example:
{
"entityType": "task",
"data": {
"title": "New Task",
"description": "Task description",
"status": "open"
}
}update_entity
Update an existing entity.
Parameters:
entityId(string, required): The unique identifierentityType(string, required): Type of entitydata(object, required): Fields to update
Example:
{
"entityId": "123",
"entityType": "task",
"data": {
"status": "completed"
}
}delete_entity
Delete an entity from the platform.
Parameters:
entityId(string, required): The unique identifierentityType(string, required): Type of entity
Example:
{
"entityId": "123",
"entityType": "task"
}Reference Data
get_reference
Fetch reference data (statuses, priorities, categories, etc.).
Parameters:
referenceType(string, required): Type of reference (statuses,priorities,categories,tags,users)filters(object, optional): Optional filters
Example:
{
"referenceType": "statuses",
"filters": {
"active": true
}
}Authentication
login
Authenticate with username and password. Stores the token for subsequent requests.
Parameters:
username(string, required): Usernamepassword(string, required): Password
Example:
{
"username": "user@example.com",
"password": "password123"
}refresh_token
Refresh an expired access token.
Parameters:
refreshToken(string, required): The refresh token
Example:
{
"refreshToken": "your-refresh-token-here"
}API Endpoints
The service expects the external platform API to follow these conventions:
GET /entities/{entityType}/{entityId}- Get entityPOST /entities/{entityType}- Create entityPUT /entities/{entityType}/{entityId}- Update entityDELETE /entities/{entityType}/{entityId}- Delete entityGET /reference/{referenceType}- Get reference dataPOST /auth/login- LoginPOST /auth/refresh- Refresh token
All requests require Bearer token authentication in the Authorization header.
Project Structure
mcp-service/
├── index.js # Main MCP server entry point
├── config.js # Configuration and environment variables
├── auth.js # Authentication token management
├── api-client.js # HTTP client for API requests
├── handlers.js # Tool handler implementations
├── tools.js # Tool definitions and descriptions
├── schemas.js # Input schemas for tools
├── package.json # Dependencies and metadata
├── .gitignore # Git ignore rules
└── README.md # This fileDevelopment
Local Development
Clone the repository
Install dependencies:
npm installSet environment variables
Run:
npm start
Testing
To test the service manually, you can use an MCP client or test the handlers directly:
import { handleGetEntity } from './handlers.js';
const result = await handleGetEntity({
entityId: '123',
entityType: 'project'
});
console.log(result);Troubleshooting
"No authentication token available" Error
Ensure
API_TOKENis set in your environment, orUse the
logintool to authenticate first
"Request timeout" Error
Increase
API_TIMEOUTenvironment variableCheck network connectivity
Verify
API_BASE_URLis correct
Login Tool Disabled
Set
ALLOW_LOGIN=truein your environment variables
Module Not Found Errors
Run
npm installto install dependenciesEnsure Node.js version is 18.0.0 or higher
Customization
To adapt this service for your specific platform:
Update
API_BASE_URLto your platform's API endpointModify endpoint paths in
handlers.jsif your API uses different routesAdjust entity types in
schemas.jsto match your platform's entitiesUpdate reference types in
get_referencehandlerModify authentication flow in
handleLoginif your platform uses different auth mechanisms
License
MIT
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Support
For issues and questions, please open an issue on GitHub.
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
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/Artemida1609/mcp-service'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
