dida365-mcp-server
3.1
If you are the rightful owner of dida365-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
Dida365 MCP Server is an implementation for integrating with Dida365 using the official API and OAuth 2.0 authentication.
Dida365 MCP Server
English |
This is a MCP Server implementation for Dida365 using the Dida365 Official API.
✨ Features
- 🔐 Official OAuth 2.0 authentication mechanism
- 🎯 Standard MCP Server interface
- 💻 STDIO-based MCP Server implementation
📖 Usage Guide
1. Obtain Access Token
Dida365 uses OAuth 2.0 authorization mechanism to manage API access. You can obtain an access token through either of the following methods:
Option 1: Using Online Service (Recommended)
- Visit https://dida365.dcjanus.com/oauth/login in your browser
- The system will automatically redirect you to the Dida365 authorization page
- Confirm the authorization on the Dida365 page
- After successful authorization, you'll be redirected back to the
/oauth/callback
endpoint - You will receive a JSON response containing the
access_token
- store it securely
Option 2: Local Deployment
- Visit Dida365's Developer Center to create a new application
- In the application settings, configure the
Redirect URL
ashttp://localhost:8080/oauth/callback
- Start the local server (default port: 8080)
- Visit http://localhost:8080/oauth/login
- Follow the on-screen instructions to complete the authorization process
- Obtain the access token
2. Configure MCP Server
Add the following to your configuration file:
{
"mcpServers": {
"dida": {
"command": "/path/to/dida365-mcp-server",
"args": [
"-access_token",
"<YOUR_ACCESS_TOKEN>"
]
}
}
}
Replace <YOUR_ACCESS_TOKEN>
with the access token you obtained.
⚠️ Important Notes
- Keep your access token secure and never share it with others
- If authorization fails, check your network connection or try reauthorizing