Schematcial.com has a MCP server wired in now


Last week I had some fun building my first MCP server from scratch.

I made it public so you can access it for right now, a decision I might regret if I get swarmed by bots but it's a risk I am willing to take in the name of science.

The server is a dirt simple set of tools that allows your AI Agent to list my Posts and Events. Not the most useful tool calls, I know but I needed a starting point to play with.

I did actually make an authenticated section for my team to use to do some basic CRUD operations as well.

The OAuth flow was pretty simple, I strongly recommend playing with that as that is where I presume the Agentic revolution is going towards. No more running NPM packages locally to connect to Trello or Google Drive.

To connect, you just need a Streamable HTTP enabled Agent Software then just add the following to your config file:

{
  "mcpServers": {
    "schematical-public": {
      "url": "http://schematical.com/api/public/mcp"
    }
}

If you wish there was a better way to Discover MCP servers that makes 2 of us. That is why once I got that wired in and launched I started playing with building my own MCP client/agent but that will likely get put on hold while I do a deeper dive on AWS’s Bedrock AgentCore.

Let me know if you are playing around with any agentic workflows, tool calls, or MCPs. I would love to know what others are working on.