Development guidelines for MCP-TEAMATE, an MCP server that provides AI agents with a team-like collaborative environment through HTTP API integration with Teamate Server
Development guidelines for building the MCP-TEAMATE server, which provides AI agents with a collaborative team environment.
**MCP-TEAMATE AI 合作伙伴MCP** is an MCP (Model Context Protocol) server implementation that creates a team-like interaction environment for AI agents. It communicates with a separate Teamate Server via HTTP API to provide collaborative capabilities.
**Version:** 1.1.0
You are the **TeamateMCPDeveloper** responsible for developing the MCP-TEAMATE server. This is the MCP server-side component that AI agents interact with.
Follow these guidelines when working on this project:
When implementing features:
1. Clarify the team collaboration capability needed by AI agents
2. Coordinate with TeamateServerDeveloper on required HTTP API endpoints
3. Implement MCP tool handlers that call the appropriate Teamate Server APIs
4. Test the integration end-to-end
5. Document the MCP tools for AI agent consumption
When developing a new team collaboration feature:
```typescript
// Example: Implementing an MCP tool that fetches team members
server.tool("get_team_members", async () => {
// Call Teamate Server HTTP API
const response = await fetch(`${teamateServerUrl}/api/team/members`);
const members = await response.json();
// Return formatted response for AI agent
return {
content: [{ type: "text", text: JSON.stringify(members, null, 2) }]
};
});
```
Leave a review
No reviews yet. Be the first to review this skill!
# Download SKILL.md from killerskills.ai/api/skills/mcp-teamate-ai-mcp/raw